* Added CDB option to project type selection * show CDB source files in popup * define header paths separately * made generic content summary in wizzard and use it everywhere * fixed file paths not canonical in analysis * refactored wizzard content paths to use summary instead of subpaths * refactored files popup to simpler communication with content bug id = 35
29 lines
767 B
C++
29 lines
767 B
C++
#ifndef QT_PROJECT_WIZZARD_CONTENT_CDB_SOURCE_H
|
|
#define QT_PROJECT_WIZZARD_CONTENT_CDB_SOURCE_H
|
|
|
|
#include "qt/window/project_wizzard/QtProjectWizzardContent.h"
|
|
|
|
class QtProjectWizzardContentCDBSource
|
|
: public QtProjectWizzardContent
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtProjectWizzardContentCDBSource(ProjectSettings* settings, QtProjectWizzardWindow* window);
|
|
|
|
// QtProjectWizzardContent implementation
|
|
virtual void populateWindow(QGridLayout* layout, int& row) override;
|
|
|
|
virtual void load() override;
|
|
|
|
virtual QStringList getFileNames() const override;
|
|
virtual QString getFileNamesTitle() const override;
|
|
virtual QString getFileNamesDescription() const override;
|
|
|
|
private:
|
|
QLabel* m_text;
|
|
QStringList m_fileNames;
|
|
};
|
|
|
|
#endif // QT_PROJECT_WIZZARD_CONTENT_CDB_SOURCE_H
|