/* Copyright (c) 2013-2015 Jeffrey Pfau * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef QGBA_SHORTCUT_VIEW #define QGBA_SHORTCUT_VIEW #include #include "ui_ShortcutView.h" namespace QGBA { class ShortcutController; class ShortcutView : public QWidget { Q_OBJECT public: ShortcutView(QWidget* parent = nullptr); void setController(ShortcutController* controller); protected: virtual bool event(QEvent* event) override; virtual bool eventFilter(QObject* obj, QEvent* event) override; private slots: void load(const QModelIndex&); void clear(); void updateKey(const QKeySequence&); void updateButton(int button); private: Ui::ShortcutView m_ui; ShortcutController* m_controller; }; } #endif