]> git.tdb.fi Git - libs/gui.git/blob - source/gbase/window.h
Various fixes to Window resizing and fullscreen handling on X11
[libs/gui.git] / source / gbase / window.h
1 /* $Id$
2
3 This file is part of libmspgbase
4 Copyright © 2007-2008  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GBASE_WINDOW_H_
9 #define MSP_GBASE_WINDOW_H_
10
11 #include <string>
12 #include <sigc++/signal.h>
13
14 namespace Msp {
15 namespace Graphics {
16
17 class Display;
18
19 struct WindowOptions
20 {
21         unsigned width;
22         unsigned height;
23         bool fullscreen;
24         bool resizable;
25
26         WindowOptions();
27 };
28
29 class Window
30 {
31 public:
32         struct Private;
33         struct Event;
34
35         sigc::signal<void, int, int, unsigned, unsigned> signal_button_press;
36         sigc::signal<void, int, int, unsigned, unsigned> signal_button_release;
37         sigc::signal<void, int, int> signal_pointer_motion;
38         sigc::signal<void, unsigned, unsigned, unsigned> signal_key_press;
39         sigc::signal<void, unsigned, unsigned> signal_key_release;
40         sigc::signal<void, unsigned, unsigned> signal_resize;
41         sigc::signal<void> signal_close;
42
43 protected:
44         Display &display;
45         WindowOptions options;
46         bool visible;
47         bool kbd_autorepeat;
48         bool resizing;
49         Private *priv;
50
51 public:
52         Window(Display &, unsigned w, unsigned h, bool fs=false);
53         Window(Display &, const WindowOptions &);
54 private:
55         void init();
56 public:
57         ~Window();
58
59         void set_title(const std::string &);
60         void reconfigure(const WindowOptions &);
61         void set_keyboard_autorepeat(bool);
62         bool get_keyboard_autorepeat() const { return kbd_autorepeat; }
63         void show_cursor(bool);
64         void warp_pointer(int, int);
65
66         Display &get_display() const { return display; }
67         const WindowOptions &get_options() const { return options; }
68         unsigned get_width() const  { return options.width; }
69         unsigned get_height() const { return options.height; }
70         const Private &get_private() const { return *priv; }
71
72         void show();
73         void hide();
74
75         bool event(const Event &evnt);
76 };
77
78 } // namespace Graphics
79 } // namespace Msp
80
81 #endif