blob: e2f5a2bee4ece2f32affd58477dfc11dfb9b37cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/****************************************************************************
** Form interface generated from reading ui file './kcompletiontest.ui'
**
** Created: Wed Nov 15 20:12:56 2000
** by: The User Interface Compiler (uic)
**
** WARNING! All changes made in this file will be lost!
****************************************************************************/
#ifndef FORM1_H
#define FORM1_H
#include <qstringlist.h>
#include <qvariant.h>
#include <qwidget.h>
class QVBoxLayout;
class QHBoxLayout;
class QGridLayout;
class QGroupBox;
class QLabel;
class QListBox;
class QListBoxItem;
class QPushButton;
class KHistoryCombo;
class KLineEdit;
class Form1 : public QWidget
{
Q_OBJECT
public:
Form1( QWidget* parent = 0, const char* name = 0 );
~Form1();
QGroupBox* GroupBox1;
QLabel* TextLabel1;
KLineEdit* LineEdit1;
QPushButton* PushButton1;
QPushButton* PushButton1_4;
QListBox* ListBox1;
QPushButton* PushButton1_3;
QPushButton* PushButton1_2;
KLineEdit* edit;
KHistoryCombo *combo;
protected slots:
void slotList();
void slotAdd();
void slotRemove();
void slotHighlighted( const QString& );
protected:
QStringList defaultItems() const;
QVBoxLayout* Form1Layout;
QVBoxLayout* GroupBox1Layout;
QVBoxLayout* Layout9;
QHBoxLayout* Layout1;
QHBoxLayout* Layout2;
QHBoxLayout* Layout3;
QHBoxLayout* Layout8;
QVBoxLayout* Layout7;
};
#endif // FORM1_H
|