Flutter Windows Embedder
windows_proc_table.cc
Go to the documentation of this file.
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
6 
7 #include <WinUser.h>
8 #include <dwmapi.h>
9 
10 namespace flutter {
11 
13  user32_ = fml::NativeLibrary::Create("user32.dll");
14  get_pointer_type_ =
15  user32_->ResolveFunction<GetPointerType_*>("GetPointerType");
16  enable_non_client_dpi_scaling_ =
17  user32_->ResolveFunction<EnableNonClientDpiScaling_*>(
18  "EnableNonClientDpiScaling");
19  set_window_composition_attribute_ =
20  user32_->ResolveFunction<SetWindowCompositionAttribute_*>(
21  "SetWindowCompositionAttribute");
22  adjust_window_rect_ext_for_dpi_ =
23  user32_->ResolveFunction<AdjustWindowRectExForDpi_*>(
24  "AdjustWindowRectExForDpi");
25 }
26 
28  user32_ = nullptr;
29 }
30 
31 BOOL WindowsProcTable::GetPointerType(UINT32 pointer_id,
32  POINTER_INPUT_TYPE* pointer_type) const {
33  if (!get_pointer_type_.has_value()) {
34  return FALSE;
35  }
36 
37  return get_pointer_type_.value()(pointer_id, pointer_type);
38 }
39 
41  PULONG count,
42  PZZWSTR languages,
43  PULONG length) const {
44  return ::GetThreadPreferredUILanguages(flags, count, languages, length);
45 }
46 
48  HIGHCONTRAST high_contrast = {.cbSize = sizeof(HIGHCONTRAST)};
49  if (!::SystemParametersInfoW(SPI_GETHIGHCONTRAST, sizeof(HIGHCONTRAST),
50  &high_contrast, 0)) {
51  return false;
52  }
53 
54  return high_contrast.dwFlags & HCF_HIGHCONTRASTON;
55 }
56 
58  BOOL composition_enabled;
59  if (SUCCEEDED(::DwmIsCompositionEnabled(&composition_enabled))) {
60  return composition_enabled;
61  }
62 
63  return true;
64 }
65 
66 HRESULT WindowsProcTable::DwmFlush() const {
67  return ::DwmFlush();
68 }
69 
70 HCURSOR WindowsProcTable::LoadCursor(HINSTANCE instance,
71  LPCWSTR cursor_name) const {
72  return ::LoadCursorW(instance, cursor_name);
73 }
74 
75 HCURSOR WindowsProcTable::SetCursor(HCURSOR cursor) const {
76  return ::SetCursor(cursor);
77 }
78 
80  if (!enable_non_client_dpi_scaling_.has_value()) {
81  return FALSE;
82  }
83 
84  return enable_non_client_dpi_scaling_.value()(hwnd);
85 }
86 
88  HWND hwnd,
89  WINDOWCOMPOSITIONATTRIBDATA* data) const {
90  if (!set_window_composition_attribute_.has_value()) {
91  return FALSE;
92  }
93 
94  return set_window_composition_attribute_.value()(hwnd, data);
95 }
96 
98  HWND hwnd,
99  const MARGINS* pMarInset) const {
100  return ::DwmExtendFrameIntoClientArea(hwnd, pMarInset);
101 }
102 
104  DWORD dwAttribute,
105  LPCVOID pvAttribute,
106  DWORD cbAttribute) const {
107  return ::DwmSetWindowAttribute(hwnd, dwAttribute, pvAttribute, cbAttribute);
108 }
109 
111  DWORD dwStyle,
112  BOOL bMenu,
113  DWORD dwExStyle,
114  UINT dpi) const {
115  if (!adjust_window_rect_ext_for_dpi_.has_value()) {
116  return FALSE;
117  }
118 
119  return adjust_window_rect_ext_for_dpi_.value()(lpRect, dwStyle, bMenu,
120  dwExStyle, dpi);
121 }
122 
123 } // namespace flutter
virtual HRESULT DwmFlush() const
virtual BOOL GetPointerType(UINT32 pointer_id, POINTER_INPUT_TYPE *pointer_type) const
virtual HCURSOR LoadCursor(HINSTANCE instance, LPCWSTR cursor_name) const
virtual HCURSOR SetCursor(HCURSOR cursor) const
virtual bool GetHighContrastEnabled() const
virtual BOOL AdjustWindowRectExForDpi(LPRECT lpRect, DWORD dwStyle, BOOL bMenu, DWORD dwExStyle, UINT dpi) const
virtual BOOL EnableNonClientDpiScaling(HWND hwnd) const
virtual HRESULT DwmExtendFrameIntoClientArea(HWND hwnd, const MARGINS *pMarInset) const
virtual bool DwmIsCompositionEnabled() const
virtual HRESULT DwmSetWindowAttribute(HWND hwnd, DWORD dwAttribute, LPCVOID pvAttribute, DWORD cbAttribute) const
virtual LRESULT GetThreadPreferredUILanguages(DWORD flags, PULONG count, PZZWSTR languages, PULONG length) const
virtual BOOL SetWindowCompositionAttribute(HWND hwnd, WINDOWCOMPOSITIONATTRIBDATA *data) const