]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/x11/window_platform.h
3c81a6e76559c99c22eaf5ad9dc8471f2d9efacc
[libs/gui.git] / source / graphics / x11 / window_platform.h
1 #ifndef MSP_GRAPHICS_WINDOW_PLATFORM_H_
2 #define MSP_GRAPHICS_WINDOW_PLATFORM_H_
3
4 #include <X11/Xlib.h>
5
6 namespace Msp {
7 namespace Graphics {
8
9 typedef ::Window WindowHandle;
10
11 struct PlatformWindowPrivate
12 {
13         Atom wm_delete_window;
14         Cursor invisible_cursor;
15 };
16
17 struct PlatformEvent
18 {
19         XEvent xevent;
20 };
21
22 } // namespace Graphics
23 } // namespace Msp
24
25 #endif