summaryrefslogtreecommitdiffstats
path: root/src/widget.h
diff options
context:
space:
mode:
authorManuel Schneider2013-10-18 11:25:12 +0200
committerManuel Schneider2013-10-18 11:25:12 +0200
commit9a9ffe7eebf14ea1828480c2e175e4fc39e26dac (patch)
tree86891f6237e419a35b74f465ec450ffbe9506d7d /src/widget.h
downloadbeamergui-9a9ffe7eebf14ea1828480c2e175e4fc39e26dac.tar.gz
beamergui-9a9ffe7eebf14ea1828480c2e175e4fc39e26dac.tar.xz
beamergui-9a9ffe7eebf14ea1828480c2e175e4fc39e26dac.zip
[Incomplete] Commit for EDID testsystem
Diffstat (limited to 'src/widget.h')
-rw-r--r--src/widget.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/widget.h b/src/widget.h
new file mode 100644
index 0000000..fc8570a
--- /dev/null
+++ b/src/widget.h
@@ -0,0 +1,31 @@
+#ifndef WIDGET_H
+#define WIDGET_H
+
+#include <QWidget>
+#include <QtGui>
+
+#include <X11/Xlib.h>
+#include <X11/extensions/Xrandr.h>
+
+namespace Ui {
+class Widget;
+}
+
+class Widget : public QWidget
+{
+ Q_OBJECT
+
+public:
+ explicit Widget(QWidget *parent = 0);
+ ~Widget();
+
+private:
+
+ Ui::Widget * ui;
+
+ void configureWidgetForBeamerWithEDID();
+ void configureWidgetForBeamerWithOUTEDID();
+
+};
+
+#endif // WIDGET_H