* Turned QtProjectWizzard into window for Source Group ui * Clicking into FilePicker when empty will open dialog right away * Fixed environment variable use throughout all Source Group path values * Moved Preferences to QtPreferencesWindow bug id = 230 fortune cookie message = Zwischen dir und deinen Freunden besteht echte Freundschaft.
21 lines
447 B
C++
21 lines
447 B
C++
#ifndef QT_PROJECT_WIZZARD_CONTENT_VS_H
|
|
#define QT_PROJECT_WIZZARD_CONTENT_VS_H
|
|
|
|
#include "qt/window/project_wizzard/QtProjectWizzardContent.h"
|
|
|
|
class QtProjectWizzardContentVS
|
|
: public QtProjectWizzardContent
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtProjectWizzardContentVS(QtProjectWizzardWindow* window);
|
|
|
|
virtual void populate(QGridLayout* layout, int& row) override;
|
|
|
|
private slots:
|
|
void handleVSCDBClicked();
|
|
};
|
|
|
|
#endif // QT_PROJECT_WIZZARD_CONTENT_VS_H
|