2010-08-24 21:57:43 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-08-24 21:57:43 +02:00
|
|
|
|
|
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2011-08-14 01:07:10 +02:00
|
|
|
#ifndef WIIMOTESETTINGSPAGE_H
|
|
|
|
#define WIIMOTESETTINGSPAGE_H
|
|
|
|
|
|
|
|
#include "ui/settingspage.h"
|
2010-08-24 21:57:43 +02:00
|
|
|
|
2010-08-25 18:19:54 +02:00
|
|
|
#include <QSettings>
|
2010-08-24 21:57:43 +02:00
|
|
|
|
2010-08-25 20:10:44 +02:00
|
|
|
class QTreeWidgetItem;
|
2011-08-14 01:07:10 +02:00
|
|
|
class Ui_WiimoteSettingsPage;
|
2010-08-24 21:57:43 +02:00
|
|
|
|
2011-08-14 01:07:10 +02:00
|
|
|
class WiimoteSettingsPage : public SettingsPage {
|
2010-08-25 18:19:54 +02:00
|
|
|
Q_OBJECT
|
2010-08-24 21:57:43 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2011-08-14 01:07:10 +02:00
|
|
|
WiimoteSettingsPage(SettingsDialog* dialog);
|
2010-08-26 17:37:07 +02:00
|
|
|
|
2011-08-14 01:07:10 +02:00
|
|
|
void Load();
|
|
|
|
void Save();
|
2010-08-29 17:21:50 +02:00
|
|
|
|
|
|
|
QString GetReadableWiiremoteSequence(quint64 value);
|
2011-08-14 01:07:10 +02:00
|
|
|
QStringList TextActions() const { return text_actions_.values(); }
|
2010-08-26 17:37:07 +02:00
|
|
|
|
2011-08-14 01:07:10 +02:00
|
|
|
signals:
|
|
|
|
void SetWiimotedevInterfaceActived(bool);
|
2010-08-26 17:37:07 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private slots:
|
2010-08-31 20:02:09 +02:00
|
|
|
void AddAction();
|
2010-09-01 01:17:38 +02:00
|
|
|
void AddShortcut(quint64 button, quint32 action);
|
2010-08-26 17:37:07 +02:00
|
|
|
void DefaultSettings();
|
|
|
|
void DeleteAction();
|
2010-09-01 01:17:38 +02:00
|
|
|
void ItemClicked(QTreeWidgetItem*);
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2011-08-14 01:07:10 +02:00
|
|
|
struct Shortcut {
|
|
|
|
QTreeWidgetItem* object;
|
|
|
|
quint64 button;
|
|
|
|
quint32 action;
|
|
|
|
};
|
2010-08-31 22:35:11 +02:00
|
|
|
|
2011-08-14 01:07:10 +02:00
|
|
|
Ui_WiimoteSettingsPage* ui_;
|
|
|
|
|
|
|
|
QString current_id_;
|
|
|
|
|
|
|
|
QList<Shortcut> actions_;
|
|
|
|
QMap<quint64, QString> text_buttons_;
|
|
|
|
QMap<quint32, QString> text_actions_;
|
2010-08-31 22:35:11 +02:00
|
|
|
|
2011-08-14 01:07:10 +02:00
|
|
|
QTreeWidgetItem* selected_item_;
|
2010-08-24 21:57:43 +02:00
|
|
|
};
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
#endif // WIIMOTESETTINGSPAGE_H
|