mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-26 23:55:40 +00:00
ac825855f7
Stops them breaking in Qt 6.6.
36 lines
743 B
C++
36 lines
743 B
C++
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#pragma once
|
|
|
|
#include <QtCore/QMap>
|
|
#include <QtWidgets/QWidget>
|
|
#include <array>
|
|
#include <vector>
|
|
|
|
class QScrollArea;
|
|
class QGridLayout;
|
|
class QVBoxLayout;
|
|
|
|
class ControllerSettingsWindow;
|
|
|
|
class HotkeySettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
HotkeySettingsWidget(QWidget* parent, ControllerSettingsWindow* dialog);
|
|
~HotkeySettingsWidget();
|
|
|
|
private:
|
|
void createUi();
|
|
void createButtons();
|
|
|
|
ControllerSettingsWindow* m_dialog;
|
|
QScrollArea* m_scroll_area = nullptr;
|
|
QWidget* m_container = nullptr;
|
|
QVBoxLayout* m_layout = nullptr;
|
|
|
|
QMap<QString, QGridLayout*> m_categories;
|
|
};
|