diff options
| author | Manuel Schneider | 2014-07-09 17:33:53 +0200 |
|---|---|---|
| committer | Manuel Schneider | 2014-07-09 17:33:53 +0200 |
| commit | f93d51b8f880aeeb830fd94f60b45488a974c7cb (patch) | |
| tree | 631ff07d1e7c04e378d1d696303b43ce8abaebc9 /src/server/connectionframe/connectionframe.h | |
| parent | Remove non-existant files from CMakeLists (diff) | |
| parent | NEW feature: Possible to delete offline client by drag and drop to trash, whi... (diff) | |
| download | pvs2-f93d51b8f880aeeb830fd94f60b45488a974c7cb.tar.gz pvs2-f93d51b8f880aeeb830fd94f60b45488a974c7cb.tar.xz pvs2-f93d51b8f880aeeb830fd94f60b45488a974c7cb.zip | |
Merge branch 'master' of git.openslx.org:pvs2
Diffstat (limited to 'src/server/connectionframe/connectionframe.h')
| -rw-r--r-- | src/server/connectionframe/connectionframe.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/server/connectionframe/connectionframe.h b/src/server/connectionframe/connectionframe.h index 72f641d..5a4e1df 100644 --- a/src/server/connectionframe/connectionframe.h +++ b/src/server/connectionframe/connectionframe.h @@ -32,7 +32,7 @@ private: Client *_client; int _timerId, _timerCounter; - bool _selected; + bool _isSelected; bool _isTutor; static const int _startDragDistance = 40; @@ -51,9 +51,10 @@ public: const QPixmap& getFramePixmap() const { return _remoteScreen; } void setSize(int width, int height); + const inline QPoint& getPreviousPosition() const { return _previousPosition; } void assignClient(Client *client); void setSelection(bool selected); - const inline bool selected() const { return _selected; } + const inline bool isSelected() const { return _isSelected; } const QString& computerId() const { return _computerId; } Client* client() const { return _client; } |
