annotate OSWindow.h @ 2056:a35d173cd99c

Merge
author Ritor1
date Sat, 30 Nov 2013 20:09:04 +0600
parents 71a814f4482a
children b2a434d65344
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);
2052
71a814f4482a Moved implementation to cpp
Nomad
parents: 1994
diff changeset
9 void Delete();
1804
Nomad
parents:
diff changeset
10
Nomad
parents:
diff changeset
11 void SetFullscreenMode();
Nomad
parents:
diff changeset
12 void SetWindowedMode(int new_window_width, int new_window_height);
Nomad
parents:
diff changeset
13 void SetCursor(const char *cursor_name);
Nomad
parents:
diff changeset
14
Nomad
parents:
diff changeset
15 inline HWND GetApiHandle() const {return api_handle;}
2052
71a814f4482a Moved implementation to cpp
Nomad
parents: 1994
diff changeset
16 inline int GetX() const {RECT rc; GetWindowRect(api_handle, &rc); return rc.left;}
71a814f4482a Moved implementation to cpp
Nomad
parents: 1994
diff changeset
17 inline int GetY() const {RECT rc; GetWindowRect(api_handle, &rc); return rc.top;}
1804
Nomad
parents:
diff changeset
18 inline unsigned int GetWidth() const {RECT rc; GetClientRect(api_handle, &rc); return rc.right - rc.left;}
Nomad
parents:
diff changeset
19 inline unsigned int GetHeight() const {RECT rc; GetClientRect(api_handle, &rc); return rc.bottom - rc.top;}
Nomad
parents:
diff changeset
20
Nomad
parents:
diff changeset
21
Nomad
parents:
diff changeset
22 bool OnOSMenu(int item_id);
Nomad
parents:
diff changeset
23
Nomad
parents:
diff changeset
24 // UIControl
Nomad
parents:
diff changeset
25 virtual void Show() override;
Nomad
parents:
diff changeset
26
Nomad
parents:
diff changeset
27 // UIControl
Nomad
parents:
diff changeset
28 virtual bool Focused() override {return GetFocus() == api_handle;}
Nomad
parents:
diff changeset
29
Nomad
parents:
diff changeset
30 // UIControl
1815
bd899dfd976c MainMenuWindow
Nomad
parents: 1804
diff changeset
31 //virtual bool OnKey(int key) override;
1804
Nomad
parents:
diff changeset
32 // UIControl
Nomad
parents:
diff changeset
33 virtual bool OnMouseLeftClick(int x, int y) override;
Nomad
parents:
diff changeset
34 // UIControl
Nomad
parents:
diff changeset
35 virtual bool OnMouseRightClick(int x, int y) override;
Nomad
parents:
diff changeset
36 // UIControl
1815
bd899dfd976c MainMenuWindow
Nomad
parents: 1804
diff changeset
37 //virtual bool OnMouseEnter() override;
1804
Nomad
parents:
diff changeset
38 // UIControl
1815
bd899dfd976c MainMenuWindow
Nomad
parents: 1804
diff changeset
39 //virtual bool OnMouseLeave() override;
1804
Nomad
parents:
diff changeset
40
Nomad
parents:
diff changeset
41 protected:
Nomad
parents:
diff changeset
42 bool Initialize(const wchar_t *title, int window_width, int window_height);
1994
4088cc908c78 auto change color depth to 16 bit
zipi
parents: 1815
diff changeset
43 void Deinitialize();
4088cc908c78 auto change color depth to 16 bit
zipi
parents: 1815
diff changeset
44 bool SetColorDepth(int bit);
1804
Nomad
parents:
diff changeset
45 bool WinApiMessageProc(UINT msg, WPARAM wparam, LPARAM lparam, LRESULT *result);
Nomad
parents:
diff changeset
46
2052
71a814f4482a Moved implementation to cpp
Nomad
parents: 1994
diff changeset
47 HWND api_handle;
1804
Nomad
parents:
diff changeset
48
Nomad
parents:
diff changeset
49 private:
2052
71a814f4482a Moved implementation to cpp
Nomad
parents: 1994
diff changeset
50 bool ChangedColorDepth;
1804
Nomad
parents:
diff changeset
51 static LPARAM __stdcall WinApiMsgRouter(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam);
Nomad
parents:
diff changeset
52
Nomad
parents:
diff changeset
53 HMENU CreateDebugMenuPanel();
Nomad
parents:
diff changeset
54 };