X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgraphics%2Fwindow.h;h=2d4376e1761baf82c7e59316b7823e5436721d9b;hb=e15959a69551c2027029470e65a17ea5a305545b;hp=8065762a4b2cc57d826db9f904f594de17365b96;hpb=f6ca714e2258f4cad433801c88264947d4c2d14c;p=libs%2Fgui.git diff --git a/source/graphics/window.h b/source/graphics/window.h index 8065762..2d4376e 100644 --- a/source/graphics/window.h +++ b/source/graphics/window.h @@ -13,6 +13,7 @@ struct WindowOptions { int x; int y; + bool user_position; unsigned width; unsigned height; bool fullscreen; @@ -32,6 +33,9 @@ public: objects instead. */ sigc::signal signal_input_event; + sigc::signal signal_got_focus; + sigc::signal signal_lost_focus; + sigc::signal signal_move; sigc::signal signal_resize; sigc::signal signal_expose; @@ -44,6 +48,7 @@ protected: bool kbd_autorepeat; bool touch_input; bool resizing; + bool moving; Private *priv; public: