diff --git a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentSelect.cpp b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentSelect.cpp index a5433f89..d0976e3b 100644 --- a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentSelect.cpp +++ b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentSelect.cpp @@ -130,6 +130,26 @@ void QtProjectWizzardContentSelect::populate(QGridLayout* layout, int& row) } } + // Add vs solution button + { + std::string name = "Visual Studio"; + + QToolButton* button = createProjectButton(name.c_str(), + (ResourcePaths::getGuiPath() + "icon/project_vs_256_256.png").c_str()); + + m_buttons->addButton(button); + + m_solutionDescription.push_back("Create a new project from an existing Visual Studio Solution file. " + "Note: Requires a running Visual Studio instance with the " + "Visual Studio plugin installed."); + + hlayout->addWidget(button); + + m_buttons->setId(button, runningId); + + runningId++; + } + connect(m_buttons, static_cast(&QButtonGroup::buttonClicked), [this](int id) {