* 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
58 lines
1.4 KiB
C++
58 lines
1.4 KiB
C++
#ifndef QT_PROJECT_WIZZARD_CONTENT_PREFERENCES_H
|
|
#define QT_PROJECT_WIZZARD_CONTENT_PREFERENCES_H
|
|
|
|
#include <QCheckBox>
|
|
#include <QComboBox>
|
|
#include <QLineEdit>
|
|
|
|
#include "qt/element/QtLocationPicker.h"
|
|
#include "qt/window/project_wizzard/QtProjectWizzardContent.h"
|
|
#include "utility/path_detector/CombinedPathDetector.h"
|
|
|
|
class QtProjectWizzardContentPreferences
|
|
: public QtProjectWizzardContent
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtProjectWizzardContentPreferences(std::shared_ptr<ProjectSettings> settings, QtProjectWizzardWindow* window);
|
|
~QtProjectWizzardContentPreferences();
|
|
|
|
// QtProjectWizzardContent implementation
|
|
virtual void populate(QGridLayout* layout, int& row) override;
|
|
|
|
virtual void load() override;
|
|
virtual void save() override;
|
|
virtual bool check() override;
|
|
|
|
private slots:
|
|
void colorSchemeChanged(int index);
|
|
void javaPathDetectionClicked();
|
|
|
|
private:
|
|
void addJavaPathDetection(QGridLayout* layout, int& row);
|
|
|
|
QLineEdit* m_fontFace;
|
|
QComboBox* m_fontSize;
|
|
QComboBox* m_tabWidth;
|
|
|
|
QComboBox* m_colorSchemes;
|
|
std::vector<FilePath> m_colorSchemePaths;
|
|
int m_oldColorSchemeIndex;
|
|
|
|
QLineEdit* m_scrollSpeed;
|
|
QCheckBox* m_loggingEnabled;
|
|
|
|
QLineEdit* m_coatiPort;
|
|
QLineEdit* m_pluginPort;
|
|
|
|
QComboBox* m_threads;
|
|
QCheckBox* m_fatalErrors;
|
|
|
|
std::shared_ptr<CombinedPathDetector> m_javaPathDetector;
|
|
QComboBox* m_javaPathDetectorBox;
|
|
QtLocationPicker* m_javaPath;
|
|
};
|
|
|
|
#endif // QT_PROJECT_WIZZARD_CONTENT_PREFERENCES_H
|