1 #define _WIN32_WINNT 0x0601
3 #include <msp/core/application.h>
4 #include <msp/core/systemerror.h>
6 #include "window_private.h"
12 LRESULT CALLBACK wndproc_(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
16 CREATESTRUCT *cs = reinterpret_cast<CREATESTRUCT *>(lparam);
17 SetWindowLong(hwnd, 0, reinterpret_cast<LONG>(cs->lpCreateParams));
21 Msp::Graphics::Window *wnd = reinterpret_cast<Msp::Graphics::Window *>(GetWindowLong(hwnd, 0));
22 Msp::Graphics::Window::Event ev;
26 ev.extra = GetMessageExtraInfo();
27 if(wnd && wnd->event(ev))
31 return DefWindowProc(hwnd, msg, wparam, lparam);
39 void Window::platform_init()
41 static bool wndclass_created = false;
47 wndcl.cbSize = sizeof(WNDCLASSEX);
49 wndcl.lpfnWndProc = &wndproc_;
51 wndcl.cbWndExtra = sizeof(Window *);
52 wndcl.hInstance = reinterpret_cast<HINSTANCE>(Application::get_data());
54 wndcl.hCursor = LoadCursor(0, IDC_ARROW);
55 wndcl.hbrBackground = 0;
56 wndcl.lpszMenuName = 0;
57 wndcl.lpszClassName = "mspgui";
60 if(!RegisterClassEx(&wndcl))
61 throw system_error("RegisterClassEx");
63 wndclass_created = true;
67 SetRect(&rect, 0, 0, options.width, options.height);
69 int style = (options.fullscreen ? WS_POPUP : WS_OVERLAPPEDWINDOW);
70 if(!options.resizable)
71 style &= ~WS_THICKFRAME;
72 int exstyle = (options.fullscreen ? WS_EX_APPWINDOW : WS_EX_OVERLAPPEDWINDOW);
73 AdjustWindowRectEx(&rect, style, false, exstyle);
75 priv->window = CreateWindowEx(exstyle,
79 (options.user_position ? options.x : CW_USEDEFAULT),
80 (options.user_position ? options.y : CW_USEDEFAULT),
81 rect.right-rect.left, rect.bottom-rect.top,
84 reinterpret_cast<HINSTANCE>(Application::get_data()),
87 throw system_error("CreateWindowEx");
90 void Window::platform_cleanup()
93 CloseWindow(priv->window);
96 void Window::set_title(const string &title)
98 SetWindowText(priv->window, title.c_str());
101 void Window::platform_reconfigure(bool fullscreen_changed)
104 SetRect(&rect, 0, 0, options.width, options.height);
106 int style = (options.fullscreen ? WS_POPUP : WS_OVERLAPPEDWINDOW);
107 if(!options.resizable)
108 style &= ~WS_THICKFRAME;
109 int exstyle = (options.fullscreen ? WS_EX_APPWINDOW : WS_EX_OVERLAPPEDWINDOW);
110 AdjustWindowRectEx(&rect, style, false, exstyle);
112 if(fullscreen_changed)
115 SetWindowLong(priv->window, GWL_EXSTYLE, exstyle);
116 SetWindowLong(priv->window, GWL_STYLE, style);
120 if(options.fullscreen)
121 SetWindowPos(priv->window, 0, 0, 0, rect.right-rect.left, rect.bottom-rect.top, SWP_NOZORDER);
122 else if(options.user_position)
123 SetWindowPos(priv->window, 0, options.x, options.y, rect.right-rect.left, rect.bottom-rect.top, SWP_NOZORDER);
125 SetWindowPos(priv->window, 0, 0, 0, rect.right-rect.left, rect.bottom-rect.top, SWP_NOMOVE|SWP_NOZORDER);
128 void Window::show_cursor(bool s)
133 void Window::warp_pointer(int, int)
137 void Window::platform_set_touch_input()
139 WORD winver = LOWORD(GetVersion);
140 if(winver<_WIN32_WINNT)
143 throw runtime_error("no touch support");
147 RegisterTouchWindow(priv->window, 3); // TWF_FINETOUCH|TWF_WANTPALM
149 UnregisterTouchWindow(priv->window);
152 void Window::platform_show()
154 ShowWindow(priv->window, SW_SHOWNORMAL);
157 void Window::platform_hide()
159 ShowWindow(priv->window, SW_HIDE);
162 bool Window::event(const Event &evnt)
178 signal_input_event.emit(evnt);
181 options.width = LOWORD(evnt.lparam);
182 options.height = HIWORD(evnt.lparam);
184 signal_resize.emit(options.width, options.height);
187 options.x = static_cast<short>(LOWORD(evnt.lparam));
188 options.y = static_cast<short>(HIWORD(evnt.lparam));
190 signal_move.emit(options.x, options.y);
198 GetUpdateRect(priv->window, &update_rect, false);
199 unsigned width = update_rect.right-update_rect.left;
200 unsigned height = update_rect.bottom-update_rect.top;
201 signal_expose.emit(update_rect.left, update_rect.top, width, height, evnt);
204 if(BeginPaint(priv->window, &paint))
205 EndPaint(priv->window, &paint);
209 signal_got_focus.emit();
212 signal_lost_focus.emit();
221 } // namespace Graphics