/[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 880 - (show annotations)
Mon Apr 4 02:06:24 2005 UTC (19 years, 2 months ago) by jsorg71
File MIME type: text/plain
File size: 683 byte(s)
added sound

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

  ViewVC Help
Powered by ViewVC 1.1.26