mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 10:22:49 +00:00
97 lines
4.1 KiB
C++
97 lines
4.1 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2003 by Martin Koller *
|
|
* kollix@aon.at *
|
|
* This file is part of the KDE Control Center Module for Joysticks *
|
|
* *
|
|
* 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 2 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, write to the *
|
|
* Free Software Foundation, Inc., *
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
***************************************************************************/
|
|
|
|
#include "joystick.h"
|
|
#include "joywidget.h"
|
|
#include "joydevice.h"
|
|
|
|
#include <kaboutdata.h>
|
|
#include <kglobal.h>
|
|
#include <klocale.h>
|
|
#include <kdialog.h>
|
|
|
|
#include <stdio.h>
|
|
#include <KPluginFactory>
|
|
#include <KPluginLoader>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
K_PLUGIN_FACTORY(JoystickFactory, registerPlugin<Joystick>();)
|
|
K_EXPORT_PLUGIN(JoystickFactory("joystick"))
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
Joystick::Joystick(QWidget *parent, const QVariantList &)
|
|
: KCModule(JoystickFactory::componentData(), parent)
|
|
{
|
|
setButtons(Help);
|
|
setAboutData(new KAboutData("kcmjoystick", 0, ki18n("KDE Joystick Control Module"), "1.0",
|
|
ki18n("KDE System Settings Module to test Joysticks"),
|
|
KAboutData::License_GPL, ki18n("(c) 2004, Martin Koller")));
|
|
|
|
setQuickHelp( i18n("<h1>Joystick</h1>"
|
|
"This module helps to check if your joystick is working correctly.<br />"
|
|
"If it delivers wrong values for the axes, you can try to solve this with "
|
|
"the calibration.<br />"
|
|
"This module tries to find all available joystick devices "
|
|
"by checking /dev/js[0-4] and /dev/input/js[0-4]<br />"
|
|
"If you have another device file, enter it in the combobox.<br />"
|
|
"The Buttons list shows the state of the buttons on your joystick, the Axes list "
|
|
"shows the current value for all axes.<br />"
|
|
"NOTE: the current Linux device driver can only autodetect"
|
|
"<ul>"
|
|
"<li>2-axis, 4-button joystick</li>"
|
|
"<li>3-axis, 4-button joystick</li>"
|
|
"<li>4-axis, 4-button joystick</li>"
|
|
"<li>Saitek Cyborg 'digital' joysticks</li>"
|
|
"</ul>"
|
|
"(For details you can check https://www.kernel.org/doc/Documentation/input/joystick.txt)"
|
|
));
|
|
|
|
joyWidget = new JoyWidget(this);
|
|
|
|
QVBoxLayout *top = new QVBoxLayout(this);
|
|
top->setMargin(0);
|
|
top->setSpacing(KDialog::spacingHint());
|
|
top->addWidget(joyWidget);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
void Joystick::load()
|
|
{
|
|
joyWidget->init();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
void Joystick::defaults()
|
|
{
|
|
joyWidget->resetCalibration();
|
|
|
|
emit changed(true);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
#include "moc_joystick.cpp"
|