summaryrefslogtreecommitdiffstats
path: root/kbarcode/tokendialog.h
blob: 017004cfb924050b700e76dfba3662a85ba9d5d7 (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
130
/***************************************************************************
                          tokendialog.h  -  description
                             -------------------
    begin                : Sat Oct 23 2004
    copyright            : (C) 2004 by Dominik Seichter
    email                : domseichter@web.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 TQListBoxItem;
class TQListViewItem;
class KLineEdit;
class TokenProvider;

class TQRadioButton;
class TQWidgetStack;
class TQHBox;
class KComboBox;
class TQTextBrowser;
class KPushButton;
class DSTextEdit;

class TokenDialog : public KWizard {
    
 Q_OBJECT
  TQ_OBJECT

 public:
    TokenDialog( TokenProvider* token, TQWidget *parent = 0, const char *name = 0 );
   
    inline const TQString & token() const { return m_result; }

 private slots:
    void categoryChanged( TQListBoxItem* item );
    void itemChanged( TQListViewItem* 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( TQWidget* w );

 private:
    TQStringList m_custom_tokens;

    TQRadioButton* radioAll;
    TQRadioButton* radioLabel;
    TQRadioButton* radioSQL;
    TQRadioButton* radioDate;
    TQRadioButton* radioFixed;
    TQRadioButton* radioCustom;
    TQRadioButton* radioAddress;

    TQRadioButton* radioSTQLQuery;
    TQRadioButton* radioVariable;
    TQRadioButton* radioJavaScript;

    TQRadioButton* radioVariableNew;
    TQRadioButton* radioVariableExisting;
    
    KLineEdit* editVariable;
    KListBox* listVariable;

    KLineEdit* editQuery;
    TQTextBrowser* textQueryResults;
    KPushButton* buttonQuery;

    DSTextEdit* editJavaScript;

    TQString m_result;

    TQWidgetStack* page2;
    TQWidgetStack* page3;

    TQWidget* stackPage1;
    TQWidget* stackPage2;

    TQWidget* stack2Page1;
    TQWidget* stack2Page2;
    TQWidget* stack2Page3;
    TQWidget* stack2Page4;
    TQWidget* stack2Page5;

    TQValueList<tToken> m_tokens;
    TokenProvider* m_token;

    KListBox* category;
    KListView* allList;
    KLineEdit* lineEdit;

    KListView* labelList;
};

#endif