* changed help texts * use help buttons instead of descriptions in dialogs * fixed show files button not up-to-date with directory list box * fixed source file extensions shown in cdb setup * refactored size and content setting for project content classes
29 lines
662 B
C++
29 lines
662 B
C++
#ifndef QT_PROJECT_WIZZARD_CONTENT_SIMPLE_H
|
|
#define QT_PROJECT_WIZZARD_CONTENT_SIMPLE_H
|
|
|
|
#include "qt/window/project_wizzard/QtProjectWizzardContent.h"
|
|
|
|
class QCheckBox;
|
|
class QButtonGroup;
|
|
|
|
class QtProjectWizzardContentSimple
|
|
: public QtProjectWizzardContent
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtProjectWizzardContentSimple(std::shared_ptr<ProjectSettings> settings, QtProjectWizzardWindow* window);
|
|
|
|
// QtProjectWizzardContent implementation
|
|
virtual void populate(QGridLayout* layout, int& row) override;
|
|
|
|
virtual void load() override;
|
|
virtual void save() override;
|
|
|
|
private:
|
|
QCheckBox* m_checkBox;
|
|
QLabel* m_title;
|
|
};
|
|
|
|
#endif // QT_PROJECT_WIZZARD_CONTENT_SIMPLE_H
|