mirror of
https://github.com/AntiMicroX/antimicrox.git
synced 2025-12-23 23:29:25 -05:00
130 lines
4.0 KiB
C++
130 lines
4.0 KiB
C++
/* antimicrox Gamepad to KB+M event mapper
|
|
* Copyright (C) 2015 Travis Nickles <nickles.travis@gmail.com>
|
|
* Copyright (C) 2020 Jagoda Górska <juliagoda.pl@protonmail>
|
|
* Copyright (C) 2020 Paweł Kotiuk <kotiuk@zohomail.eu>
|
|
*
|
|
* This program 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.
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "quicksetdialog.h"
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
/*
|
|
|
|
buttonBox->Close cannot be disabled
|
|
joystickDialogLabel->text() cannot be empty
|
|
getJoystick() cannot be null pointer
|
|
if joystickDialogLabel->text() == ui->joystickDialogLabel->text().arg(joystick->getSDLName()).arg(joystick->getName())
|
|
|
|
QListIterator<JoyControlStick*> sticksList = currentset->getSticks().values();
|
|
if sticksList.hasNext() then device has sticks (amount = currentset->getSticks().values().count())
|
|
|
|
QListIterator<JoyAxis*> axesList = currentset->getAxes()->values();;
|
|
if axesList.hasNext() then device has axes (amount = currentset->getAxes()->values().count())
|
|
|
|
QListIterator<JoyDPad*> dpadsList = currentset->getHats().values();
|
|
if dpadsList.hasNext() then device has dpads (amount = currentset->getHats().values().count())
|
|
|
|
QListIterator<VDPad*> vdpadsList = currentset->getVdpads().values();
|
|
if vdpadsList.hasNext() then device has vdpads (amount = currentset->getVdpads().values().count())
|
|
|
|
QListIterator<JoyButton*> btnsList = currentset->getButtons().values();
|
|
if btnsList.hasNext() then device has buttons (amount = currentset->getButtons().values().count())
|
|
|
|
emit pressed stick
|
|
qobject_cast<JoyControlStick*>(getLastPressedButton()) != nullptr
|
|
add thread to list
|
|
|
|
emit pressed axis
|
|
possibleAxisAction && qobject_cast<JoyAxis*>(getLastPressedButton()) != nullptr
|
|
add thread to list
|
|
|
|
emit pressed dpad
|
|
qobject_cast<JoyDPad*>(getLastPressedButton()) != nullptr
|
|
add thread to list
|
|
|
|
emit pressed vdpad
|
|
qobject_cast<VDPad*>(getLastPressedButton()) != nullptr
|
|
add thread to list
|
|
|
|
emit pressed button
|
|
qobject_cast<JoyButton*>(getLastPressedButton()) != nullptr
|
|
add thread to list
|
|
|
|
emit pressed any button
|
|
getHelper() cannot be nullptr
|
|
add thread to list
|
|
|
|
all threads should be different
|
|
|
|
|
|
run restoreJoystickState (below connections don't exist anymore):
|
|
|
|
for each stickbutton
|
|
connect(stickbutton, &JoyControlStickButton::clicked, this, [this, stickbutton]() {
|
|
showStickButtonDialog(stickbutton);
|
|
});
|
|
|
|
for each naxisbutton
|
|
connect(naxisbutton, &JoyAxisButton::clicked, this, [this, naxisbutton]() {
|
|
showAxisButtonDialog(naxisbutton);
|
|
});
|
|
|
|
for each paxisbutton
|
|
connect(paxisbutton, &JoyAxisButton::clicked, this, [this, paxisbutton]() {
|
|
showAxisButtonDialog(paxisbutton);
|
|
});
|
|
|
|
for each dpadbutton
|
|
connect(dpadbutton, &JoyDPadButton::clicked, this, [this, dpadbutton] {
|
|
showDPadButtonDialog(dpadbutton);
|
|
});
|
|
|
|
for each vdpadbutton
|
|
connect(dpadbutton, &JoyDPadButton::clicked, this, [this, dpadbutton] {
|
|
showDPadButtonDialog(dpadbutton);
|
|
});
|
|
|
|
for each button
|
|
connect(button, &JoyButton::clicked, this, [this, button] {
|
|
showButtonDialog(button);
|
|
});
|
|
|
|
*/
|
|
|
|
class TestQuickSetDialog: public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TestQuickSetDialog(QObject* parent = 0);
|
|
|
|
private slots:
|
|
|
|
private:
|
|
QuickSetDialog quicksetdialog;
|
|
};
|
|
|
|
TestQuickSetDialog::TestQuickSetDialog(QObject* parent) :
|
|
QObject(parent),
|
|
QuickSetDialog()
|
|
{
|
|
QTestEventLoop::instance().enterLoop(1);
|
|
}
|
|
|
|
// QTEST_MAIN(TestQuickSetDialog)
|
|
#include "testquicksetdialog.moc"
|
|
|