* 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.
26 lines
498 B
C++
26 lines
498 B
C++
#ifndef QT_PREFERENCES_WINDOW_H
|
|
#define QT_PREFERENCES_WINDOW_H
|
|
|
|
#include "qt/window/project_wizzard/QtProjectWizzardWindow.h"
|
|
|
|
#include "settings/ApplicationSettings.h"
|
|
|
|
class QtPreferencesWindow
|
|
: public QtProjectWizzardWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtPreferencesWindow(QWidget* parent = 0);
|
|
virtual ~QtPreferencesWindow();
|
|
|
|
protected:
|
|
virtual void windowReady() override;
|
|
virtual void handleNext() override;
|
|
|
|
private:
|
|
ApplicationSettings m_appSettings;
|
|
};
|
|
|
|
#endif // QT_PREFERENCES_WINDOW_H
|