diff options
Diffstat (limited to 'krdc/vnc/kvncview.h')
-rw-r--r-- | krdc/vnc/kvncview.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/krdc/vnc/kvncview.h b/krdc/vnc/kvncview.h index daaf30b1..d869846b 100644 --- a/krdc/vnc/kvncview.h +++ b/krdc/vnc/kvncview.h @@ -2,7 +2,8 @@ kvncview.h - widget that shows the vnc client ------------------- begin : Thu Dec 20 15:11:42 CET 2001 - copyright : (C) 2001-2003 by Tim Jansen + copyright : (C) 2015 Timothy Pearson <kb9vqf@pearsoncomputing.net> + (C) 2001-2003 by Tim Jansen email : tim@tjansen.de ***************************************************************************/ @@ -24,7 +25,6 @@ #include "pointerlatencyometer.h" #include "hostpreferences.h" -#include "vnctypes.h" #include "threads.h" class TQClipBoard; @@ -34,8 +34,8 @@ class KVncView : public KRemoteView Q_OBJECT private: - ControllerThread m_cthread; - WriterThread m_wthread; + ControllerThreadObject m_cthreadObject; + TQEventLoopThread m_cthread; volatile bool m_quitFlag; // if set: all threads should die ASAP TQMutex m_framebufferLock; bool m_enableFramebufferLocking; @@ -74,6 +74,7 @@ protected: void mouseMoveEvent(TQMouseEvent*); void wheelEvent(TQWheelEvent *); void focusOutEvent(TQFocusEvent *); + void resizeEvent(TQResizeEvent *); bool x11Event(XEvent*); public: @@ -116,6 +117,8 @@ public slots: private slots: +// void requestPassword(); + void clipboardChanged(); void selectionChanged(); }; |