/[rdesktop]/sourceforge.net/trunk/rdesktop/uiports/qtwin.h
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /sourceforge.net/trunk/rdesktop/uiports/qtwin.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 716 - (show annotations)
Wed Jun 16 03:27:54 2004 UTC (20 years ago) by jsorg71
File MIME type: text/plain
File size: 661 byte(s)
added 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 };
31

  ViewVC Help
Powered by ViewVC 1.1.26