all repos — mgba @ a1480e269807f977f523712856137a3408718bd3

mGBA Game Boy Advance Emulator

src/platform/qt/ShortcutView.h (view raw)

 1/* Copyright (c) 2013-2015 Jeffrey Pfau
 2 *
 3 * This Source Code Form is subject to the terms of the Mozilla Public
 4 * License, v. 2.0. If a copy of the MPL was not distributed with this
 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 6#ifndef QGBA_SHORTCUT_VIEW
 7#define QGBA_SHORTCUT_VIEW
 8
 9#include <QWidget>
10
11#include "ui_ShortcutView.h"
12
13namespace QGBA {
14
15class InputController;
16class ShortcutController;
17
18// TODO: suspend shortcuts (keyboard and gamepad) while window is open
19class ShortcutView : public QWidget {
20Q_OBJECT
21
22public:
23	ShortcutView(QWidget* parent = nullptr);
24
25	void setController(ShortcutController* controller);
26	void setInputController(InputController* controller);
27
28protected:
29	virtual bool event(QEvent* event) override;
30
31private slots:
32	void load(const QModelIndex&);
33	void updateKey();
34	void updateButton(int button);
35
36private:
37	void loadKey(const QAction*);
38	void loadButton();
39
40	Ui::ShortcutView m_ui;
41
42	ShortcutController* m_controller;
43	InputController* m_inputController;
44};
45
46}
47
48#endif