diff options
| author | dknn <yoann.blein@free.fr> | 2012-08-10 18:04:56 (GMT) | 
|---|---|---|
| committer | dknn <yoann.blein@free.fr> | 2012-09-22 09:32:38 (GMT) | 
| commit | 955c4589ca254814ae7ec6ed911e0a62febc5da1 (patch) | |
| tree | 1d3ba8ecc732f8239462f7428e758224f3d38b94 /Swift/QtUI/ScreenSharing/RemoteScreenViewerWidget.h | |
| parent | 577fffec4a1da6909740a392cf76617bdcbe5570 (diff) | |
| download | swift-contrib-955c4589ca254814ae7ec6ed911e0a62febc5da1.zip swift-contrib-955c4589ca254814ae7ec6ed911e0a62febc5da1.tar.bz2  | |
Capture and send user UI events
Diffstat (limited to 'Swift/QtUI/ScreenSharing/RemoteScreenViewerWidget.h')
| -rw-r--r-- | Swift/QtUI/ScreenSharing/RemoteScreenViewerWidget.h | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/Swift/QtUI/ScreenSharing/RemoteScreenViewerWidget.h b/Swift/QtUI/ScreenSharing/RemoteScreenViewerWidget.h index b0a377e..2738e98 100644 --- a/Swift/QtUI/ScreenSharing/RemoteScreenViewerWidget.h +++ b/Swift/QtUI/ScreenSharing/RemoteScreenViewerWidget.h @@ -21,8 +21,14 @@ namespace Swift {  			~RemoteScreenViewerWidget();  		protected: -			void paintEvent(QPaintEvent* event); +			void paintEvent(QPaintEvent*);  			void resizeEvent(QResizeEvent* event); +			void keyPressEvent(QKeyEvent* event); +			void keyReleaseEvent(QKeyEvent* event); +			void mouseMoveEvent(QMouseEvent* event); +			void mousePressEvent(QMouseEvent* event); +			void mouseReleaseEvent(QMouseEvent* event); +			void wheelEvent(QWheelEvent* event);  		private:  			void handleNewImageReceived(const Image& image);  | 
 Swift