X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgraphics%2Fwindow.h;h=a6fb92b4e8e1eb4db2f0cf46004a3a93cf92d1f6;hb=d7686e3867e3c68cec0d3767a21f9d2408383085;hp=b9a50fec520bf7baa813e5cbbaa71edc2f875a34;hpb=95480fceabec2dd6354b87a200b4a219b39d4f0a;p=libs%2Fgui.git diff --git a/source/graphics/window.h b/source/graphics/window.h index b9a50fe..a6fb92b 100644 --- a/source/graphics/window.h +++ b/source/graphics/window.h @@ -3,29 +3,28 @@ #include #include +#include "mspgui_api.h" namespace Msp { namespace Graphics { class Display; -class Monitor; +struct Monitor; struct WindowOptions { - int x; - int y; - bool user_position; - unsigned width; - unsigned height; - bool fullscreen; - const Monitor *fullscreen_monitor; - bool fullscreen_exclusive; - bool resizable; - - WindowOptions(); + int x = 0; + int y = 0; + bool user_position = false; + unsigned width = 640; + unsigned height = 480; + bool fullscreen = false; + const Monitor *fullscreen_monitor = nullptr; + bool fullscreen_exclusive = true; + bool resizable = false; }; -class Window +class MSPGUI_API Window { public: struct Private; @@ -47,12 +46,12 @@ public: protected: Display &display; WindowOptions options; - bool visible; - bool kbd_autorepeat; - bool touch_input; - bool resizing; - bool moving; - Private *priv; + bool visible = false; + bool kbd_autorepeat = true; + bool touch_input = false; + bool resizing = false; + bool moving = false; + Private *priv = nullptr; public: Window(Display &, unsigned w, unsigned h, bool fs = false); @@ -62,7 +61,7 @@ private: void platform_init(); void platform_cleanup(); public: - virtual ~Window(); + ~Window(); void set_title(const std::string &); void reconfigure(const WindowOptions &); @@ -82,8 +81,8 @@ public: Display &get_display() const { return display; } const WindowOptions &get_options() const { return options; } - virtual unsigned get_width() const { return options.width; } - virtual unsigned get_height() const { return options.height; } + unsigned get_width() const { return options.width; } + unsigned get_height() const { return options.height; } const Private &get_private() const { return *priv; } void show();