diff options
| author | Alexander Hoppe | 2010-08-03 18:23:24 +0200 |
|---|---|---|
| committer | Alexander Hoppe | 2010-08-03 18:23:24 +0200 |
| commit | 19316e9142c5ab4a4e1603715fbbf555aac97826 (patch) | |
| tree | 9090d55685878f0cb82708d6733abf59de8f5499 /src/util/clientGUIUtils.h | |
| parent | Compiler optimizations for "Release" changed (diff) | |
| download | pvs-19316e9142c5ab4a4e1603715fbbf555aac97826.tar.gz pvs-19316e9142c5ab4a4e1603715fbbf555aac97826.tar.xz pvs-19316e9142c5ab4a4e1603715fbbf555aac97826.zip | |
Anpassungen fuer Win32-build.
Aufspaltung der ClientGUIUtils in 2 Versionen
Anpassungen des HomeDir
Alle Aenderungen sollten unschaedlich fuer den Linux-build-Prozess sein.
Diffstat (limited to 'src/util/clientGUIUtils.h')
| -rwxr-xr-x[-rw-r--r--] | src/util/clientGUIUtils.h | 25 |
1 files changed, 7 insertions, 18 deletions
diff --git a/src/util/clientGUIUtils.h b/src/util/clientGUIUtils.h index 28b05cc..b04d3fe 100644..100755 --- a/src/util/clientGUIUtils.h +++ b/src/util/clientGUIUtils.h @@ -1,21 +1,20 @@ +#ifndef _BLANKSCREEN_H_ +#define _BLANKSCREEN_H_ + #include "src/util/consoleLogger.h" -#include <X11/Xlib.h> // Every Xlib program must include this -#include <X11/cursorfont.h> #include <assert.h> #include <unistd.h> #include <stdio.h> - #define REFRESH_RATE 0.15 - -#ifndef _BLANKSCREEN_H_ -#define _BLANKSCREEN_H_ +class BlankScreen_Sysdep; class BlankScreen { public: BlankScreen(); + virtual ~BlankScreen(); void draw(bool force = false); bool lock(); bool unlock(); @@ -23,17 +22,7 @@ public: bool lock_inputs(); private: - Display *dpy; - Window win; - XEvent ev; - int scr; - - bool locked; - - - QString lockMsg; - int blackColor, whiteColor; - int offX, offY; + BlankScreen_Sysdep* _sysdep; }; -#endif +#endif
\ No newline at end of file |
