itom
Loading...
Searching...
No Matches
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
17class TestClass;
18class TestSubClass;
19
26class SampleApp : public QMainWindow, protected Ui_SampleApp
27{
28 Q_OBJECT
29public:
35 SampleApp(QWidget* parent = 0, Qt::WFlags flags = 0);
36
38 virtual ~SampleApp();
39
40private:
45};
46#endif
Definition SampleApp.h:27
SampleApp(QWidget *parent=0, Qt::WFlags flags=0)
Definition SampleApp.cpp:18
TestSubClass * m_testSubClass
Another test class inherited from TestClass to show the hierarchy management of the QPropertyEditor.
Definition SampleApp.h:44
TestClass * m_testClass
Testclass with some properties.
Definition SampleApp.h:42
virtual ~SampleApp()
Destructor.
Definition SampleApp.cpp:30
Definition TestClass.h:21
Definition TestSubClass.h:18