~ubuntu-branches/ubuntu/quantal/kate/quantal-proposed

« back to all changes in this revision

Viewing changes to part/variableeditor/variablelineedit.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-14 13:28:06 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: package-import@ubuntu.com-20111214132806-aa2uf6ri5w2p8ak3
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of the KDE project
 
2
 
 
3
   Copyright (C) 2011 Dominik Haumann <dhaumann kde org>
 
4
 
 
5
   This library is free software; you can redistribute it and/or
 
6
   modify it under the terms of the GNU Library General Public
 
7
   License as published by the Free Software Foundation; either
 
8
   version 2 of the License, or (at your option) any later version.
 
9
 
 
10
   This library is distributed in the hope that it will be useful,
 
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
   Library General Public License for more details.
 
14
 
 
15
   You should have received a copy of the GNU Library General Public License
 
16
   along with this library; see the file COPYING.LIB.  If not, write to
 
17
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
18
   Boston, MA 02110-1301, USA.
 
19
*/
 
20
 
 
21
#ifndef VARIABLE_LINE_EDIT_H
 
22
#define VARIABLE_LINE_EDIT_H
 
23
 
 
24
#include <QWidget>
 
25
 
 
26
class QFrame;
 
27
class QLineEdit;
 
28
class QToolButton;
 
29
class VariableListView;
 
30
 
 
31
class VariableLineEdit : public QWidget
 
32
{
 
33
  Q_OBJECT
 
34
 
 
35
public:
 
36
  VariableLineEdit(QWidget* parent = 0);
 
37
  virtual ~VariableLineEdit();
 
38
 
 
39
  void addKateItems(VariableListView* listview);
 
40
  QString text();
 
41
 
 
42
public Q_SLOTS:
 
43
  void editVariables();
 
44
  void setText(const QString &text);
 
45
  void clear();
 
46
  void updateVariableLine();
 
47
 
 
48
Q_SIGNALS:
 
49
  void textChanged(const QString&);
 
50
 
 
51
private:
 
52
  QFrame* m_popup;
 
53
  QLineEdit* m_lineedit;
 
54
  QToolButton* m_button;
 
55
  VariableListView* m_listview;
 
56
};
 
57
 
 
58
#endif
 
59
 
 
60
// kate: indent-width 2; replace-tabs on;