blob: 590700873145f46516975c2ca17eb53512c8b2a8 (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/***************************************************************************
tokendialog.h - description
-------------------
begin : Sat Oct 23 2004
copyright : (C) 2004 by Dominik Seichter
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef TOKENDIALOG_H
#define TOKENDIALOG_H
#include <kwizard.h>
#include "documentitem.h"
#include "tokenprovider.h"
class KListBox;
class KListView;
class QListBoxItem;
class QListViewItem;
class KLineEdit;
class TokenProvider;
class QRadioButton;
class QWidgetStack;
class QHBox;
class KComboBox;
class QTextBrowser;
class KPushButton;
class DSTextEdit;
class TokenDialog : public KWizard {
Q_OBJECT
public:
TokenDialog( TokenProvider* token, QWidget *parent = 0, const char *name = 0 );
inline const QString & token() const { return m_result; }
private slots:
void categoryChanged( QListBoxItem* item );
void itemChanged( QListViewItem* item );
private:
void initAll();
void initStackPage2();
void setupPage1();
void setupPage2();
void setupPage3();
void setupStackPage1();
void setupStackPage2();
void setupStack2Page1();
void setupStack2Page2();
void setupStack2Page3();
void setupStack2Page4();
void setupStack2Page5();
private slots:
void enableControls();
void testQuery();
protected:
void accept();
void showPage( QWidget* w );
private:
QStringList m_custom_tokens;
QRadioButton* radioAll;
QRadioButton* radioLabel;
QRadioButton* radioSQL;
QRadioButton* radioDate;
QRadioButton* radioFixed;
QRadioButton* radioCustom;
QRadioButton* radioAddress;
QRadioButton* radioSQLQuery;
QRadioButton* radioVariable;
QRadioButton* radioJavaScript;
QRadioButton* radioVariableNew;
QRadioButton* radioVariableExisting;
KLineEdit* editVariable;
KListBox* listVariable;
KLineEdit* editQuery;
QTextBrowser* textQueryResults;
KPushButton* buttonQuery;
DSTextEdit* editJavaScript;
QString m_result;
QWidgetStack* page2;
QWidgetStack* page3;
QWidget* stackPage1;
QWidget* stackPage2;
QWidget* stack2Page1;
QWidget* stack2Page2;
QWidget* stack2Page3;
QWidget* stack2Page4;
QWidget* stack2Page5;
QValueList<tToken> m_tokens;
TokenProvider* m_token;
KListBox* category;
KListView* allList;
KLineEdit* lineEdit;
KListView* labelList;
};
#endif
|