annotate OSWindow.h @ 2104:9574c5bfb96f

UpdateSounds()
author Ritor1
date Wed, 18 Dec 2013 17:33:04 +0600
parents b2a434d65344
children d24ee391fd1f
rev   line source
1804
Nomad
parents:
diff changeset
1 #pragma once
Nomad
parents:
diff changeset
2 #include "OSAPI.h"
1815
bd899dfd976c MainMenuWindow
Nomad
parents: 1804
diff changeset
3 #include "NewUI/Core/UIControl.h"
1804
Nomad
parents:
diff changeset
4
Nomad
parents:
diff changeset
5 class OSWindow: public UIControl
Nomad
parents:
diff changeset
6 {
Nomad
parents:
diff changeset
7 public:
Nomad
parents:
diff changeset
8 static OSWindow *Create(const wchar_t *title, int window_width, int window_height);
Nomad
parents:
diff changeset
9
Nomad
parents:
diff changeset
10 void SetFullscreenMode();
Nomad
parents:
diff changeset
11 void SetWindowedMode(int new_window_width, int new_window_height);
Nomad
parents:
diff changeset
12 void SetCursor(const char *cursor_name);
Nomad
parents:
diff changeset
13
Nomad
parents:
diff changeset
14 inline HWND GetApiHandle() const {return api_handle;}
2052
71a814f4482a Moved implementation to cpp
Nomad
parents: 1994
diff changeset
15 inline int GetX() const {RECT rc; GetWindowRect(api_handle, &rc); return rc.left;}
71a814f4482a Moved implementation to cpp
Nomad
parents: 1994
diff changeset
16 inline int GetY() const {RECT rc; GetWindowRect(api_handle, &rc); return rc.top;}
1804
Nomad
parents:
diff changeset
17 inline unsigned int GetWidth() const {RECT rc; GetClientRect(api_handle, &rc); return rc.right - rc.left;}
Nomad
parents:
diff changeset
18 inline unsigned int GetHeight() const {RECT rc; GetClientRect(api_handle, &rc); return rc.bottom - rc.top;}
Nomad
parents:
diff changeset
19
Nomad
parents:
diff changeset
20
Nomad
parents:
diff changeset
21 bool OnOSMenu(int item_id);
Nomad
parents:
diff changeset
22
Nomad
parents:
diff changeset
23 // UIControl
Nomad
parents:
diff changeset
24 virtual void Show() override;
Nomad
parents:
diff changeset
25
Nomad
parents:
diff changeset
26 // UIControl
Nomad
parents:
diff changeset
27 virtual bool Focused() override {return GetFocus() == api_handle;}
Nomad
parents:
diff changeset
28
Nomad
parents:
diff changeset
29 // UIControl
1815
bd899dfd976c MainMenuWindow
Nomad
parents: 1804
diff changeset
30 //virtual bool OnKey(int key) override;
1804
Nomad
parents:
diff changeset
31 // UIControl
Nomad
parents:
diff changeset
32 virtual bool OnMouseLeftClick(int x, int y) override;
Nomad
parents:
diff changeset
33 // UIControl
Nomad
parents:
diff changeset
34 virtual bool OnMouseRightClick(int x, int y) override;
Nomad
parents:
diff changeset
35 // UIControl
1815
bd899dfd976c MainMenuWindow
Nomad
parents: 1804
diff changeset
36 //virtual bool OnMouseEnter() override;
1804
Nomad
parents:
diff changeset
37 // UIControl
1815
bd899dfd976c MainMenuWindow
Nomad
parents: 1804
diff changeset
38 //virtual bool OnMouseLeave() override;
1804
Nomad
parents:
diff changeset
39
Nomad
parents:
diff changeset
40 protected:
Nomad
parents:
diff changeset
41 bool Initialize(const wchar_t *title, int window_width, int window_height);
Nomad
parents:
diff changeset
42 bool WinApiMessageProc(UINT msg, WPARAM wparam, LPARAM lparam, LRESULT *result);
Nomad
parents:
diff changeset
43
2052
71a814f4482a Moved implementation to cpp
Nomad
parents: 1994
diff changeset
44 HWND api_handle;
1804
Nomad
parents:
diff changeset
45
Nomad
parents:
diff changeset
46 private:
Nomad
parents:
diff changeset
47 static LPARAM __stdcall WinApiMsgRouter(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam);
Nomad
parents:
diff changeset
48
Nomad
parents:
diff changeset
49 HMENU CreateDebugMenuPanel();
Nomad
parents:
diff changeset
50 };