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");
89 priv->cursor_in_client_area = false;
90 priv->cursor_visible = true;
93 void Window::platform_cleanup()
96 CloseWindow(priv->window);
99 void Window::set_title(const string &title)
101 SetWindowText(priv->window, title.c_str());
104 void Window::platform_reconfigure(bool fullscreen_changed)
107 SetRect(&rect, 0, 0, options.width, options.height);
109 int style = (options.fullscreen ? WS_POPUP : WS_OVERLAPPEDWINDOW);
110 if(!options.resizable)
111 style &= ~WS_THICKFRAME;
112 int exstyle = (options.fullscreen ? WS_EX_APPWINDOW : WS_EX_OVERLAPPEDWINDOW);
113 AdjustWindowRectEx(&rect, style, false, exstyle);
115 if(fullscreen_changed)
118 SetWindowLong(priv->window, GWL_EXSTYLE, exstyle);
119 SetWindowLong(priv->window, GWL_STYLE, style);
123 if(options.fullscreen)
124 SetWindowPos(priv->window, 0, 0, 0, rect.right-rect.left, rect.bottom-rect.top, SWP_NOZORDER);
125 else if(options.user_position)
126 SetWindowPos(priv->window, 0, options.x, options.y, rect.right-rect.left, rect.bottom-rect.top, SWP_NOZORDER);
128 SetWindowPos(priv->window, 0, 0, 0, rect.right-rect.left, rect.bottom-rect.top, SWP_NOMOVE|SWP_NOZORDER);
131 void Window::show_cursor(bool s)
133 priv->cursor_visible = s;
134 if(priv->cursor_in_client_area && !s)
138 void Window::warp_pointer(int, int)
142 void Window::platform_set_touch_input()
144 WORD winver = LOWORD(GetVersion);
145 if(winver<_WIN32_WINNT)
148 throw runtime_error("no touch support");
152 RegisterTouchWindow(priv->window, 3); // TWF_FINETOUCH|TWF_WANTPALM
154 UnregisterTouchWindow(priv->window);
157 void Window::platform_show()
159 ShowWindow(priv->window, SW_SHOWNORMAL);
162 void Window::platform_hide()
164 ShowWindow(priv->window, SW_HIDE);
167 bool Window::event(const Event &evnt)
183 signal_input_event.emit(evnt);
186 options.width = LOWORD(evnt.lparam);
187 options.height = HIWORD(evnt.lparam);
189 signal_resize.emit(options.width, options.height);
192 options.x = static_cast<short>(LOWORD(evnt.lparam));
193 options.y = static_cast<short>(HIWORD(evnt.lparam));
195 signal_move.emit(options.x, options.y);
203 GetUpdateRect(priv->window, &update_rect, false);
204 unsigned width = update_rect.right-update_rect.left;
205 unsigned height = update_rect.bottom-update_rect.top;
206 signal_expose.emit(update_rect.left, update_rect.top, width, height, evnt);
209 if(BeginPaint(priv->window, &paint))
210 EndPaint(priv->window, &paint);
214 signal_got_focus.emit();
217 signal_lost_focus.emit();
220 priv->cursor_in_client_area = (LOWORD(evnt.lparam)==HTCLIENT);
221 if(priv->cursor_in_client_area && !priv->cursor_visible)
233 } // namespace Graphics