summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/oinputsystem.h
Side-by-side diff
Diffstat (limited to 'libopie2/opiecore/oinputsystem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/oinputsystem.h108
1 files changed, 104 insertions, 4 deletions
diff --git a/libopie2/opiecore/oinputsystem.h b/libopie2/opiecore/oinputsystem.h
index 2bcdc3a..350656b 100644
--- a/libopie2/opiecore/oinputsystem.h
+++ b/libopie2/opiecore/oinputsystem.h
@@ -29,20 +29,120 @@
#ifndef OINPUTSYSTEM_H
#define OINPUTSYSTEM_H
+/* QT */
#include <qobject.h>
+#include <qdict.h>
+
+/* STD */
+#include <linux/input.h>
namespace Opie {
namespace Core {
-/**
- * ...
- *
- */
+class OInputDevice;
+/**
+ * @brief A container class for all input devices
+ *
+ * This class provides access to all available input system devices of your computer.
+ *
+ * @author Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de>
+ */
class OInputSystem : public QObject
{
+ public:
+ typedef QDict<OInputDevice> DeviceMap;
+ typedef QDictIterator<OInputDevice> DeviceIterator;
+
+ /**
+ * @returns the number of available input devices
+ */
+ int count() const;
+ /**
+ * @returns a pointer to the (one and only) @ref OInputSystem instance.
+ */
+ static OInputSystem* instance();
+ /**
+ * @returns an iterator usable for iterating through all network interfaces.
+ */
+ DeviceIterator iterator() const;
+ /**
+ * @returns a pointer to the @ref OAudioInterface object for the specified @a interface or 0, if not found
+ * @see OAudioInterface
+ */
+ OInputDevice* device( const QString& interface ) const;
+ /**
+ * @internal Rebuild the internal interface database
+ * @note Sometimes it might be useful to call this from client code,
+ */
+ void synchronize();
+ /**
+ * @internal desctructor
+ */
+ ~OInputSystem();
+
+ protected:
+ OInputSystem();
+
+ static OInputSystem* _instance;
+ DeviceMap _devices;
+};
+
+
+class OInputDevice : public QObject
+{
+ public:
+
+ enum EventType
+ {
+ Synchronous = EV_SYN,
+ Keyboard = EV_KEY,
+ Relative = EV_REL,
+ Absolute = EV_ABS,
+ Miscellaneous = EV_MSC,
+ Led = EV_LED,
+ Sound = EV_SND,
+ AutoRepeat = EV_REP,
+ ForceFeedback = EV_FF,
+ PowerManagement = EV_PWR,
+ ForceFeedbackStatus = EV_FF_STATUS,
+ };
+
+ enum Bus
+ {
+ PCI = BUS_PCI,
+ ISAPNP = BUS_ISAPNP,
+ HIL = BUS_HIL,
+ BLUETOOTH = BUS_BLUETOOTH,
+ ISA = BUS_ISA,
+ I8042 = BUS_I8042,
+ XTKBD = BUS_XTKBD,
+ RS232 = BUS_RS232,
+ GAMEPORT = BUS_GAMEPORT,
+ PARPORT = BUS_PARPORT,
+ AMIGA = BUS_AMIGA,
+ ADB = BUS_ADB,
+ I2C = BUS_I2C,
+ HOST = BUS_HOST,
+ };
+
+ public:
+ OInputDevice( QObject* parent, const char* name = 0 );
+ ~OInputDevice();
+
+ public:
+ QString identity() const;
+ QString path() const;
+ QString uniq() const;
+
+ private:
+ int _fd;
+ input_id _id;
+
};
+
}
}
#endif // OINPUTSYSTEM_H
+