Files
Sourcetrail/src/lib_gui/qt/window/QtPreferencesWindow.h
T
Eberhard Graether 9256618f7c ui: Extended project setup to support creation and editing of Source Groups (issue #230)
* 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.
2017-05-29 17:08:28 +02:00

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