finishing up repo migration

git-svn-id: svn://svn.code.sf.net/p/qjoypad/code/trunk@80 c05e91a0-76c8-4ec0-b377-ef19ce7cc080
This commit is contained in:
John Toman
2009-05-26 00:45:05 +00:00
committed by virtuoussin13
commit 1cc6e9087e
59 changed files with 6563 additions and 0 deletions

65
src/joypadw.h Normal file
View File

@ -0,0 +1,65 @@
#ifndef JOYPAD_WIDGET_H
#define JOYPAD_WIDGET_H
//parts for the widget
//Added by qt3to4:
#include <linux/joystick.h>
#include "axisw.h"
//this all relates to a JoyPad
#include "joypad.h"
//and a JoyPadWidget is composed of AxisWidgets and ButtonWidgets
#include "buttonw.h"
//JoyPadWidget also is what initiates the whole QuickSet procedure :)
#include "quickset.h"
//because of some circularity issues, I need to forward declare these.
class JoyPad;
class QuickSet;
//Widget for editing a JoyPad
class JoyPadWidget : public QWidget {
Q_OBJECT
public:
JoyPadWidget( JoyPad* jp, int i, QWidget* parent);
~JoyPadWidget();
//takes in an event and decides whether or not to flash anything
void jsevent( js_event msg );
public slots:
//called whenever one of the subwidgets flashes... used to determine
//when to emit the flashed() signal.
void flash( bool on );
//update all the components, that is, get the proper labels up on the buttons
void update();
//reset everything
void clear();
//quickset!
void setAll();
signals:
//happens whenever the tab that represents this joypadwidget should flash
//(either on or off) The int is the index of this widget so that this
//signal can be directly connected to FlashRadioArray's flash(int)
void flashed(int);
protected:
//the joypad this is linked to
JoyPad* joypad;
//the index of this widget IN THE WIDGET STACK! This is unique from
//joypad->index and has nothing to do with device number.
int index;
//how many times one of the components has flashed on minus how many
//times one of the components has flashed off. This is how we know when
//none of the components are left lit.
int flashcount;
//the parts of the dialog
QGridLayout *LMain;
AxisWidget **Axes;
ButtonWidget **Buttons;
QPushButton *BClear, *BAll;
//the quickset window, when we create it
QuickSet* quickset;
};
#endif