]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/controllerwidget.h
Fixed bug with missing BIOS on first boot of Virtual Jaguar.
[virtualjaguar] / src / gui / controllerwidget.h
diff --git a/src/gui/controllerwidget.h b/src/gui/controllerwidget.h
new file mode 100644 (file)
index 0000000..09dae52
--- /dev/null
@@ -0,0 +1,17 @@
+#ifndef __CONTROLLERWIDGET_H__
+#define __CONTROLLERWIDGET_H__
+
+#include <QtGui>
+
+class ControllerWidget: public QWidget
+{
+       Q_OBJECT
+
+       public:
+               ControllerWidget(QWidget * parent = 0);
+               ~ControllerWidget();
+
+       //need paint, mousemove, mousedown, mouseup, etc
+};
+
+#endif // __CONTROLLERWIDGET_H__