source: trunk/examples/regexptester/regexptester.h@ 164

Last change on this file since 164 was 162, checked in by dmik, 19 years ago

Imported the regexptester example from the official release 3.3.1 from Trolltech.

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 843 bytes
Line 
1#ifndef REGEXPTESTER_H
2#define REGEXPTESTER_H
3
4#include <qdialog.h>
5
6class QCheckBox;
7class QComboBox;
8class QLabel;
9class QPushButton;
10class QStatusBar;
11class QTable;
12
13class RegexpTester : public QDialog
14{
15 Q_OBJECT
16
17public:
18 RegexpTester(QWidget* parent=0, const char* name=0, bool modal=false,
19 WFlags f=0);
20
21 QLabel *regexLabel;
22 QComboBox *regexComboBox;
23 QLabel *textLabel;
24 QComboBox *textComboBox;
25 QCheckBox *caseSensitiveCheckBox;
26 QCheckBox *minimalCheckBox;
27 QCheckBox *wildcardCheckBox;
28 QTable *resultTable;
29 QPushButton *executePushButton;
30 QPushButton *copyPushButton;
31 QPushButton *quitPushButton;
32 QStatusBar *statusBar;
33
34public slots:
35 void copy();
36 void execute();
37
38private:
39 void languageChange();
40};
41
42#endif // REGEXPTESTER_H
Note: See TracBrowser for help on using the repository browser.