/*************************************************************************** * 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 #include #include #include #include #include #include #include //--------------------------------------------------------------------------------------------- K_PLUGIN_FACTORY(JoystickFactory, registerPlugin();) 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("

Joystick

" "This module helps to check if your joystick is working correctly.
" "If it delivers wrong values for the axes, you can try to solve this with " "the calibration.
" "This module tries to find all available joystick devices " "by checking /dev/js[0-4] and /dev/input/js[0-4]
" "If you have another device file, enter it in the combobox.
" "The Buttons list shows the state of the buttons on your joystick, the Axes list " "shows the current value for all axes.
" "NOTE: the current Linux device driver can only autodetect" "
    " "
  • 2-axis, 4-button joystick
  • " "
  • 3-axis, 4-button joystick
  • " "
  • 4-axis, 4-button joystick
  • " "
  • Saitek Cyborg 'digital' joysticks
  • " "
" "(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"