diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2017-12-01 21:06:42 +0100 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2017-12-06 23:47:09 +0100 |
commit | 6f3343f1ce2612cea233975c635a2f37b79fce2f (patch) | |
tree | 6032d5162c52a48b84493e30cdb98ef42618dcda | |
parent | 0d48af4afdf29f39ce954bd16beef6b55b8159bc (diff) |
Remove guards for the now targeted Windows 7+
-rw-r--r-- | platform/windows/os_windows.cpp | 16 | ||||
-rw-r--r-- | platform/windows/os_windows.h | 4 |
2 files changed, 4 insertions, 16 deletions
diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp index 55e0e5d160..d62ecc6016 100644 --- a/platform/windows/os_windows.cpp +++ b/platform/windows/os_windows.cpp @@ -225,7 +225,6 @@ bool OS_Windows::can_draw() const { void OS_Windows::_touch_event(bool p_pressed, float p_x, float p_y, int idx) { -#if WINVER >= 0x0601 // for windows 7 // Defensive if (touch_state.has(idx) == p_pressed) return; @@ -235,7 +234,6 @@ void OS_Windows::_touch_event(bool p_pressed, float p_x, float p_y, int idx) { } else { touch_state.erase(idx); } -#endif Ref<InputEventScreenTouch> event; event.instance(); @@ -250,7 +248,6 @@ void OS_Windows::_touch_event(bool p_pressed, float p_x, float p_y, int idx) { void OS_Windows::_drag_event(float p_x, float p_y, int idx) { -#if WINVER >= 0x0601 // for windows 7 Map<int, Vector2>::Element *curr = touch_state.find(idx); // Defensive if (!curr) @@ -260,7 +257,6 @@ void OS_Windows::_drag_event(float p_x, float p_y, int idx) { return; curr->get() = Vector2(p_x, p_y); -#endif Ref<InputEventScreenDrag> event; event.instance(); @@ -290,13 +286,13 @@ LRESULT OS_Windows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) if (mouse_mode == MOUSE_MODE_CAPTURED || mouse_mode == MOUSE_MODE_CONFINED) { ReleaseCapture(); } -#if WINVER >= 0x0601 // for windows 7 + // Release every touch to avoid sticky points for (Map<int, Vector2>::Element *E = touch_state.front(); E; E = E->next()) { _touch_event(false, E->get().x, E->get().y, E->key()); } touch_state.clear(); -#endif + break; } case WM_ACTIVATE: // Watch For Window Activate Message @@ -700,7 +696,6 @@ LRESULT OS_Windows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) print_line("input lang change"); } break; -#if WINVER >= 0x0601 // for windows 7 case WM_TOUCH: { BOOL bHandled = FALSE; @@ -734,7 +729,6 @@ LRESULT OS_Windows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) } break; -#endif case WM_DEVICECHANGE: { joypad->probe_joypads(); @@ -1118,9 +1112,7 @@ void OS_Windows::initialize(const VideoMode &p_desired, int p_video_driver, int tme.dwHoverTime = HOVER_DEFAULT; TrackMouseEvent(&tme); -#if WINVER >= 0x0601 // for windows 7 - RegisterTouchWindow(hWnd, 0); // Windows 7 -#endif + RegisterTouchWindow(hWnd, 0); _ensure_user_data_dir(); @@ -1234,9 +1226,7 @@ void OS_Windows::finalize() { memdelete(joypad); memdelete(input); -#if WINVER >= 0x0601 // for windows 7 touch_state.clear(); -#endif visual_server->finish(); memdelete(visual_server); diff --git a/platform/windows/os_windows.h b/platform/windows/os_windows.h index 9b276ba789..af1ccd4446 100644 --- a/platform/windows/os_windows.h +++ b/platform/windows/os_windows.h @@ -117,9 +117,7 @@ class OS_Windows : public OS { InputDefault *input; JoypadWindows *joypad; -#if WINVER >= 0x0601 // for windows 7 Map<int, Vector2> touch_state; -#endif PowerWindows *power_manager; @@ -215,7 +213,7 @@ public: virtual void set_borderless_window(int p_borderless); virtual bool get_borderless_window(); - virtual Error open_dynamic_library(const String p_path, void *&p_library_handle,bool p_also_set_library_path=false); + virtual Error open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path = false); virtual Error close_dynamic_library(void *p_library_handle); virtual Error get_dynamic_library_symbol_handle(void *p_library_handle, const String p_name, void *&p_symbol_handle, bool p_optional = false); |