summaryrefslogtreecommitdiffstats
path: root/src/client/clientapp/clientapp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/clientapp/clientapp.h')
-rw-r--r--src/client/clientapp/clientapp.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/client/clientapp/clientapp.h b/src/client/clientapp/clientapp.h
index 8a7fd83..dbfbc32 100644
--- a/src/client/clientapp/clientapp.h
+++ b/src/client/clientapp/clientapp.h
@@ -1,5 +1,7 @@
-#include<QApplication>
#include "../util/util.h"
+#include "../net/serverconnection.h"
+
+#include <QApplication>
#include <QSharedPointer>
#include <QSettings>
@@ -11,7 +13,6 @@
class Toolbar;
class ConnectWindow;
-class ServerConnection;
/* this class is supposed to (after complete refactoring) to encapsulate all
* state of the application. At the moment, the state is distributed within
@@ -55,7 +56,9 @@ public:
ConnectWindow* connectWindow() const { return _connectWindow; }
- const bool isManagerPc() const { return _isManagerPc; }
+ const bool isConfiguredAsManager() const { return _isManagerPc; }
+
+ const bool isConnectedToLocalManager() const { return _connection != NULL && _connection->isLocalConnection(); }
private slots: