itom  4.1.0
SampleApp.h
1 // *************************************************************************************************
2 //
3 // This code is part of the Sample Application to demonstrate the use of the QPropertyEditor library.
4 // It is distributed as public domain and can be modified and used by you without any limitations.
5 //
6 // Your feedback is welcome!
7 //
8 // Author: Volker Wiendl
9 // Enum enhancement by Roman alias banal from qt-apps.org
10 // *************************************************************************************************
11 
12 #ifndef SAMPLEAPP_H_
13 #define SAMPLEAPP_H_
14 
15 #include "./ui_SampleApp.h"
16 
17 class TestClass;
18 class TestSubClass;
19 
26 class SampleApp : public QMainWindow, protected Ui_SampleApp
27 {
28  Q_OBJECT
29 public:
35  SampleApp(QWidget* parent = 0, Qt::WFlags flags = 0);
36 
38  virtual ~SampleApp();
39 
40 private:
45 };
46 #endif
TestSubClass * m_testSubClass
Another test class inherited from TestClass to show the hierarchy managment of the QPropertyEditor...
Definition: SampleApp.h:44
virtual ~SampleApp()
Destructor.
Definition: SampleApp.cpp:30
SampleApp(QWidget *parent=0, Qt::WFlags flags=0)
Definition: SampleApp.cpp:18
Definition: TestSubClass.h:17
Definition: SampleApp.h:26
Definition: TestClass.h:20
TestClass * m_testClass
Testclass with some properties.
Definition: SampleApp.h:42