mirror of https://github.com/stenzek/duckstation
Qt: Support binding multiple buttons/axis to controllers
parent
08a8434140
commit
6c162eb3c5
@ -0,0 +1,319 @@
|
|||||||
|
#include "inputbindingdialog.h"
|
||||||
|
#include "common/bitutils.h"
|
||||||
|
#include "common/string_util.h"
|
||||||
|
#include "core/settings.h"
|
||||||
|
#include "frontend-common/controller_interface.h"
|
||||||
|
#include "qthostinterface.h"
|
||||||
|
#include "qtutils.h"
|
||||||
|
#include <QtCore/QTimer>
|
||||||
|
#include <QtGui/QKeyEvent>
|
||||||
|
#include <QtGui/QMouseEvent>
|
||||||
|
#include <algorithm>
|
||||||
|
#include <cmath>
|
||||||
|
|
||||||
|
InputBindingDialog::InputBindingDialog(QtHostInterface* host_interface, std::string section_name, std::string key_name,
|
||||||
|
std::vector<std::string> bindings, QWidget* parent)
|
||||||
|
: QDialog(parent), m_host_interface(host_interface), m_section_name(std::move(section_name)),
|
||||||
|
m_key_name(std::move(key_name)), m_bindings(std::move(bindings))
|
||||||
|
{
|
||||||
|
m_ui.setupUi(this);
|
||||||
|
m_ui.title->setText(
|
||||||
|
tr("Bindings for %1 %2").arg(QString::fromStdString(m_section_name)).arg(QString::fromStdString(m_key_name)));
|
||||||
|
|
||||||
|
connect(m_ui.addBinding, &QPushButton::clicked, this, &InputBindingDialog::onAddBindingButtonClicked);
|
||||||
|
connect(m_ui.removeBinding, &QPushButton::clicked, this, &InputBindingDialog::onRemoveBindingButtonClicked);
|
||||||
|
connect(m_ui.clearBindings, &QPushButton::clicked, this, &InputBindingDialog::onClearBindingsButtonClicked);
|
||||||
|
connect(m_ui.buttonBox, &QDialogButtonBox::rejected, [this]() { done(0); });
|
||||||
|
updateList();
|
||||||
|
}
|
||||||
|
|
||||||
|
InputBindingDialog::~InputBindingDialog()
|
||||||
|
{
|
||||||
|
Q_ASSERT(!isListeningForInput());
|
||||||
|
}
|
||||||
|
|
||||||
|
bool InputBindingDialog::eventFilter(QObject* watched, QEvent* event)
|
||||||
|
{
|
||||||
|
const QEvent::Type event_type = event->type();
|
||||||
|
|
||||||
|
if (event_type == QEvent::MouseButtonPress || event_type == QEvent::MouseButtonRelease ||
|
||||||
|
event_type == QEvent::MouseButtonDblClick)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputBindingDialog::onInputListenTimerTimeout()
|
||||||
|
{
|
||||||
|
m_input_listen_remaining_seconds--;
|
||||||
|
if (m_input_listen_remaining_seconds == 0)
|
||||||
|
{
|
||||||
|
stopListeningForInput();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_ui.status->setText(tr("Push Button/Axis... [%1]").arg(m_input_listen_remaining_seconds));
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputBindingDialog::startListeningForInput(u32 timeout_in_seconds)
|
||||||
|
{
|
||||||
|
m_input_listen_timer = new QTimer(this);
|
||||||
|
m_input_listen_timer->setSingleShot(false);
|
||||||
|
m_input_listen_timer->start(1000);
|
||||||
|
|
||||||
|
m_input_listen_timer->connect(m_input_listen_timer, &QTimer::timeout, this,
|
||||||
|
&InputBindingDialog::onInputListenTimerTimeout);
|
||||||
|
m_input_listen_remaining_seconds = timeout_in_seconds;
|
||||||
|
m_ui.status->setText(tr("Push Button/Axis... [%1]").arg(m_input_listen_remaining_seconds));
|
||||||
|
m_ui.addBinding->setEnabled(false);
|
||||||
|
m_ui.removeBinding->setEnabled(false);
|
||||||
|
m_ui.clearBindings->setEnabled(false);
|
||||||
|
m_ui.buttonBox->setEnabled(false);
|
||||||
|
|
||||||
|
installEventFilter(this);
|
||||||
|
grabKeyboard();
|
||||||
|
grabMouse();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputBindingDialog::stopListeningForInput()
|
||||||
|
{
|
||||||
|
m_ui.status->clear();
|
||||||
|
m_ui.addBinding->setEnabled(true);
|
||||||
|
m_ui.removeBinding->setEnabled(true);
|
||||||
|
m_ui.clearBindings->setEnabled(true);
|
||||||
|
m_ui.buttonBox->setEnabled(true);
|
||||||
|
|
||||||
|
delete m_input_listen_timer;
|
||||||
|
m_input_listen_timer = nullptr;
|
||||||
|
|
||||||
|
releaseMouse();
|
||||||
|
releaseKeyboard();
|
||||||
|
removeEventFilter(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputBindingDialog::addNewBinding(std::string new_binding)
|
||||||
|
{
|
||||||
|
if (std::find(m_bindings.begin(), m_bindings.end(), new_binding) != m_bindings.end())
|
||||||
|
return;
|
||||||
|
|
||||||
|
m_ui.bindingList->addItem(QString::fromStdString(new_binding));
|
||||||
|
m_bindings.push_back(std::move(new_binding));
|
||||||
|
saveListToSettings();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputBindingDialog::onAddBindingButtonClicked()
|
||||||
|
{
|
||||||
|
if (isListeningForInput())
|
||||||
|
stopListeningForInput();
|
||||||
|
|
||||||
|
startListeningForInput(TIMEOUT_FOR_BINDING);
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputBindingDialog::onRemoveBindingButtonClicked()
|
||||||
|
{
|
||||||
|
const int row = m_ui.bindingList->currentRow();
|
||||||
|
if (row < 0 || static_cast<size_t>(row) >= m_bindings.size())
|
||||||
|
return;
|
||||||
|
|
||||||
|
m_bindings.erase(m_bindings.begin() + row);
|
||||||
|
delete m_ui.bindingList->takeItem(row);
|
||||||
|
saveListToSettings();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputBindingDialog::onClearBindingsButtonClicked()
|
||||||
|
{
|
||||||
|
m_bindings.clear();
|
||||||
|
m_ui.bindingList->clear();
|
||||||
|
saveListToSettings();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputBindingDialog::updateList()
|
||||||
|
{
|
||||||
|
m_ui.bindingList->clear();
|
||||||
|
for (const std::string& binding : m_bindings)
|
||||||
|
m_ui.bindingList->addItem(QString::fromStdString(binding));
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputBindingDialog::saveListToSettings()
|
||||||
|
{
|
||||||
|
if (!m_bindings.empty())
|
||||||
|
m_host_interface->SetStringListSettingValue(m_section_name.c_str(), m_key_name.c_str(), m_bindings);
|
||||||
|
else
|
||||||
|
m_host_interface->RemoveSettingValue(m_section_name.c_str(), m_key_name.c_str());
|
||||||
|
|
||||||
|
m_host_interface->updateInputMap();
|
||||||
|
}
|
||||||
|
|
||||||
|
InputButtonBindingDialog::InputButtonBindingDialog(QtHostInterface* host_interface, std::string section_name,
|
||||||
|
std::string key_name, std::vector<std::string> bindings,
|
||||||
|
QWidget* parent)
|
||||||
|
: InputBindingDialog(host_interface, std::move(section_name), std::move(key_name), std::move(bindings), parent)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
InputButtonBindingDialog::~InputButtonBindingDialog()
|
||||||
|
{
|
||||||
|
if (isListeningForInput())
|
||||||
|
InputButtonBindingDialog::stopListeningForInput();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool InputButtonBindingDialog::eventFilter(QObject* watched, QEvent* event)
|
||||||
|
{
|
||||||
|
const QEvent::Type event_type = event->type();
|
||||||
|
|
||||||
|
// if the key is being released, set the input
|
||||||
|
if (event_type == QEvent::KeyRelease)
|
||||||
|
{
|
||||||
|
addNewBinding(std::move(m_new_binding_value));
|
||||||
|
stopListeningForInput();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (event_type == QEvent::KeyPress)
|
||||||
|
{
|
||||||
|
QString binding = QtUtils::KeyEventToString(static_cast<QKeyEvent*>(event));
|
||||||
|
if (!binding.isEmpty())
|
||||||
|
m_new_binding_value = QStringLiteral("Keyboard/%1").arg(binding).toStdString();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (event_type == QEvent::MouseButtonRelease)
|
||||||
|
{
|
||||||
|
const u32 button_mask = static_cast<u32>(static_cast<const QMouseEvent*>(event)->button());
|
||||||
|
const u32 button_index = (button_mask == 0u) ? 0 : CountTrailingZeros(button_mask);
|
||||||
|
m_new_binding_value = StringUtil::StdStringFromFormat("Mouse/Button%d", button_index + 1);
|
||||||
|
addNewBinding(std::move(m_new_binding_value));
|
||||||
|
stopListeningForInput();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return InputBindingDialog::eventFilter(watched, event);
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputButtonBindingDialog::hookControllerInput()
|
||||||
|
{
|
||||||
|
ControllerInterface* controller_interface = m_host_interface->getControllerInterface();
|
||||||
|
if (!controller_interface)
|
||||||
|
return;
|
||||||
|
|
||||||
|
controller_interface->SetHook([this](const ControllerInterface::Hook& ei) {
|
||||||
|
if (ei.type == ControllerInterface::Hook::Type::Axis)
|
||||||
|
{
|
||||||
|
// wait until it's at least half pushed so we don't get confused between axises with small movement
|
||||||
|
if (std::abs(ei.value) < 0.5f)
|
||||||
|
return ControllerInterface::Hook::CallbackResult::ContinueMonitoring;
|
||||||
|
|
||||||
|
// TODO: this probably should consider the "last value"
|
||||||
|
QMetaObject::invokeMethod(this, "bindToControllerAxis", Q_ARG(int, ei.controller_index),
|
||||||
|
Q_ARG(int, ei.button_or_axis_number), Q_ARG(bool, ei.value > 0));
|
||||||
|
return ControllerInterface::Hook::CallbackResult::StopMonitoring;
|
||||||
|
}
|
||||||
|
else if (ei.type == ControllerInterface::Hook::Type::Button && ei.value > 0.0f)
|
||||||
|
{
|
||||||
|
QMetaObject::invokeMethod(this, "bindToControllerButton", Q_ARG(int, ei.controller_index),
|
||||||
|
Q_ARG(int, ei.button_or_axis_number));
|
||||||
|
return ControllerInterface::Hook::CallbackResult::StopMonitoring;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ControllerInterface::Hook::CallbackResult::ContinueMonitoring;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputButtonBindingDialog::unhookControllerInput()
|
||||||
|
{
|
||||||
|
ControllerInterface* controller_interface = m_host_interface->getControllerInterface();
|
||||||
|
if (!controller_interface)
|
||||||
|
return;
|
||||||
|
|
||||||
|
controller_interface->ClearHook();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputButtonBindingDialog::bindToControllerAxis(int controller_index, int axis_index, bool positive)
|
||||||
|
{
|
||||||
|
std::string binding =
|
||||||
|
StringUtil::StdStringFromFormat("Controller%d/%cAxis%d", controller_index, positive ? '+' : '-', axis_index);
|
||||||
|
addNewBinding(std::move(binding));
|
||||||
|
stopListeningForInput();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputButtonBindingDialog::bindToControllerButton(int controller_index, int button_index)
|
||||||
|
{
|
||||||
|
std::string binding = StringUtil::StdStringFromFormat("Controller%d/Button%d", controller_index, button_index);
|
||||||
|
addNewBinding(std::move(binding));
|
||||||
|
stopListeningForInput();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputButtonBindingDialog::startListeningForInput(u32 timeout_in_seconds)
|
||||||
|
{
|
||||||
|
InputBindingDialog::startListeningForInput(timeout_in_seconds);
|
||||||
|
hookControllerInput();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputButtonBindingDialog::stopListeningForInput()
|
||||||
|
{
|
||||||
|
unhookControllerInput();
|
||||||
|
InputBindingDialog::stopListeningForInput();
|
||||||
|
}
|
||||||
|
|
||||||
|
InputAxisBindingDialog::InputAxisBindingDialog(QtHostInterface* host_interface, std::string section_name,
|
||||||
|
std::string key_name, std::vector<std::string> bindings, QWidget* parent)
|
||||||
|
: InputBindingDialog(host_interface, std::move(section_name), std::move(key_name), std::move(bindings), parent)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
InputAxisBindingDialog::~InputAxisBindingDialog()
|
||||||
|
{
|
||||||
|
if (isListeningForInput())
|
||||||
|
InputAxisBindingDialog::stopListeningForInput();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputAxisBindingDialog::hookControllerInput()
|
||||||
|
{
|
||||||
|
ControllerInterface* controller_interface = m_host_interface->getControllerInterface();
|
||||||
|
if (!controller_interface)
|
||||||
|
return;
|
||||||
|
|
||||||
|
controller_interface->SetHook([this](const ControllerInterface::Hook& ei) {
|
||||||
|
if (ei.type == ControllerInterface::Hook::Type::Axis)
|
||||||
|
{
|
||||||
|
// wait until it's at least half pushed so we don't get confused between axises with small movement
|
||||||
|
if (std::abs(ei.value) < 0.5f)
|
||||||
|
return ControllerInterface::Hook::CallbackResult::ContinueMonitoring;
|
||||||
|
|
||||||
|
QMetaObject::invokeMethod(this, "bindToControllerAxis", Q_ARG(int, ei.controller_index),
|
||||||
|
Q_ARG(int, ei.button_or_axis_number));
|
||||||
|
return ControllerInterface::Hook::CallbackResult::StopMonitoring;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ControllerInterface::Hook::CallbackResult::ContinueMonitoring;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputAxisBindingDialog::unhookControllerInput()
|
||||||
|
{
|
||||||
|
ControllerInterface* controller_interface = m_host_interface->getControllerInterface();
|
||||||
|
if (!controller_interface)
|
||||||
|
return;
|
||||||
|
|
||||||
|
controller_interface->ClearHook();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputAxisBindingDialog::bindToControllerAxis(int controller_index, int axis_index)
|
||||||
|
{
|
||||||
|
std::string binding = StringUtil::StdStringFromFormat("Controller%d/Axis%d", controller_index, axis_index);
|
||||||
|
addNewBinding(std::move(binding));
|
||||||
|
stopListeningForInput();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputAxisBindingDialog::startListeningForInput(u32 timeout_in_seconds)
|
||||||
|
{
|
||||||
|
InputBindingDialog::startListeningForInput(timeout_in_seconds);
|
||||||
|
hookControllerInput();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputAxisBindingDialog::stopListeningForInput()
|
||||||
|
{
|
||||||
|
unhookControllerInput();
|
||||||
|
InputBindingDialog::stopListeningForInput();
|
||||||
|
}
|
||||||
@ -0,0 +1,95 @@
|
|||||||
|
#pragma once
|
||||||
|
#include "common/types.h"
|
||||||
|
#include "ui_inputbindingdialog.h"
|
||||||
|
#include <QtWidgets/QDialog>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
class QtHostInterface;
|
||||||
|
|
||||||
|
class InputBindingDialog : public QDialog
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
InputBindingDialog(QtHostInterface* host_interface, std::string section_name, std::string key_name,
|
||||||
|
std::vector<std::string> bindings, QWidget* parent);
|
||||||
|
~InputBindingDialog();
|
||||||
|
|
||||||
|
protected Q_SLOTS:
|
||||||
|
void onAddBindingButtonClicked();
|
||||||
|
void onRemoveBindingButtonClicked();
|
||||||
|
void onClearBindingsButtonClicked();
|
||||||
|
void onInputListenTimerTimeout();
|
||||||
|
|
||||||
|
protected:
|
||||||
|
enum : u32
|
||||||
|
{
|
||||||
|
TIMEOUT_FOR_BINDING = 5
|
||||||
|
};
|
||||||
|
|
||||||
|
virtual bool eventFilter(QObject* watched, QEvent* event) override;
|
||||||
|
|
||||||
|
virtual void startListeningForInput(u32 timeout_in_seconds);
|
||||||
|
virtual void stopListeningForInput();
|
||||||
|
|
||||||
|
bool isListeningForInput() const { return m_input_listen_timer != nullptr; }
|
||||||
|
void addNewBinding(std::string new_binding);
|
||||||
|
|
||||||
|
void updateList();
|
||||||
|
void saveListToSettings();
|
||||||
|
|
||||||
|
Ui::InputBindingDialog m_ui;
|
||||||
|
|
||||||
|
QtHostInterface* m_host_interface;
|
||||||
|
|
||||||
|
std::string m_section_name;
|
||||||
|
std::string m_key_name;
|
||||||
|
std::vector<std::string> m_bindings;
|
||||||
|
std::string m_new_binding_value;
|
||||||
|
|
||||||
|
QTimer* m_input_listen_timer = nullptr;
|
||||||
|
u32 m_input_listen_remaining_seconds = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
class InputButtonBindingDialog : public InputBindingDialog
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
InputButtonBindingDialog(QtHostInterface* host_interface, std::string section_name, std::string key_name,
|
||||||
|
std::vector<std::string> bindings, QWidget* parent);
|
||||||
|
~InputButtonBindingDialog();
|
||||||
|
|
||||||
|
protected:
|
||||||
|
bool eventFilter(QObject* watched, QEvent* event) override;
|
||||||
|
|
||||||
|
private Q_SLOTS:
|
||||||
|
void bindToControllerAxis(int controller_index, int axis_index, bool positive);
|
||||||
|
void bindToControllerButton(int controller_index, int button_index);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void startListeningForInput(u32 timeout_in_seconds) override;
|
||||||
|
void stopListeningForInput() override;
|
||||||
|
void hookControllerInput();
|
||||||
|
void unhookControllerInput();
|
||||||
|
};
|
||||||
|
|
||||||
|
class InputAxisBindingDialog : public InputBindingDialog
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
InputAxisBindingDialog(QtHostInterface* host_interface, std::string section_name, std::string key_name,
|
||||||
|
std::vector<std::string> bindings, QWidget* parent);
|
||||||
|
~InputAxisBindingDialog();
|
||||||
|
|
||||||
|
private Q_SLOTS:
|
||||||
|
void bindToControllerAxis(int controller_index, int axis_index);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void startListeningForInput(u32 timeout_in_seconds) override;
|
||||||
|
void stopListeningForInput() override;
|
||||||
|
void hookControllerInput();
|
||||||
|
void unhookControllerInput();
|
||||||
|
};
|
||||||
@ -0,0 +1,89 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>InputBindingDialog</class>
|
||||||
|
<widget class="QDialog" name="InputBindingDialog">
|
||||||
|
<property name="windowModality">
|
||||||
|
<enum>Qt::WindowModal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>533</width>
|
||||||
|
<height>283</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Edit Bindings</string>
|
||||||
|
</property>
|
||||||
|
<property name="modal">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="title">
|
||||||
|
<property name="text">
|
||||||
|
<string>Bindings for Controller0/ButtonCircle</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QListWidget" name="bindingList"/>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="status">
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="addBinding">
|
||||||
|
<property name="text">
|
||||||
|
<string>Add Binding</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="removeBinding">
|
||||||
|
<property name="text">
|
||||||
|
<string>Remove Binding</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="clearBindings">
|
||||||
|
<property name="text">
|
||||||
|
<string>Clear Bindings</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QDialogButtonBox" name="buttonBox">
|
||||||
|
<property name="standardButtons">
|
||||||
|
<set>QDialogButtonBox::Close</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
||||||
Loading…
Reference in New Issue