]> git.tdb.fi Git - libs/gui.git/blobdiff - source/graphics/window.cpp
Allow configuring window positions as well
[libs/gui.git] / source / graphics / window.cpp
index 658eb26f5aab722c2b1515a4c64c4f6f9334ec73..d116b691c14bcbf11592bca91d9edcb647eca792 100644 (file)
@@ -1,3 +1,4 @@
+#include <msp/core/application.h>
 #include "display.h"
 #include "window.h"
 #include "window_private.h"
@@ -8,6 +9,9 @@ namespace Msp {
 namespace Graphics {
 
 WindowOptions::WindowOptions():
+       x(0),
+       y(0),
+       user_position(false),
        width(640),
        height(480),
        fullscreen(false),
@@ -36,13 +40,19 @@ void Window::init()
 {
        visible = false;
        kbd_autorepeat = true;
+       touch_input = false;
        resizing = false;
+       moving = false;
        priv = new Private;
 
        platform_init();
 
        display.add_window(*this);
        display.check_error();
+
+       const string &app_name = Application::get_name();
+       if(!app_name.empty())
+               set_title(app_name);
 }
 
 Window::~Window()
@@ -62,6 +72,8 @@ void Window::reconfigure(const WindowOptions &opts)
        bool fullscreen_changed = (opts.fullscreen!=options.fullscreen);
        if(opts.width!=options.width || opts.height!=options.height)
                resizing = true;
+       if(opts.x!=options.x || opts.y!=options.y)
+               moving = true;
 
        if(visible)
        {
@@ -80,6 +92,12 @@ void Window::set_keyboard_autorepeat(bool r)
        kbd_autorepeat = r;
 }
 
+void Window::set_touch_input(bool t)
+{
+       touch_input = t;
+       platform_set_touch_input();
+}
+
 void Window::show()
 {
        platform_show();