diff options
Diffstat (limited to 'client/control.h')
-rw-r--r-- | client/control.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/control.h b/client/control.h index 5f28f0a..a72ed82 100644 --- a/client/control.h +++ b/client/control.h @@ -29,7 +29,6 @@ #include <QMutex> #include <QString> -#include <QImage> /** * Class for the global control object. @@ -52,9 +51,13 @@ public: bool isFrozen(); bool isRecording(); + bool isScreenshot(); + void takeScreenshot(); + private: bool frozen; bool recording; + bool screenshot; QMutex mutex; QString cpr; |