* project can not have multiple source groups with different types * language of a project is now inferred from source groups * setting global NameHierarchy delimiter of first sourceGroup in project * added project settings migrations for source groups * Add Settings Migration classes (MoveKey, DeleteKey, Lambda) * Update sample projects with migrations * added method to config to retrieve sublevel key names * implemented recursive removing of keys in settings * moved project files out of top level * removed solution parsing code as it is not used anymore fortune cookie message = The secret of getting ahead is getting started.
31 lines
717 B
C++
31 lines
717 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<SourceGroupSettings> settings, QtProjectWizzardWindow* window);
|
|
|
|
// QtProjectWizzardContent implementation
|
|
virtual void populate(QGridLayout* layout, int& row) override;
|
|
|
|
virtual void load() override;
|
|
virtual void save() override;
|
|
|
|
private:
|
|
std::shared_ptr<SourceGroupSettings> m_settings;
|
|
|
|
QCheckBox* m_checkBox;
|
|
QLabel* m_title;
|
|
};
|
|
|
|
#endif // QT_PROJECT_WIZZARD_CONTENT_SIMPLE_H
|