]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/monitor.h
Store monitor names
[libs/gui.git] / source / graphics / monitor.h
1 #ifndef MSP_GRAPHICS_MONITOR_H_
2 #define MSP_GRAPHICS_MONITOR_H_
3
4 #include <list>
5 #include <string>
6 #include "videomode.h"
7
8 namespace Msp {
9 namespace Graphics {
10
11 struct Monitor
12 {
13         unsigned index;
14         std::string name;
15         std::list<const VideoMode *> video_modes;
16         const VideoMode *desktop_mode;
17         VideoRotation desktop_rotation;
18         const VideoMode *current_mode;
19         VideoRotation current_rotation;
20         int x, y;
21         const Monitor *next_left;
22         const Monitor *next_right;
23
24         Monitor();
25 };
26
27 } // namespace Graphics
28 } // namespace Msp
29
30 #endif