Duckstation/src/duckstation-qt/hotkeysettingswidget.cpp

79 lines
2.3 KiB
C++
Raw Normal View History

2020-01-05 02:46:03 +00:00
#include "hotkeysettingswidget.h"
#include "controllersettingsdialog.h"
#include "frontend-common/input_manager.h"
2020-01-05 02:46:03 +00:00
#include "inputbindingwidgets.h"
#include "qtutils.h"
#include "settingwidgetbinder.h"
2020-01-05 02:46:03 +00:00
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QLabel>
#include <QtWidgets/QMessageBox>
#include <QtWidgets/QScrollArea>
2020-01-05 02:46:03 +00:00
HotkeySettingsWidget::HotkeySettingsWidget(QWidget* parent, ControllerSettingsDialog* dialog)
: QWidget(parent), m_dialog(dialog)
2020-01-05 02:46:03 +00:00
{
createUi();
}
HotkeySettingsWidget::~HotkeySettingsWidget() = default;
void HotkeySettingsWidget::createUi()
{
QGridLayout* layout = new QGridLayout(this);
layout->setContentsMargins(0, 0, 0, 0);
2020-01-05 02:46:03 +00:00
m_scroll_area = new QScrollArea(this);
m_container = new QWidget(m_scroll_area);
m_layout = new QVBoxLayout(m_container);
m_scroll_area->setWidget(m_container);
m_scroll_area->setWidgetResizable(true);
m_scroll_area->setBackgroundRole(QPalette::Base);
2020-01-05 02:46:03 +00:00
createButtons();
m_layout->addStretch(1);
layout->addWidget(m_scroll_area, 0, 0, 1, 1);
2020-01-05 02:46:03 +00:00
setLayout(layout);
}
void HotkeySettingsWidget::createButtons()
{
const std::vector<const HotkeyInfo*> hotkeys(InputManager::GetHotkeyList());
for (const HotkeyInfo* hotkey : hotkeys)
2020-01-05 02:46:03 +00:00
{
const QString category(qApp->translate("Hotkeys", hotkey->category));
auto iter = m_categories.find(category);
2020-01-05 02:46:03 +00:00
if (iter == m_categories.end())
{
QLabel* label = new QLabel(category, m_container);
QFont label_font(label->font());
label_font.setPointSizeF(14.0f);
label->setFont(label_font);
m_layout->addWidget(label);
QLabel* line = new QLabel(m_container);
line->setFrameShape(QFrame::HLine);
line->setFixedHeight(4);
m_layout->addWidget(line);
2020-01-05 02:46:03 +00:00
QGridLayout* layout = new QGridLayout();
layout->setContentsMargins(0, 0, 0, 0);
m_layout->addLayout(layout);
iter = m_categories.insert(category, layout);
2020-01-05 02:46:03 +00:00
}
QGridLayout* layout = *iter;
const int target_row = layout->count() / 2;
2020-01-05 02:46:03 +00:00
QLabel* label = new QLabel(qApp->translate("Hotkeys", hotkey->display_name), m_container);
layout->addWidget(label, target_row, 0);
InputBindingWidget* bind =
new InputBindingWidget(m_container, m_dialog->getProfileSettingsInterface(), "Hotkeys", hotkey->name);
bind->setMinimumWidth(300);
layout->addWidget(bind, target_row, 1);
2020-01-05 02:46:03 +00:00
}
}