- Fix the LARGE_SIZE constant so it uses the lookaside list for mbuf ext buffers...
[reactos.git] / base / applications / tsclient / rdesktop / uiports / qtwin.h
1
2 #include <qwidget.h>
3 #include <qscrollview.h>
4
5 class QMyScrollView: public QScrollView
6 {
7 Q_OBJECT
8 public:
9 void keyPressEvent(QKeyEvent*);
10 void keyReleaseEvent(QKeyEvent*);
11 };
12
13 class QMyMainWindow: public QWidget
14 {
15 Q_OBJECT
16 public:
17 QMyMainWindow();
18 ~QMyMainWindow();
19 void paintEvent(QPaintEvent*);
20 void mouseMoveEvent(QMouseEvent*);
21 void mousePressEvent(QMouseEvent*);
22 void mouseReleaseEvent(QMouseEvent*);
23 void wheelEvent(QWheelEvent*);
24 void keyPressEvent(QKeyEvent*);
25 void keyReleaseEvent(QKeyEvent*);
26 void closeEvent(QCloseEvent*);
27 bool event(QEvent*);
28 public slots:
29 void dataReceived();
30 void soundSend();
31 };
32