From bd0f3345a938b35ce6a12f6150373b0955b8dd12 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 15:24:15 -0500 Subject: Add Qt3 development HEAD version --- examples/regexptester/regexptester.h | 42 ++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 examples/regexptester/regexptester.h (limited to 'examples/regexptester/regexptester.h') diff --git a/examples/regexptester/regexptester.h b/examples/regexptester/regexptester.h new file mode 100644 index 0000000..0fabbb6 --- /dev/null +++ b/examples/regexptester/regexptester.h @@ -0,0 +1,42 @@ +#ifndef REGEXPTESTER_H +#define REGEXPTESTER_H + +#include + +class QCheckBox; +class QComboBox; +class QLabel; +class QPushButton; +class QStatusBar; +class QTable; + +class RegexpTester : public QDialog +{ + Q_OBJECT + +public: + RegexpTester(QWidget* parent=0, const char* name=0, bool modal=false, + WFlags f=0); + + QLabel *regexLabel; + QComboBox *regexComboBox; + QLabel *textLabel; + QComboBox *textComboBox; + QCheckBox *caseSensitiveCheckBox; + QCheckBox *minimalCheckBox; + QCheckBox *wildcardCheckBox; + QTable *resultTable; + QPushButton *executePushButton; + QPushButton *copyPushButton; + QPushButton *quitPushButton; + QStatusBar *statusBar; + +public slots: + void copy(); + void execute(); + +private: + void languageChange(); +}; + +#endif // REGEXPTESTER_H -- cgit v1.2.3