Flutter Windows Embedder
flutter_windows_view.h
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 
5 #ifndef FLUTTER_SHELL_PLATFORM_WINDOWS_FLUTTER_WINDOWS_VIEW_H_
6 #define FLUTTER_SHELL_PLATFORM_WINDOWS_FLUTTER_WINDOWS_VIEW_H_
7 
8 #include <memory>
9 #include <mutex>
10 #include <string>
11 #include <unordered_map>
12 #include <utility>
13 #include <vector>
14 
15 #include "flutter/fml/macros.h"
18 #include "flutter/shell/platform/embedder/embedder.h"
26 
27 namespace flutter {
28 
29 // A unique identifier for a view.
30 using FlutterViewId = int64_t;
31 
32 // An OS-windowing neutral abstration for a Flutter view that works
33 // with win32 HWNDs.
35  public:
36  // Creates a FlutterWindowsView with the given implementor of
37  // WindowBindingHandler.
40  FlutterWindowsEngine* engine,
41  std::unique_ptr<WindowBindingHandler> window_binding,
42  std::shared_ptr<WindowsProcTable> windows_proc_table = nullptr);
43 
44  virtual ~FlutterWindowsView();
45 
46  // Get the view's unique identifier.
47  FlutterViewId view_id() const;
48 
49  // Whether this view is the implicit view.
50  //
51  // The implicit view is a special view for backwards compatibility.
52  // The engine assumes it can always render to this view, even if the app has
53  // destroyed the window for this view.
54  //
55  // Today, the implicit view is the first view that is created. It is the only
56  // view that can be created before the engine is launched.
57  //
58  // The embedder must ignore presents to this view before it is created and
59  // after it is destroyed.
60  //
61  // See:
62  // https://api.flutter.dev/flutter/dart-ui/PlatformDispatcher/implicitView.html
63  bool IsImplicitView() const;
64 
65  // Create a rendering surface for Flutter engine to draw into.
66  //
67  // This is a no-op if using software rasterization.
68  void CreateRenderSurface();
69 
70  // Get the EGL surface that backs the Flutter view.
71  //
72  // This might be nullptr or an invalid surface.
73  egl::WindowSurface* surface() const;
74 
75  // Return the currently configured HWND.
76  virtual HWND GetWindowHandle() const;
77 
78  // Returns the engine backing this view.
80 
81  // Tells the engine to generate a new frame
82  void ForceRedraw();
83 
84  // Callback to clear a previously presented software bitmap.
85  virtual bool ClearSoftwareBitmap();
86 
87  // Callback for presenting a software bitmap.
88  virtual bool PresentSoftwareBitmap(const void* allocation,
89  size_t row_bytes,
90  size_t height);
91 
92  // Creates a window metric for this view.
93  //
94  // Used to notify the engine of a view's current size and device pixel ratio.
95  FlutterWindowMetricsEvent CreateWindowMetricsEvent() const;
96 
97  // Send initial bounds to embedder. Must occur after engine has initialized.
98  //
99  // This is a no-op if this is not the implicit view. Non-implicit views'
100  // initial window metrics are sent when the view is added to the engine.
101  void SendInitialBounds();
102 
103  // Set the text of the alert, and create it if it does not yet exist.
104  void AnnounceAlert(const std::wstring& text);
105 
106  // |WindowBindingHandlerDelegate|
107  void OnHighContrastChanged() override;
108 
109  // Called on the raster thread when |CompositorOpenGL| receives an empty
110  // frame. Returns true if the frame can be presented.
111  //
112  // This destroys and then re-creates the view's surface if a resize is
113  // pending.
114  bool OnEmptyFrameGenerated();
115 
116  // Called on the raster thread when |CompositorOpenGL| receives a frame.
117  // Returns true if the frame can be presented.
118  //
119  // This destroys and then re-creates the view's surface if a resize is pending
120  // and |width| and |height| match the target size.
121  bool OnFrameGenerated(size_t width, size_t height);
122 
123  // Called on the raster thread after |CompositorOpenGL| presents a frame.
124  //
125  // This completes a view resize if one is pending.
126  virtual void OnFramePresented();
127 
128  // Sets the cursor that should be used when the mouse is over the Flutter
129  // content. See mouse_cursor.dart for the values and meanings of cursor_name.
130  void UpdateFlutterCursor(const std::string& cursor_name);
131 
132  // Sets the cursor directly from a cursor handle.
133  void SetFlutterCursor(HCURSOR cursor);
134 
135  // |WindowBindingHandlerDelegate|
136  bool OnWindowSizeChanged(size_t width, size_t height) override;
137 
138  // |WindowBindingHandlerDelegate|
139  void OnWindowRepaint() override;
140 
141  // |WindowBindingHandlerDelegate|
142  void OnPointerMove(double x,
143  double y,
144  FlutterPointerDeviceKind device_kind,
145  int32_t device_id,
146  int modifiers_state) override;
147 
148  // |WindowBindingHandlerDelegate|
149  void OnPointerDown(double x,
150  double y,
151  FlutterPointerDeviceKind device_kind,
152  int32_t device_id,
153  FlutterPointerMouseButtons button) override;
154 
155  // |WindowBindingHandlerDelegate|
156  void OnPointerUp(double x,
157  double y,
158  FlutterPointerDeviceKind device_kind,
159  int32_t device_id,
160  FlutterPointerMouseButtons button) override;
161 
162  // |WindowBindingHandlerDelegate|
163  void OnPointerLeave(double x,
164  double y,
165  FlutterPointerDeviceKind device_kind,
166  int32_t device_id = 0) override;
167 
168  // |WindowBindingHandlerDelegate|
169  virtual void OnPointerPanZoomStart(int32_t device_id) override;
170 
171  // |WindowBindingHandlerDelegate|
172  virtual void OnPointerPanZoomUpdate(int32_t device_id,
173  double pan_x,
174  double pan_y,
175  double scale,
176  double rotation) override;
177 
178  // |WindowBindingHandlerDelegate|
179  virtual void OnPointerPanZoomEnd(int32_t device_id) override;
180 
181  // |WindowBindingHandlerDelegate|
182  void OnText(const std::u16string&) override;
183 
184  // |WindowBindingHandlerDelegate|
185  void OnKey(int key,
186  int scancode,
187  int action,
188  char32_t character,
189  bool extended,
190  bool was_down,
191  KeyEventCallback callback) override;
192 
193  // |WindowBindingHandlerDelegate|
194  void OnFocus(FlutterViewFocusState focus_state,
195  FlutterViewFocusDirection direction) override;
196 
197  // |WindowBindingHandlerDelegate|
198  void OnComposeBegin() override;
199 
200  // |WindowBindingHandlerDelegate|
201  void OnComposeCommit() override;
202 
203  // |WindowBindingHandlerDelegate|
204  void OnComposeEnd() override;
205 
206  // |WindowBindingHandlerDelegate|
207  void OnComposeChange(const std::u16string& text, int cursor_pos) override;
208 
209  // |WindowBindingHandlerDelegate|
210  void OnScroll(double x,
211  double y,
212  double delta_x,
213  double delta_y,
214  int scroll_offset_multiplier,
215  FlutterPointerDeviceKind device_kind,
216  int32_t device_id) override;
217 
218  // |WindowBindingHandlerDelegate|
219  void OnScrollInertiaCancel(int32_t device_id) override;
220 
221  // |WindowBindingHandlerDelegate|
222  virtual void OnUpdateSemanticsEnabled(bool enabled) override;
223 
224  // |WindowBindingHandlerDelegate|
225  virtual gfx::NativeViewAccessible GetNativeViewAccessible() override;
226 
227  // Notifies the delegate of the updated the cursor rect in Flutter root view
228  // coordinates.
229  virtual void OnCursorRectUpdated(const Rect& rect);
230 
231  // Notifies the delegate that the system IME composing state should be reset.
232  virtual void OnResetImeComposing();
233 
234  // Called when a WM_ONCOMPOSITIONCHANGED message is received.
236 
237  // Get a pointer to the alert node for this view.
238  ui::AXPlatformNodeWin* AlertNode() const;
239 
240  // |WindowBindingHandlerDelegate|
241  virtual ui::AXFragmentRootDelegateWin* GetAxFragmentRootDelegate() override;
242 
243  // Called to re/set the accessibility bridge pointer.
244  virtual void UpdateSemanticsEnabled(bool enabled);
245 
246  std::weak_ptr<AccessibilityBridgeWindows> accessibility_bridge() {
247  return accessibility_bridge_;
248  }
249 
250  // |WindowBindingHandlerDelegate|
251  void OnWindowStateEvent(HWND hwnd, WindowStateEvent event) override;
252 
253  // Focus the view.
254  // Returns true if the view was focused.
255  virtual bool Focus();
256 
257  protected:
258  virtual void NotifyWinEventWrapper(ui::AXPlatformNodeWin* node,
259  ax::mojom::Event event);
260 
261  // Create an AccessibilityBridgeWindows using this view.
262  virtual std::shared_ptr<AccessibilityBridgeWindows>
264 
265  private:
266  // Allows setting the surface in tests.
267  friend class ViewModifier;
268 
269  // Struct holding the state of an individual pointer. The engine doesn't keep
270  // track of which buttons have been pressed, so it's the embedding's
271  // responsibility.
272  struct PointerState {
273  // The device kind.
274  FlutterPointerDeviceKind device_kind = kFlutterPointerDeviceKindMouse;
275 
276  // A virtual pointer ID that is unique across all device kinds.
277  int32_t pointer_id = 0;
278 
279  // True if the last event sent to Flutter had at least one button pressed.
280  bool flutter_state_is_down = false;
281 
282  // True if kAdd has been sent to Flutter. Used to determine whether
283  // to send a kAdd event before sending an incoming pointer event, since
284  // Flutter expects pointers to be added before events are sent for them.
285  bool flutter_state_is_added = false;
286 
287  // The currently pressed buttons, as represented in FlutterPointerEvent.
288  uint64_t buttons = 0;
289 
290  // The x position where the last pan/zoom started.
291  double pan_zoom_start_x = 0;
292 
293  // The y position where the last pan/zoom started.
294  double pan_zoom_start_y = 0;
295  };
296 
297  // States a resize event can be in.
298  enum class ResizeState {
299  // When a resize event has started but is in progress.
300  kResizeStarted,
301  // After a resize event starts and the framework has been notified to
302  // generate a frame for the right size.
303  kFrameGenerated,
304  // Default state for when no resize is in progress. Also used to indicate
305  // that during a resize event, a frame with the right size has been rendered
306  // and the buffers have been swapped.
307  kDone,
308  };
309 
310  // Resize the surface to the desired size.
311  //
312  // If the dimensions have changed, this destroys the original surface and
313  // creates a new one.
314  //
315  // This must be run on the raster thread. This binds the surface to the
316  // current thread.
317  //
318  // Width and height are the surface's desired physical pixel dimensions.
319  bool ResizeRenderSurface(size_t width, size_t height);
320 
321  // Sends a window metrics update to the Flutter engine using current window
322  // dimensions in physical pixels.
323  void SendWindowMetrics(size_t width, size_t height, double pixel_ratio) const;
324 
325  // Reports a mouse movement to Flutter engine.
326  void SendPointerMove(double x, double y, PointerState* state);
327 
328  // Reports mouse press to Flutter engine.
329  void SendPointerDown(double x, double y, PointerState* state);
330 
331  // Reports mouse release to Flutter engine.
332  void SendPointerUp(double x, double y, PointerState* state);
333 
334  // Reports mouse left the window client area.
335  //
336  // Win32 api doesn't have "mouse enter" event. Therefore, there is no
337  // SendPointerEnter method. A mouse enter event is tracked then the "move"
338  // event is called.
339  void SendPointerLeave(double x, double y, PointerState* state);
340 
341  void SendPointerPanZoomStart(int32_t device_id, double x, double y);
342 
343  void SendPointerPanZoomUpdate(int32_t device_id,
344  double pan_x,
345  double pan_y,
346  double scale,
347  double rotation);
348 
349  void SendPointerPanZoomEnd(int32_t device_id);
350 
351  // Reports a keyboard character to Flutter engine.
352  void SendText(const std::u16string&);
353 
354  // Reports a raw keyboard message to Flutter engine.
355  void SendKey(int key,
356  int scancode,
357  int action,
358  char32_t character,
359  bool extended,
360  bool was_down,
362 
363  // Reports a focus event to Flutter engine.
364  void SendFocus(FlutterViewFocusState focus_state,
365  FlutterViewFocusDirection direction);
366 
367  // Reports an IME compose begin event.
368  //
369  // Triggered when the user begins editing composing text using a multi-step
370  // input method such as in CJK text input.
371  void SendComposeBegin();
372 
373  // Reports an IME compose commit event.
374  //
375  // Triggered when the user commits the current composing text while using a
376  // multi-step input method such as in CJK text input. Composing continues with
377  // the next keypress.
378  void SendComposeCommit();
379 
380  // Reports an IME compose end event.
381  //
382  // Triggered when the user commits the composing text while using a multi-step
383  // input method such as in CJK text input.
384  void SendComposeEnd();
385 
386  // Reports an IME composing region change event.
387  //
388  // Triggered when the user edits the composing text while using a multi-step
389  // input method such as in CJK text input.
390  void SendComposeChange(const std::u16string& text, int cursor_pos);
391 
392  // Reports scroll wheel events to Flutter engine.
393  void SendScroll(double x,
394  double y,
395  double delta_x,
396  double delta_y,
397  int scroll_offset_multiplier,
398  FlutterPointerDeviceKind device_kind,
399  int32_t device_id);
400 
401  // Reports scroll inertia cancel events to Flutter engine.
402  void SendScrollInertiaCancel(int32_t device_id, double x, double y);
403 
404  // Creates a PointerState object unless it already exists.
405  PointerState* GetOrCreatePointerState(FlutterPointerDeviceKind device_kind,
406  int32_t device_id);
407 
408  // Sets |event_data|'s phase to either kMove or kHover depending on the
409  // current primary mouse button state.
410  void SetEventPhaseFromCursorButtonState(FlutterPointerEvent* event_data,
411  const PointerState* state) const;
412 
413  // Sends a pointer event to the Flutter engine based on given data. Since
414  // all input messages are passed in physical pixel values, no translation is
415  // needed before passing on to engine.
416  void SendPointerEventWithData(const FlutterPointerEvent& event_data,
417  PointerState* state);
418 
419  // If true, rendering to the window should synchronize with the vsync
420  // to prevent screen tearing.
421  bool NeedsVsync() const;
422 
423  // The view's unique identifier.
424  FlutterViewId view_id_;
425 
426  // The engine associated with this view.
427  FlutterWindowsEngine* engine_ = nullptr;
428 
429  // Mocks win32 APIs.
430  std::shared_ptr<WindowsProcTable> windows_proc_table_;
431 
432  // The EGL surface backing the view.
433  //
434  // Null if using software rasterization, the surface hasn't been created yet,
435  // or if surface creation failed.
436  std::unique_ptr<egl::WindowSurface> surface_ = nullptr;
437 
438  // Keeps track of pointer states in relation to the window.
439  std::unordered_map<int32_t, std::unique_ptr<PointerState>> pointer_states_;
440 
441  // Currently configured WindowBindingHandler for view.
442  std::unique_ptr<WindowBindingHandler> binding_handler_;
443 
444  // Protects resize_status_, resize_target_width_ and resize_target_height_.
445  std::mutex resize_mutex_;
446 
447  // Indicates the state of a window resize event. Platform thread will be
448  // blocked while this is not done. Guarded by resize_mutex_.
449  ResizeState resize_status_ = ResizeState::kDone;
450 
451  // Target for the window width. Valid when resize_pending_ is set. Guarded by
452  // resize_mutex_.
453  size_t resize_target_width_ = 0;
454 
455  // Target for the window width. Valid when resize_pending_ is set. Guarded by
456  // resize_mutex_.
457  size_t resize_target_height_ = 0;
458 
459  // True when flutter's semantics tree is enabled.
460  bool semantics_enabled_ = false;
461 
462  // The accessibility bridge associated with this view.
463  std::shared_ptr<AccessibilityBridgeWindows> accessibility_bridge_;
464 
465  FML_DISALLOW_COPY_AND_ASSIGN(FlutterWindowsView);
466 };
467 
468 } // namespace flutter
469 
470 #endif // FLUTTER_SHELL_PLATFORM_WINDOWS_FLUTTER_WINDOWS_VIEW_H_
flutter::FlutterWindowsView::OnPointerMove
void OnPointerMove(double x, double y, FlutterPointerDeviceKind device_kind, int32_t device_id, int modifiers_state) override
Definition: flutter_windows_view.cc:245
flutter::FlutterWindowsView::OnPointerUp
void OnPointerUp(double x, double y, FlutterPointerDeviceKind device_kind, int32_t device_id, FlutterPointerMouseButtons button) override
Definition: flutter_windows_view.cc:267
flutter::WindowStateEvent
WindowStateEvent
An event representing a change in window state that may update the.
Definition: windows_lifecycle_manager.h:24
flutter::FlutterWindowsView::OnWindowStateEvent
void OnWindowStateEvent(HWND hwnd, WindowStateEvent event) override
Definition: flutter_windows_view.cc:840
flutter::FlutterWindowsView::CreateRenderSurface
void CreateRenderSurface()
Definition: flutter_windows_view.cc:725
flutter::FlutterWindowsView::OnUpdateSemanticsEnabled
virtual void OnUpdateSemanticsEnabled(bool enabled) override
Definition: flutter_windows_view.cc:356
flutter::FlutterWindowsView::FlutterWindowsView
FlutterWindowsView(FlutterViewId view_id, FlutterWindowsEngine *engine, std::unique_ptr< WindowBindingHandler > window_binding, std::shared_ptr< WindowsProcTable > windows_proc_table=nullptr)
Definition: flutter_windows_view.cc:104
flutter::FlutterWindowsView::OnComposeCommit
void OnComposeCommit() override
Definition: flutter_windows_view.cc:327
flutter::FlutterWindowsView
Definition: flutter_windows_view.h:34
scancode
int scancode
Definition: keyboard_key_handler_unittests.cc:115
flutter::FlutterWindowsView::~FlutterWindowsView
virtual ~FlutterWindowsView()
Definition: flutter_windows_view.cc:121
geometry.h
was_down
bool was_down
Definition: keyboard_key_handler_unittests.cc:119
flutter::FlutterWindowsView::surface
egl::WindowSurface * surface() const
Definition: flutter_windows_view.cc:778
extended
bool extended
Definition: keyboard_key_handler_unittests.cc:118
plugin_registrar.h
flutter::egl::WindowSurface
Definition: window_surface.h:19
flutter::FlutterWindowsView::OnPointerDown
void OnPointerDown(double x, double y, FlutterPointerDeviceKind device_kind, int32_t device_id, FlutterPointerMouseButtons button) override
Definition: flutter_windows_view.cc:254
flutter::FlutterWindowsEngine
Definition: flutter_windows_engine.h:90
character
char32_t character
Definition: keyboard_key_handler_unittests.cc:117
flutter::FlutterWindowsView::OnComposeChange
void OnComposeChange(const std::u16string &text, int cursor_pos) override
Definition: flutter_windows_view.cc:335
flutter::FlutterWindowsView::accessibility_bridge
std::weak_ptr< AccessibilityBridgeWindows > accessibility_bridge()
Definition: flutter_windows_view.h:246
flutter::FlutterWindowsView::OnScrollInertiaCancel
void OnScrollInertiaCancel(int32_t device_id) override
Definition: flutter_windows_view.cc:351
flutter::FlutterWindowsView::ForceRedraw
void ForceRedraw()
Definition: flutter_windows_view.cc:187
flutter::FlutterWindowsView::OnPointerPanZoomStart
virtual void OnPointerPanZoomStart(int32_t device_id) override
Definition: flutter_windows_view.cc:287
flutter::WindowBindingHandlerDelegate
Definition: window_binding_handler_delegate.h:18
flutter::FlutterWindowsView::Focus
virtual bool Focus()
Definition: flutter_windows_view.cc:844
flutter::FlutterWindowsView::IsImplicitView
bool IsImplicitView() const
Definition: flutter_windows_view.cc:721
flutter::Rect
Definition: geometry.h:56
flutter::FlutterWindowsView::AnnounceAlert
void AnnounceAlert(const std::wstring &text)
Definition: flutter_windows_view.cc:794
windows_proc_table.h
flutter::FlutterWindowsView::GetWindowHandle
virtual HWND GetWindowHandle() const
Definition: flutter_windows_view.cc:786
flutter::FlutterWindowsView::OnPointerPanZoomUpdate
virtual void OnPointerPanZoomUpdate(int32_t device_id, double pan_x, double pan_y, double scale, double rotation) override
Definition: flutter_windows_view.cc:292
flutter::FlutterWindowsView::OnWindowRepaint
void OnWindowRepaint() override
Definition: flutter_windows_view.cc:241
flutter::WindowBindingHandlerDelegate::KeyEventCallback
std::function< void(bool)> KeyEventCallback
Definition: window_binding_handler_delegate.h:20
flutter::FlutterWindowsView::OnComposeEnd
void OnComposeEnd() override
Definition: flutter_windows_view.cc:331
flutter::FlutterWindowsView::ViewModifier
friend class ViewModifier
Definition: flutter_windows_view.h:267
text
std::u16string text
Definition: keyboard_unittests.cc:332
flutter::FlutterWindowsView::view_id
FlutterViewId view_id() const
Definition: flutter_windows_view.cc:717
flutter::FlutterWindowsView::OnHighContrastChanged
void OnHighContrastChanged() override
Definition: flutter_windows_view.cc:782
flutter::FlutterWindowsView::OnWindowSizeChanged
bool OnWindowSizeChanged(size_t width, size_t height) override
Definition: flutter_windows_view.cc:195
accessibility_bridge_windows.h
window_binding_handler.h
flutter::FlutterViewId
int64_t FlutterViewId
Definition: flutter_view.h:13
flutter::FlutterWindowsView::OnFrameGenerated
bool OnFrameGenerated(size_t width, size_t height)
Definition: flutter_windows_view.cc:153
window_state.h
flutter
Definition: accessibility_bridge_windows.cc:11
flutter::FlutterWindowsView::UpdateFlutterCursor
void UpdateFlutterCursor(const std::string &cursor_name)
Definition: flutter_windows_view.cc:179
flutter::FlutterWindowsView::SetFlutterCursor
void SetFlutterCursor(HCURSOR cursor)
Definition: flutter_windows_view.cc:183
flutter::FlutterWindowsView::OnPointerLeave
void OnPointerLeave(double x, double y, FlutterPointerDeviceKind device_kind, int32_t device_id=0) override
Definition: flutter_windows_view.cc:280
flutter::FlutterWindowsView::OnText
void OnText(const std::u16string &) override
Definition: flutter_windows_view.cc:304
flutter::FlutterWindowsView::PresentSoftwareBitmap
virtual bool PresentSoftwareBitmap(const void *allocation, size_t row_bytes, size_t height)
Definition: flutter_windows_view.cc:710
flutter::FlutterWindowsView::OnCursorRectUpdated
virtual void OnCursorRectUpdated(const Rect &rect)
Definition: flutter_windows_view.cc:368
flutter::FlutterWindowsView::AlertNode
ui::AXPlatformNodeWin * AlertNode() const
Definition: flutter_windows_view.cc:815
flutter::FlutterWindowsView::GetEngine
FlutterWindowsEngine * GetEngine() const
Definition: flutter_windows_view.cc:790
flutter::FlutterWindowsView::OnPointerPanZoomEnd
virtual void OnPointerPanZoomEnd(int32_t device_id) override
Definition: flutter_windows_view.cc:300
flutter::FlutterWindowsView::OnDwmCompositionChanged
void OnDwmCompositionChanged()
Definition: flutter_windows_view.cc:836
flutter::FlutterWindowsView::NotifyWinEventWrapper
virtual void NotifyWinEventWrapper(ui::AXPlatformNodeWin *node, ax::mojom::Event event)
Definition: flutter_windows_view.cc:804
flutter_windows_engine.h
flutter::FlutterWindowsView::OnEmptyFrameGenerated
bool OnEmptyFrameGenerated()
Definition: flutter_windows_view.cc:131
flutter::FlutterWindowsView::ClearSoftwareBitmap
virtual bool ClearSoftwareBitmap()
Definition: flutter_windows_view.cc:706
flutter::FlutterWindowsView::UpdateSemanticsEnabled
virtual void UpdateSemanticsEnabled(bool enabled)
Definition: flutter_windows_view.cc:824
flutter::FlutterWindowsView::OnComposeBegin
void OnComposeBegin() override
Definition: flutter_windows_view.cc:323
flutter_windows.h
flutter::FlutterWindowsView::SendInitialBounds
void SendInitialBounds()
Definition: flutter_windows_view.cc:403
flutter::FlutterWindowsView::CreateAccessibilityBridge
virtual std::shared_ptr< AccessibilityBridgeWindows > CreateAccessibilityBridge()
Definition: flutter_windows_view.cc:820
flutter::FlutterWindowsView::OnFocus
void OnFocus(FlutterViewFocusState focus_state, FlutterViewFocusDirection direction) override
Definition: flutter_windows_view.cc:318
action
int action
Definition: keyboard_key_handler_unittests.cc:116
flutter::FlutterWindowsView::OnScroll
void OnScroll(double x, double y, double delta_x, double delta_y, int scroll_offset_multiplier, FlutterPointerDeviceKind device_kind, int32_t device_id) override
Definition: flutter_windows_view.cc:340
flutter::FlutterWindowsView::GetAxFragmentRootDelegate
virtual ui::AXFragmentRootDelegateWin * GetAxFragmentRootDelegate() override
Definition: flutter_windows_view.cc:811
key
int key
Definition: keyboard_key_handler_unittests.cc:114
flutter::FlutterWindowsView::CreateWindowMetricsEvent
FlutterWindowMetricsEvent CreateWindowMetricsEvent() const
Definition: flutter_windows_view.cc:389
window_binding_handler_delegate.h
flutter::FlutterWindowsView::OnKey
void OnKey(int key, int scancode, int action, char32_t character, bool extended, bool was_down, KeyEventCallback callback) override
Definition: flutter_windows_view.cc:308
flutter::FlutterWindowsView::GetNativeViewAccessible
virtual gfx::NativeViewAccessible GetNativeViewAccessible() override
Definition: flutter_windows_view.cc:360
flutter::FlutterWindowsView::OnResetImeComposing
virtual void OnResetImeComposing()
Definition: flutter_windows_view.cc:372
flutter::FlutterWindowsView::OnFramePresented
virtual void OnFramePresented()
Definition: flutter_windows_view.cc:673
callback
FlutterDesktopBinaryReply callback
Definition: flutter_windows_view_unittests.cc:52