summaryrefslogtreecommitdiffstats
path: root/examples/wizard/wizard.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/wizard/wizard.h')
-rw-r--r--examples/wizard/wizard.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/examples/wizard/wizard.h b/examples/wizard/wizard.h
new file mode 100644
index 000000000..f97a01fdf
--- /dev/null
+++ b/examples/wizard/wizard.h
@@ -0,0 +1,44 @@
+/****************************************************************************
+**
+** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for TQt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#ifndef WIZARD_H
+#define WIZARD_H
+
+#include <qwizard.h>
+
+class TQWidget;
+class TQHBox;
+class TQLineEdit;
+class TQLabel;
+
+class Wizard : public TQWizard
+{
+ Q_OBJECT
+
+public:
+ Wizard( TQWidget *parent = 0, const char *name = 0 );
+
+ void showPage(TQWidget* page);
+
+protected:
+ void setupPage1();
+ void setupPage2();
+ void setupPage3();
+
+ TQHBox *page1, *page2, *page3;
+ TQLineEdit *key, *firstName, *lastName, *address, *phone, *email;
+ TQLabel *lKey, *lFirstName, *lLastName, *lAddress, *lPhone, *lEmail;
+
+protected slots:
+ void keyChanged( const TQString & );
+ void dataChanged( const TQString & );
+
+};
+
+#endif