summaryrefslogtreecommitdiffstats
path: root/oldsrc/widget.h
blob: fc8570a9da7c81c45cfc02b5859d6cf07505d952 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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