forked from qt-creator/qt-creator
Meson: Inline toolitemsettings.ui
Change-Id: Ib305c45354e63142587593401fda45d03d42d207 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
@@ -14,7 +14,6 @@ add_qtc_plugin(MesonProjectManager
|
||||
settings/tools/toolssettingswidget.cpp
|
||||
settings/tools/toolssettingspage.cpp
|
||||
settings/tools/toolssettingspage.h
|
||||
settings/tools/toolitemsettings.ui
|
||||
settings/tools/toolitemsettings.cpp
|
||||
settings/tools/toolitemsettings.h
|
||||
settings/tools/tooltreeitem.cpp
|
||||
|
||||
@@ -88,7 +88,6 @@ Project {
|
||||
"settings/tools/kitaspect/toolkitaspectwidget.h",
|
||||
"settings/tools/toolitemsettings.cpp",
|
||||
"settings/tools/toolitemsettings.h",
|
||||
"settings/tools/toolitemsettings.ui",
|
||||
"settings/tools/toolsmodel.cpp",
|
||||
"settings/tools/toolsmodel.h",
|
||||
"settings/tools/toolssettingsaccessor.cpp",
|
||||
|
||||
@@ -4,38 +4,44 @@
|
||||
#include "toolitemsettings.h"
|
||||
|
||||
#include "tooltreeitem.h"
|
||||
#include "ui_toolitemsettings.h"
|
||||
|
||||
namespace MesonProjectManager {
|
||||
namespace Internal {
|
||||
#include <utils/layoutbuilder.h>
|
||||
#include <utils/pathchooser.h>
|
||||
|
||||
#include <QLineEdit>
|
||||
|
||||
using namespace Utils;
|
||||
|
||||
namespace MesonProjectManager::Internal {
|
||||
|
||||
ToolItemSettings::ToolItemSettings(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
, ui(new Ui::ToolItemSettings)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
ui->mesonPathChooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
||||
ui->mesonPathChooser->setHistoryCompleter(QLatin1String("Meson.Command.History"));
|
||||
connect(ui->mesonPathChooser,
|
||||
&Utils::PathChooser::rawPathChanged,
|
||||
this,
|
||||
&ToolItemSettings::store);
|
||||
connect(ui->mesonNameLineEdit, &QLineEdit::textChanged, this, &ToolItemSettings::store);
|
||||
}
|
||||
m_mesonNameLineEdit = new QLineEdit;
|
||||
|
||||
ToolItemSettings::~ToolItemSettings()
|
||||
{
|
||||
delete ui;
|
||||
m_mesonPathChooser = new PathChooser;
|
||||
m_mesonPathChooser->setExpectedKind(PathChooser::ExistingCommand);
|
||||
m_mesonPathChooser->setHistoryCompleter(QLatin1String("Meson.Command.History"));
|
||||
|
||||
using namespace Layouting;
|
||||
|
||||
Form {
|
||||
tr("Name:"), m_mesonNameLineEdit, br,
|
||||
tr("Path:"), m_mesonPathChooser, br,
|
||||
}.attachTo(this, WithoutMargins);
|
||||
|
||||
connect(m_mesonPathChooser, &PathChooser::rawPathChanged, this, &ToolItemSettings::store);
|
||||
connect(m_mesonNameLineEdit, &QLineEdit::textChanged, this, &ToolItemSettings::store);
|
||||
}
|
||||
|
||||
void ToolItemSettings::load(ToolTreeItem *item)
|
||||
{
|
||||
if (item) {
|
||||
m_currentId = std::nullopt;
|
||||
ui->mesonNameLineEdit->setDisabled(item->isAutoDetected());
|
||||
ui->mesonNameLineEdit->setText(item->name());
|
||||
ui->mesonPathChooser->setDisabled(item->isAutoDetected());
|
||||
ui->mesonPathChooser->setFilePath(item->executable());
|
||||
m_mesonNameLineEdit->setDisabled(item->isAutoDetected());
|
||||
m_mesonNameLineEdit->setText(item->name());
|
||||
m_mesonPathChooser->setDisabled(item->isAutoDetected());
|
||||
m_mesonPathChooser->setFilePath(item->executable());
|
||||
m_currentId = item->id();
|
||||
} else {
|
||||
m_currentId = std::nullopt;
|
||||
@@ -46,9 +52,8 @@ void ToolItemSettings::store()
|
||||
{
|
||||
if (m_currentId)
|
||||
emit applyChanges(*m_currentId,
|
||||
ui->mesonNameLineEdit->text(),
|
||||
ui->mesonPathChooser->filePath());
|
||||
m_mesonNameLineEdit->text(),
|
||||
m_mesonPathChooser->filePath());
|
||||
}
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace MesonProjectManager
|
||||
} // MesonProjectManager::Internal
|
||||
|
||||
@@ -4,16 +4,21 @@
|
||||
#pragma once
|
||||
|
||||
#include <utils/id.h>
|
||||
#include <utils/fileutils.h>
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
#include <optional>
|
||||
|
||||
namespace MesonProjectManager {
|
||||
namespace Internal {
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QLineEdit;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
namespace Ui { class ToolItemSettings; }
|
||||
namespace Utils {
|
||||
class FilePath;
|
||||
class PathChooser;
|
||||
}
|
||||
|
||||
namespace MesonProjectManager::Internal {
|
||||
|
||||
class ToolTreeItem;
|
||||
|
||||
@@ -23,15 +28,16 @@ class ToolItemSettings : public QWidget
|
||||
|
||||
public:
|
||||
explicit ToolItemSettings(QWidget *parent = nullptr);
|
||||
~ToolItemSettings();
|
||||
void load(ToolTreeItem *item);
|
||||
void store();
|
||||
Q_SIGNAL void applyChanges(Utils::Id itemId, const QString &name, const Utils::FilePath &exe);
|
||||
|
||||
signals:
|
||||
void applyChanges(Utils::Id itemId, const QString &name, const Utils::FilePath &exe);
|
||||
|
||||
private:
|
||||
Ui::ToolItemSettings *ui;
|
||||
std::optional<Utils::Id> m_currentId{std::nullopt};
|
||||
QLineEdit *m_mesonNameLineEdit;
|
||||
Utils::PathChooser *m_mesonPathChooser;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace MesonProjectManager
|
||||
} // MesonProjectManager::Internal
|
||||
|
||||
@@ -1,46 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>MesonProjectManager::Internal::ToolItemSettings</class>
|
||||
<widget class="QWidget" name="MesonProjectManager::Internal::ToolItemSettings">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>409</width>
|
||||
<height>70</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout">
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="_nameLbl">
|
||||
<property name="text">
|
||||
<string>Name:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QLineEdit" name="mesonNameLineEdit"/>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="_pathLbl">
|
||||
<property name="text">
|
||||
<string>Path:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="Utils::PathChooser" name="mesonPathChooser" native="true"/>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
<class>Utils::PathChooser</class>
|
||||
<extends>QWidget</extends>
|
||||
<header location="global">utils/pathchooser.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
||||
Reference in New Issue
Block a user