]> git.tdb.fi Git - libs/gui.git/blobdiff - source/graphics/videomode.h
Use float rather than unsigned for refresh rate
[libs/gui.git] / source / graphics / videomode.h
index 4054b4bb1308398e5278d926d082d811c529d003..a9c58bd003d1cb26c0f8c052832194cc1446bcb6 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef MSP_GRAPHICS_VIDEOMODE_H_
 #define MSP_GRAPHICS_VIDEOMODE_H_
 
+#include <stdexcept>
+
 namespace Msp {
 namespace Graphics {
 
@@ -15,12 +17,23 @@ public:
 };
 
 
+enum VideoRotation
+{
+       ROTATE_ANY,
+       ROTATE_NORMAL,
+       ROTATE_LEFT,
+       ROTATE_RIGHT,
+       ROTATE_INVERTED
+};
+
 struct VideoMode
 {
+       unsigned index;
        const Monitor *monitor;
        unsigned width;
        unsigned height;
-       unsigned rate;
+       float rate;
+       VideoRotation rotation;
 
        VideoMode();
        VideoMode(unsigned, unsigned);