]> git.tdb.fi Git - libs/gui.git/blob - source/gbase/window.h
c48adc5fe3ff81b39ace83eb8402e0b3aa9d1e89
[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         Private *priv;
47
48 public:
49         Window(Display &, unsigned w, unsigned h, bool fs=false);
50         Window(Display &, const WindowOptions &);
51         ~Window();
52
53         void set_title(const std::string &);
54         void reconfigure(const WindowOptions &);
55         void show_cursor(bool);
56         void warp_pointer(int, int);
57
58         Display &get_display() const { return display; }
59         const WindowOptions &get_options() const { return options; }
60         unsigned get_width() const  { return options.width; }
61         unsigned get_height() const { return options.height; }
62         const Private &get_private() const { return *priv; }
63
64         void show();
65         void hide();
66
67         bool event(const Event &evnt);
68 protected:
69         void init();
70 };
71
72 } // namespace Graphics
73 } // namespace Msp
74
75 #endif