AntiMicroX
Loading...
Searching...
No Matches
joyaxisxml.h
Go to the documentation of this file.
1/* antimicrox Gamepad to KB+M event mapper
2 * Copyright (C) 2020 Jagoda Górska <juliagoda.pl@protonmail>
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef JOYAXISXML_H
19#define JOYAXISXML_H
20
21#include <QObject>
22#include <QPointer>
23
24class JoyAxis;
25class JoyButtonXml;
28
29class JoyAxisXml : public QObject
30{
32
33 public:
34 explicit JoyAxisXml(JoyAxis *axis, QObject *parent = nullptr);
36
37 virtual void readConfig(QXmlStreamReader *xml);
38 virtual void writeConfig(QXmlStreamWriter *xml);
39
40 virtual bool readMainConfig(QXmlStreamReader *xml);
41 virtual bool readButtonConfig(QXmlStreamReader *xml);
42
43 private:
47};
48
49#endif // JOYAXISXML_H
Definition joyaxisxml.h:30
virtual void writeConfig(QXmlStreamWriter *xml)
Definition joyaxisxml.cpp:69
virtual bool readButtonConfig(QXmlStreamReader *xml)
Definition joyaxisxml.cpp:192
JoyAxis * m_joyAxis
Definition joyaxisxml.h:44
QPointer< JoyButtonXml > joyButtonXmlPAxis
Definition joyaxisxml.h:46
virtual bool readMainConfig(QXmlStreamReader *xml)
Definition joyaxisxml.cpp:127
QPointer< JoyButtonXml > joyButtonXmlNAxis
Definition joyaxisxml.h:45
virtual void readConfig(QXmlStreamReader *xml)
Definition joyaxisxml.cpp:45
~JoyAxisXml()
Definition joyaxisxml.cpp:37
Represents single axis of of joystick (or other input)
Definition joyaxis.h:41
Definition joybuttonxml.h:28
Definition joydpadxml.h:27