ui: Extended wizzard with simple setup and vs solution parsing
* removed blurry coati background * added language selection to project type window * search for headers in project paths option as part of simple setup * show popup containing list of all analyzed symbols * show build file path in summary and allow refreshing * only force refresh after editing project and something changed
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
#ifndef QT_PROJECT_WIZZARD_CONTENT_BUILD_FILE_H
|
||||
#define QT_PROJECT_WIZZARD_CONTENT_BUILD_FILE_H
|
||||
|
||||
#include "qt/window/project_wizzard/QtProjectWizzardContent.h"
|
||||
#include "qt/window/project_wizzard/QtProjectWizzardContentSelect.h"
|
||||
|
||||
class QtLocationPicker;
|
||||
class QPushButton;
|
||||
|
||||
class QtProjectWizzardContentBuildFile
|
||||
: public QtProjectWizzardContent
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
signals:
|
||||
void refreshVisualStudioSolution(const std::string&);
|
||||
|
||||
public:
|
||||
QtProjectWizzardContentBuildFile(ProjectSettings* settings, QtProjectWizzardWindow* window);
|
||||
|
||||
// QtProjectWizzardContent implementation
|
||||
virtual void populateForm(QFormLayout* layout) override;
|
||||
|
||||
virtual void load() override;
|
||||
|
||||
private slots:
|
||||
void refreshClicked();
|
||||
|
||||
private:
|
||||
QtLocationPicker* m_picker;
|
||||
|
||||
QtProjectWizzardContentSelect::ProjectType m_type;
|
||||
};
|
||||
|
||||
#endif // QT_PROJECT_WIZZARD_CONTENT_BUILD_FILE_H
|
||||
Reference in New Issue
Block a user