]> Dogcows Code - chaz/openbox/blob - otk/screeninfo.hh
17063e37cd29186c02a9a16bf31480181d795d83
[chaz/openbox] / otk / screeninfo.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 #ifndef __screeninfo_hh
3 #define __screeninfo_hh
4
5 #include "size.hh"
6 #include "rect.hh"
7
8 extern "C" {
9 #include <X11/Xlib.h>
10 }
11
12 #include <string>
13 #include <vector>
14
15 namespace otk {
16
17 class ScreenInfo {
18 private:
19 Visual *_visual;
20 Window _root_window;
21 Colormap _colormap;
22
23 int _depth;
24 int _screen;
25 std::string _display_string;
26 Size _size;
27 std::vector<Rect> _xinerama_areas;
28 bool _xinerama_active;
29
30 public:
31 ScreenInfo(int num);
32
33 inline Visual *visual() const { return _visual; }
34 inline Window rootWindow() const { return _root_window; }
35 inline Colormap colormap() const { return _colormap; }
36 inline int depth() const { return _depth; }
37 inline int screen() const { return _screen; }
38 inline const Size& size() const { return _size; }
39 inline const std::string& displayString() const { return _display_string; }
40 inline const std::vector<Rect> &xineramaAreas() const
41 { return _xinerama_areas; }
42 inline bool isXineramaActive() const { return _xinerama_active; }
43 };
44
45 }
46
47 #endif // __screeninfo_hh
This page took 0.038477 seconds and 3 git commands to generate.