* adjusted some help texts * moved exclude paths and source file extensions contents to indexed paths selection in project setup wizard * removed compiler flags from CDB project setup wizard * added wizard content that shows some info text regarding the purpose of source groups * renamed ContentSummary to ContentGroup * fixed issue with CompilationDatabase include path extraction
31 lines
756 B
C++
31 lines
756 B
C++
#ifndef QT_PROJECT_WIZZARD_CONTENT_FLAGS_H
|
|
#define QT_PROJECT_WIZZARD_CONTENT_FLAGS_H
|
|
|
|
#include "qt/window/project_wizzard/QtProjectWizzardContent.h"
|
|
|
|
class QtDirectoryListBox;
|
|
class SourceGroupSettings;
|
|
|
|
class QtProjectWizzardContentFlags
|
|
: public QtProjectWizzardContent
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtProjectWizzardContentFlags(std::shared_ptr<SourceGroupSettings> settings, QtProjectWizzardWindow* window, bool isCDB = false);
|
|
|
|
// 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;
|
|
const bool m_isCdb;
|
|
|
|
QtDirectoryListBox* m_list;
|
|
};
|
|
|
|
#endif // QT_PROJECT_WIZZARD_CONTENT_FLAGS_H
|