* 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
803 B
C++
29 lines
803 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(std::shared_ptr<ProjectSettings> settings, QtProjectWizzardWindow* window);
|
|
|
|
// QtProjectWizzardContent implementation
|
|
virtual void populate(QGridLayout* layout, int& row) override;
|
|
|
|
virtual void load() override;
|
|
|
|
virtual std::vector<std::string> getFileNames() const override;
|
|
virtual QString getFileNamesTitle() const override;
|
|
virtual QString getFileNamesDescription() const override;
|
|
|
|
private:
|
|
QLabel* m_text;
|
|
std::vector<std::string> m_fileNames;
|
|
};
|
|
|
|
#endif // QT_PROJECT_WIZZARD_CONTENT_CDB_SOURCE_H
|