/* This file is part of Clementine. Copyright 2010, David Sansome Clementine is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Clementine is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Clementine. If not, see . */ #ifndef WIIMOTESHORTCUTGRABBER_H #define WIIMOTESHORTCUTGRABBER_H #include #include #include #include "dbus/wiimotedev.h" #include "wiimotesettingspage.h" class Ui_WiimoteShortcutGrabber; class WiimoteShortcutGrabber : public QDialog { Q_OBJECT public: WiimoteShortcutGrabber(quint32 action, quint32 device, WiimoteSettingsPage* parent); ~WiimoteShortcutGrabber(); private slots: void DbusWiimoteGeneralButtons(uint id, qulonglong value); void RememberSwingChecked(bool checked); void Timeout(int); private: QTimeLine line_; quint32 pref_action_; Ui_WiimoteShortcutGrabber* ui_; WiimoteSettingsPage* config_; std::unique_ptr wiimotedev_iface_; quint32 wiimotedev_device_; quint64 wiimotedev_buttons_; quint64 remember_wiimote_shifts_; quint64 remember_nunchuk_shifts_; signals: void AddShortcut(quint64 buttons, quint32 action); }; #endif // WIIMOTESHORTCUTGRABBER_H