Clementine-audio-player-Mac.../src/ui/wiimotedevshortcutgrabber.cpp

93 lines
3.0 KiB
C++
Raw Normal View History

2010-08-29 17:21:50 +02:00
/* This file is part of Clementine.
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/>.
*/
#include "ui/wiimotedevshortcutgrabber.h"
#include "ui_wiimotedevshortcutgrabber.h"
#include "ui/wiimotedevshortcutsconfig.h"
#include "wiimotedev/consts.h"
2010-08-29 17:21:50 +02:00
WiimotedevShortcutGrabber::WiimotedevShortcutGrabber(QWidget *parent)
2010-08-29 17:21:50 +02:00
: QDialog(parent),
ui_(new Ui_WiimotedevShortcutGrabber),
config_(qobject_cast<WiimotedevShortcutsConfig*>(parent)),
2010-08-29 17:21:50 +02:00
wiimotedev_device_(1),
wiimotedev_buttons_(0),
remember_wiimote_shifts_(0),
remember_nunchuk_shifts_(0)
2010-08-29 17:21:50 +02:00
{
ui_->setupUi(this);
if (QDBusConnection::systemBus().isConnected()) {
wiimotedev_iface_.reset(new OrgWiimotedevDeviceEventsInterface(
WIIMOTEDEV_DBUS_SERVICE_NAME,
WIIMOTEDEV_DBUS_EVENTS_OBJECT,
QDBusConnection::systemBus(),
this));
connect(wiimotedev_iface_.get(), SIGNAL(dbusWiimoteGeneralButtons(uint,qulonglong)),
this, SLOT(DbusWiimoteGeneralButtons(uint,qulonglong)));
}
2010-08-29 17:21:50 +02:00
foreach (const QString& name, config_->text_actions_.values())
ui_->comboBox->addItem(name);
connect(ui_->remember_shifts, SIGNAL(clicked(bool)), this, SLOT(RememberSwingChecked(bool)));
2010-08-29 17:21:50 +02:00
}
WiimotedevShortcutGrabber::~WiimotedevShortcutGrabber() {
delete ui_;
}
void WiimotedevShortcutGrabber::RememberSwingChecked(bool checked) {
quint64 buttons = wiimotedev_buttons_;
if (checked) {
buttons |= remember_wiimote_shifts_ | remember_nunchuk_shifts_;
ui_->combo->setText(config_->GetReadableWiiremoteSequence(buttons));
} else {
remember_wiimote_shifts_ = 0;
remember_nunchuk_shifts_ = 0;
buttons &= ~(WIIMOTE_SHIFT_MASK | NUNCHUK_SHIFT_MASK);
ui_->combo->setText(config_->GetReadableWiiremoteSequence(buttons));
}
}
void WiimotedevShortcutGrabber::DbusWiimoteGeneralButtons(uint id, qulonglong value) {
2010-08-29 17:21:50 +02:00
if (wiimotedev_device_ != id) return;
quint64 buttons = value & ~(
WIIMOTE_TILT_MASK |
NUNCHUK_TILT_MASK |
WIIMOTE_BTN_SHIFT_SHAKE |
NUNCHUK_BTN_SHIFT_SHAKE);
if (ui_->remember_shifts->isChecked()) {
if (!(buttons & WIIMOTE_SHIFT_MASK)) buttons |= remember_wiimote_shifts_;
if (!(buttons & NUNCHUK_SHIFT_MASK)) buttons |= remember_nunchuk_shifts_;
}
2010-08-29 17:21:50 +02:00
if (wiimotedev_buttons_ == buttons) return;
remember_wiimote_shifts_ = buttons & WIIMOTE_SHIFT_MASK;
remember_nunchuk_shifts_ = buttons & NUNCHUK_SHIFT_MASK;
ui_->combo->setText(config_->GetReadableWiiremoteSequence(buttons));
2010-08-29 17:21:50 +02:00
wiimotedev_buttons_ = buttons;
}