summaryrefslogtreecommitdiff
path: root/util/epist/screen.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-07-20 16:17:24 +0000
committerDana Jansens <danakj@orodu.net>2002-07-20 16:17:24 +0000
commitf32096dcd2c5a4e44763def56c290ce37aa548ba (patch)
tree377dbb09e40ae8fe93b21818573222ba0fd432cb /util/epist/screen.hh
parentbf3c87c886c810097b7de9d5639e0916987b2185 (diff)
exec works now
Diffstat (limited to 'util/epist/screen.hh')
-rw-r--r--util/epist/screen.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/util/epist/screen.hh b/util/epist/screen.hh
index 7e2e880d..1f0a3875 100644
--- a/util/epist/screen.hh
+++ b/util/epist/screen.hh
@@ -28,18 +28,21 @@ extern "C" {
}
#include <vector>
+#include <string>
#include "window.hh"
class epist;
class screen;
class XAtom;
+class ScreenInfo;
class screen {
epist *_epist;
XAtom *_xatom;
int _number;
Window _root;
+ const ScreenInfo *_info;
std::string _wm_name;
@@ -75,6 +78,7 @@ public:
void cycleWorkspace(const bool forward, const bool loop = true) const;
void changeWorkspace(const int num) const;
void toggleShaded(const Window win) const;
+ void execCommand(const std::string &cmd) const;
};
#endif // __screen_hh