Flutter Windows Embedder
flutter_windows_engine.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_ENGINE_H_
6 #define FLUTTER_SHELL_PLATFORM_WINDOWS_FLUTTER_WINDOWS_ENGINE_H_
7 
8 #include <chrono>
9 #include <map>
10 #include <memory>
11 #include <optional>
12 #include <shared_mutex>
13 #include <string>
14 #include <string_view>
15 #include <unordered_map>
16 #include <vector>
17 
18 #include "flutter/fml/closure.h"
19 #include "flutter/fml/macros.h"
25 #include "flutter/shell/platform/embedder/embedder.h"
47 #include "third_party/rapidjson/include/rapidjson/document.h"
48 
49 namespace flutter {
50 
51 // The implicit view's ID.
52 //
53 // See:
54 // https://api.flutter.dev/flutter/dart-ui/PlatformDispatcher/implicitView.html
56 
57 class FlutterWindowsView;
58 
59 // Update the thread priority for the Windows engine.
61  FlutterThreadPriority priority) {
62  // TODO(99502): Add support for tracing to the windows embedding so we can
63  // mark thread priorities and success/failure.
64  switch (priority) {
65  case FlutterThreadPriority::kBackground: {
66  SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_BELOW_NORMAL);
67  break;
68  }
69  case FlutterThreadPriority::kDisplay: {
70  SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_ABOVE_NORMAL);
71  break;
72  }
73  case FlutterThreadPriority::kRaster: {
74  SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_ABOVE_NORMAL);
75  break;
76  }
77  case FlutterThreadPriority::kNormal: {
78  // For normal or default priority we do not need to set the priority
79  // class.
80  break;
81  }
82  }
83 }
84 
85 // Manages state associated with the underlying FlutterEngine that isn't
86 // related to its display.
87 //
88 // In most cases this will be associated with a FlutterView, but if not will
89 // run in headless mode.
91  public:
92  // Creates a new Flutter engine object configured to run |project|.
94  const FlutterProjectBundle& project,
95  std::shared_ptr<WindowsProcTable> windows_proc_table = nullptr);
96 
97  virtual ~FlutterWindowsEngine();
98 
99  // Returns the engine associated with the given identifier.
100  // The engine_id must be valid and for a running engine, otherwise
101  // the behavior is undefined.
102  // Must be called on the platform thread.
103  static FlutterWindowsEngine* GetEngineForId(int64_t engine_id);
104 
105  // Starts running the entrypoint function specifed in the project bundle. If
106  // unspecified, defaults to main().
107  //
108  // Returns false if the engine couldn't be started.
109  bool Run();
110 
111  // Starts running the engine with the given entrypoint. If the empty string
112  // is specified, defaults to the entrypoint function specified in the project
113  // bundle, or main() if both are unspecified.
114  //
115  // Returns false if the engine couldn't be started or if conflicting,
116  // non-default values are passed here and in the project bundle..
117  //
118  // DEPRECATED: Prefer setting the entrypoint in the FlutterProjectBundle
119  // passed to the constructor and calling the no-parameter overload.
120  bool Run(std::string_view entrypoint);
121 
122  // Returns true if the engine is currently running.
123  virtual bool running() const { return engine_ != nullptr; }
124 
125  // Stops the engine. This invalidates the pointer returned by engine().
126  //
127  // Returns false if stopping the engine fails, or if it was not running.
128  virtual bool Stop();
129 
130  // Create a view that can display this engine's content.
131  //
132  // Returns null on failure.
133  std::unique_ptr<FlutterWindowsView> CreateView(
134  std::unique_ptr<WindowBindingHandler> window);
135 
136  // Remove a view. The engine will no longer render into it.
137  virtual void RemoveView(FlutterViewId view_id);
138 
139  // Get a view that displays this engine's content.
140  //
141  // Returns null if the view does not exist.
142  FlutterWindowsView* view(FlutterViewId view_id) const;
143 
144  // Returns the currently configured Plugin Registrar.
146 
147  // Registers |callback| to be called when the plugin registrar is destroyed.
151 
152  // Sets switches member to the given switches.
153  void SetSwitches(const std::vector<std::string>& switches);
154 
155  FlutterDesktopMessengerRef messenger() { return messenger_->ToRef(); }
156 
158  return message_dispatcher_.get();
159  }
160 
161  TaskRunner* task_runner() { return task_runner_.get(); }
162 
163  BinaryMessenger* messenger_wrapper() { return messenger_wrapper_.get(); }
164 
166  return texture_registrar_.get();
167  }
168 
169  // The EGL manager object. If this is nullptr, then we are
170  // rendering using software instead of OpenGL.
171  egl::Manager* egl_manager() const { return egl_manager_.get(); }
172 
174  return window_proc_delegate_manager_.get();
175  }
176 
177  // Informs the engine that the window metrics have changed.
178  void SendWindowMetricsEvent(const FlutterWindowMetricsEvent& event);
179 
180  // Informs the engine of an incoming pointer event.
181  void SendPointerEvent(const FlutterPointerEvent& event);
182 
183  // Informs the engine of an incoming key event.
184  void SendKeyEvent(const FlutterKeyEvent& event,
185  FlutterKeyEventCallback callback,
186  void* user_data);
187 
188  // Informs the engine of an incoming focus event.
189  void SendViewFocusEvent(const FlutterViewFocusEvent& event);
190 
192  return keyboard_key_handler_.get();
193  }
194  TextInputPlugin* text_input_plugin() { return text_input_plugin_.get(); }
195 
196  // Sends the given message to the engine, calling |reply| with |user_data|
197  // when a response is received from the engine if they are non-null.
198  bool SendPlatformMessage(const char* channel,
199  const uint8_t* message,
200  const size_t message_size,
201  const FlutterDesktopBinaryReply reply,
202  void* user_data);
203 
204  // Sends the given data as the response to an earlier platform message.
207  const uint8_t* data,
208  size_t data_length);
209 
210  // Callback passed to Flutter engine for notifying window of platform
211  // messages.
212  void HandlePlatformMessage(const FlutterPlatformMessage*);
213 
214  // Informs the engine that the system font list has changed.
215  void ReloadSystemFonts();
216 
217  // Informs the engine that a new frame is needed to redraw the content.
218  void ScheduleFrame();
219 
220  // Set the callback that is called when the next frame is drawn.
221  void SetNextFrameCallback(fml::closure callback);
222 
223  // Attempts to register the texture with the given |texture_id|.
224  bool RegisterExternalTexture(int64_t texture_id);
225 
226  // Attempts to unregister the texture with the given |texture_id|.
228 
229  // Notifies the engine about a new frame being available for the
230  // given |texture_id|.
232 
233  // Posts the given callback onto the raster thread.
234  virtual bool PostRasterThreadTask(fml::closure callback) const;
235 
236  // Invoke on the embedder's vsync callback to schedule a frame.
237  void OnVsync(intptr_t baton);
238 
239  // Dispatches a semantics action to the specified semantics node.
240  bool DispatchSemanticsAction(uint64_t id,
241  FlutterSemanticsAction action,
242  fml::MallocMapping data);
243 
244  // Informs the engine that the semantics enabled state has changed.
245  void UpdateSemanticsEnabled(bool enabled);
246 
247  // Returns true if the semantics tree is enabled.
248  bool semantics_enabled() const { return semantics_enabled_; }
249 
250  // Refresh accessibility features and send them to the engine.
252 
253  // Refresh high contrast accessibility mode and notify the engine.
254  void UpdateHighContrastMode();
255 
256  // Returns true if the high contrast feature is enabled.
257  bool high_contrast_enabled() const { return high_contrast_enabled_; }
258 
259  // Register a root isolate create callback.
260  //
261  // The root isolate create callback is invoked at creation of the root Dart
262  // isolate in the app. This may be used to be notified that execution of the
263  // main Dart entrypoint is about to begin, and is used by test infrastructure
264  // to register a native function resolver that can register and resolve
265  // functions marked as native in the Dart code.
266  //
267  // This must be called before calling |Run|.
268  void SetRootIsolateCreateCallback(const fml::closure& callback) {
269  root_isolate_create_callback_ = callback;
270  }
271 
272  // Returns the executable name for this process or "Flutter" if unknown.
273  std::string GetExecutableName() const;
274 
275  // Called when the application quits in response to a quit request.
276  void OnQuit(std::optional<HWND> hwnd,
277  std::optional<WPARAM> wparam,
278  std::optional<LPARAM> lparam,
279  UINT exit_code);
280 
281  // Called when a WM_CLOSE message is received.
282  void RequestApplicationQuit(HWND hwnd,
283  WPARAM wparam,
284  LPARAM lparam,
285  AppExitType exit_type);
286 
287  // Called when a WM_DWMCOMPOSITIONCHANGED message is received.
289 
290  // Called when a Window receives an event that may alter the application
291  // lifecycle state.
292  void OnWindowStateEvent(HWND hwnd, WindowStateEvent event);
293 
294  // Handle a message from a non-Flutter window in the same application.
295  // Returns a result when the message is consumed and should not be processed
296  // further.
297  std::optional<LRESULT> ProcessExternalWindowMessage(HWND hwnd,
298  UINT message,
299  WPARAM wparam,
300  LPARAM lparam);
301 
303  return lifecycle_manager_.get();
304  }
305 
306  std::shared_ptr<WindowsProcTable> windows_proc_table() {
307  return windows_proc_table_;
308  }
309 
310  protected:
311  // Creates the keyboard key handler.
312  //
313  // Exposing this method allows unit tests to override in order to
314  // capture information.
315  virtual std::unique_ptr<KeyboardHandlerBase> CreateKeyboardKeyHandler(
319 
320  // Creates the text input plugin.
321  //
322  // Exposing this method allows unit tests to override in order to
323  // capture information.
324  virtual std::unique_ptr<TextInputPlugin> CreateTextInputPlugin(
326 
327  // Invoked by the engine right before the engine is restarted.
328  //
329  // This should reset necessary states to as if the engine has just been
330  // created. This is typically caused by a hot restart (Shift-R in CLI.)
331  void OnPreEngineRestart();
332 
333  // Invoked by the engine when a listener is set or cleared on a platform
334  // channel.
335  virtual void OnChannelUpdate(std::string name, bool listening);
336 
337  virtual void OnViewFocusChangeRequest(
338  const FlutterViewFocusChangeRequest* request);
339 
340  private:
341  // Allows swapping out embedder_api_ calls in tests.
342  friend class EngineModifier;
343 
344  // Sends system locales to the engine.
345  //
346  // Should be called just after the engine is run, and after any relevant
347  // system changes.
348  void SendSystemLocales();
349 
350  // Sends the current lifecycle state to the framework.
351  void SetLifecycleState(flutter::AppLifecycleState state);
352 
353  // Create the keyboard & text input sub-systems.
354  //
355  // This requires that a view is attached to the engine.
356  // Calling this method again resets the keyboard state.
357  void InitializeKeyboard();
358 
359  // Send the currently enabled accessibility features to the engine.
360  void SendAccessibilityFeatures();
361 
362  // Present content to a view. Returns true if the content was presented.
363  //
364  // This is invoked on the raster thread.
365  bool Present(const FlutterPresentViewInfo* info);
366 
367  // The handle to the embedder.h engine instance.
368  FLUTTER_API_SYMBOL(FlutterEngine) engine_ = nullptr;
369 
370  FlutterEngineProcTable embedder_api_ = {};
371 
372  std::unique_ptr<FlutterProjectBundle> project_;
373 
374  // AOT data, if any.
375  UniqueAotDataPtr aot_data_;
376 
377  // The ID that the next view will have.
378  FlutterViewId next_view_id_ = kImplicitViewId;
379 
380  // The views displaying the content running in this engine, if any.
381  //
382  // This is read and mutated by the platform thread. This is read by the raster
383  // thread to present content to a view.
384  //
385  // Reads to this object on non-platform threads must be protected
386  // by acquiring a shared lock on |views_mutex_|.
387  //
388  // Writes to this object must only happen on the platform thread
389  // and must be protected by acquiring an exclusive lock on |views_mutex_|.
390  std::unordered_map<FlutterViewId, FlutterWindowsView*> views_;
391 
392  // The mutex that protects the |views_| map.
393  //
394  // The raster thread acquires a shared lock to present to a view.
395  //
396  // The platform thread acquires a shared lock to access the view.
397  // The platform thread acquires an exclusive lock before adding
398  // a view to the engine or after removing a view from the engine.
399  mutable std::shared_mutex views_mutex_;
400 
401  // Task runner for tasks posted from the engine.
402  std::unique_ptr<TaskRunner> task_runner_;
403 
404  // The plugin messenger handle given to API clients.
405  fml::RefPtr<flutter::FlutterDesktopMessenger> messenger_;
406 
407  // A wrapper around messenger_ for interacting with client_wrapper-level APIs.
408  std::unique_ptr<BinaryMessengerImpl> messenger_wrapper_;
409 
410  // Message dispatch manager for messages from engine_.
411  std::unique_ptr<IncomingMessageDispatcher> message_dispatcher_;
412 
413  // The plugin registrar handle given to API clients.
414  std::unique_ptr<FlutterDesktopPluginRegistrar> plugin_registrar_;
415 
416  // The texture registrar.
417  std::unique_ptr<FlutterWindowsTextureRegistrar> texture_registrar_;
418 
419  // An object used for intializing ANGLE and creating / destroying render
420  // surfaces. If nullptr, ANGLE failed to initialize and software rendering
421  // should be used instead.
422  std::unique_ptr<egl::Manager> egl_manager_;
423 
424  // The compositor that creates backing stores for the engine to render into
425  // and then presents them onto views.
426  std::unique_ptr<Compositor> compositor_;
427 
428  // The plugin registrar managing internal plugins.
429  std::unique_ptr<PluginRegistrar> internal_plugin_registrar_;
430 
431  // Handler for accessibility events.
432  std::unique_ptr<AccessibilityPlugin> accessibility_plugin_;
433 
434  // Handler for cursor events.
435  std::unique_ptr<CursorHandler> cursor_handler_;
436 
437  // Handler for the flutter/platform channel.
438  std::unique_ptr<PlatformHandler> platform_handler_;
439 
440  // Handlers for keyboard events from Windows.
441  std::unique_ptr<KeyboardHandlerBase> keyboard_key_handler_;
442 
443  // Handlers for text events from Windows.
444  std::unique_ptr<TextInputPlugin> text_input_plugin_;
445 
446  // The settings plugin.
447  std::unique_ptr<SettingsPlugin> settings_plugin_;
448 
449  // Callbacks to be called when the engine (and thus the plugin registrar) is
450  // being destroyed.
453  plugin_registrar_destruction_callbacks_;
454 
455  // The approximate time between vblank events.
456  std::chrono::nanoseconds FrameInterval();
457 
458  // The start time used to align frames.
459  std::chrono::nanoseconds start_time_ = std::chrono::nanoseconds::zero();
460 
461  // An override of the frame interval used by EngineModifier for testing.
462  std::optional<std::chrono::nanoseconds> frame_interval_override_ =
463  std::nullopt;
464 
465  bool semantics_enabled_ = false;
466 
467  bool high_contrast_enabled_ = false;
468 
469  bool enable_impeller_ = false;
470 
471  // The manager for WindowProc delegate registration and callbacks.
472  std::unique_ptr<WindowProcDelegateManager> window_proc_delegate_manager_;
473 
474  // The root isolate creation callback.
475  fml::closure root_isolate_create_callback_;
476 
477  // The on frame drawn callback.
478  fml::closure next_frame_callback_;
479 
480  // Handler for top level window messages.
481  std::unique_ptr<WindowsLifecycleManager> lifecycle_manager_;
482 
483  std::shared_ptr<WindowsProcTable> windows_proc_table_;
484 
485  std::shared_ptr<egl::ProcTable> gl_;
486 
487  std::unique_ptr<PlatformViewPlugin> platform_view_plugin_;
488 
489  FML_DISALLOW_COPY_AND_ASSIGN(FlutterWindowsEngine);
490 };
491 
492 } // namespace flutter
493 
494 #endif // FLUTTER_SHELL_PLATFORM_WINDOWS_FLUTTER_WINDOWS_ENGINE_H_
flutter::kImplicitViewId
constexpr FlutterViewId kImplicitViewId
Definition: flutter_windows_engine.h:55
flutter::FlutterWindowsEngine::RequestApplicationQuit
void RequestApplicationQuit(HWND hwnd, WPARAM wparam, LPARAM lparam, AppExitType exit_type)
Definition: flutter_windows_engine.cc:966
flutter::WindowStateEvent
WindowStateEvent
An event representing a change in window state that may update the.
Definition: windows_lifecycle_manager.h:24
flutter::FlutterWindowsEngine::GetRegistrar
FlutterDesktopPluginRegistrarRef GetRegistrar()
Definition: flutter_windows_engine.cc:688
flutter::FlutterWindowsEngine::PostRasterThreadTask
virtual bool PostRasterThreadTask(fml::closure callback) const
Definition: flutter_windows_engine.cc:883
flutter::FlutterWindowsEngine::high_contrast_enabled
bool high_contrast_enabled() const
Definition: flutter_windows_engine.h:257
flutter::FlutterProjectBundle
Definition: flutter_project_bundle.h:32
flutter::FlutterWindowsEngine::OnChannelUpdate
virtual void OnChannelUpdate(std::string name, bool listening)
Definition: flutter_windows_engine.cc:1005
flutter::FlutterWindowsEngine::CreateTextInputPlugin
virtual std::unique_ptr< TextInputPlugin > CreateTextInputPlugin(BinaryMessenger *messenger)
Definition: flutter_windows_engine.cc:862
flutter::FlutterWindowsEngine::UnregisterExternalTexture
bool UnregisterExternalTexture(int64_t texture_id)
Definition: flutter_windows_engine.cc:872
flutter_windows_texture_registrar.h
flutter::AppExitType
AppExitType
Definition: platform_handler.h:27
flutter::FlutterWindowsEngine::view
FlutterWindowsView * view(FlutterViewId view_id) const
Definition: flutter_windows_engine.cc:676
flutter::FlutterWindowsEngine::SendPointerEvent
void SendPointerEvent(const FlutterPointerEvent &event)
Definition: flutter_windows_engine.cc:705
flutter::UniqueAotDataPtr
std::unique_ptr< _FlutterEngineAOTData, FlutterEngineCollectAOTDataFnPtr > UniqueAotDataPtr
Definition: flutter_project_bundle.h:18
flutter::FlutterWindowsView
Definition: flutter_windows_view.h:34
settings_plugin.h
window_proc_delegate_manager.h
flutter::IncomingMessageDispatcher
Definition: incoming_message_dispatcher.h:20
windows_lifecycle_manager.h
flutter::FlutterEngine
Definition: flutter_engine.h:28
text_input_plugin.h
FlutterDesktopBinaryReply
void(* FlutterDesktopBinaryReply)(const uint8_t *data, size_t data_size, void *user_data)
Definition: flutter_messenger.h:26
flutter::FlutterWindowsEngine::OnVsync
void OnVsync(intptr_t baton)
Definition: flutter_windows_engine.cc:648
flutter::FlutterWindowsEngine::task_runner
TaskRunner * task_runner()
Definition: flutter_windows_engine.h:161
flutter::FlutterWindowsEngine::SetNextFrameCallback
void SetNextFrameCallback(fml::closure callback)
Definition: flutter_windows_engine.cc:789
user_data
void * user_data
Definition: flutter_windows_view_unittests.cc:53
flutter::FlutterWindowsEngine::EngineModifier
friend class EngineModifier
Definition: flutter_windows_engine.h:342
flutter::FlutterWindowsEngine
Definition: flutter_windows_engine.h:90
flutter::FlutterWindowsEngine::MarkExternalTextureFrameAvailable
bool MarkExternalTextureFrameAvailable(int64_t texture_id)
Definition: flutter_windows_engine.cc:877
flutter::KeyboardKeyEmbedderHandler::GetKeyStateHandler
std::function< SHORT(int)> GetKeyStateHandler
Definition: keyboard_key_embedder_handler.h:41
flutter::FlutterWindowsEngine::window_proc_delegate_manager
WindowProcDelegateManager * window_proc_delegate_manager()
Definition: flutter_windows_engine.h:173
flutter::FlutterWindowsEngine::RegisterExternalTexture
bool RegisterExternalTexture(int64_t texture_id)
Definition: flutter_windows_engine.cc:867
flutter::FlutterWindowsEngine::running
virtual bool running() const
Definition: flutter_windows_engine.h:123
flutter::FlutterWindowsEngine::lifecycle_manager
WindowsLifecycleManager * lifecycle_manager()
Definition: flutter_windows_engine.h:302
flutter::FlutterWindowsEngine::RemoveView
virtual void RemoveView(FlutterViewId view_id)
Definition: flutter_windows_engine.cc:586
flutter::FlutterWindowsEngine::messenger_wrapper
BinaryMessenger * messenger_wrapper()
Definition: flutter_windows_engine.h:163
accessibility_plugin.h
flutter::FlutterWindowsEngine::FlutterWindowsEngine
FlutterWindowsEngine(const FlutterProjectBundle &project, std::shared_ptr< WindowsProcTable > windows_proc_table=nullptr)
Definition: flutter_windows_engine.cc:149
flutter::FlutterWindowsEngine::OnQuit
void OnQuit(std::optional< HWND > hwnd, std::optional< WPARAM > wparam, std::optional< LPARAM > lparam, UINT exit_code)
Definition: flutter_windows_engine.cc:973
FlutterDesktopMessageResponseHandle
struct _FlutterPlatformMessageResponseHandle FlutterDesktopMessageResponseHandle
Definition: flutter_messenger.h:22
flutter::FlutterWindowsEngine::SetRootIsolateCreateCallback
void SetRootIsolateCreateCallback(const fml::closure &callback)
Definition: flutter_windows_engine.h:268
flutter::FlutterWindowsEngine::windows_proc_table
std::shared_ptr< WindowsProcTable > windows_proc_table()
Definition: flutter_windows_engine.h:306
flutter::FlutterWindowsEngine::UpdateAccessibilityFeatures
void UpdateAccessibilityFeatures()
Definition: flutter_windows_engine.cc:943
flutter::FlutterWindowsEngine::SetSwitches
void SetSwitches(const std::vector< std::string > &switches)
Definition: flutter_windows_engine.cc:240
keyboard_key_embedder_handler.h
flutter::FlutterWindowsEngine::~FlutterWindowsEngine
virtual ~FlutterWindowsEngine()
Definition: flutter_windows_engine.cc:231
windows_proc_table.h
flutter::FlutterWindowsEngine::SendPlatformMessage
bool SendPlatformMessage(const char *channel, const uint8_t *message, const size_t message_size, const FlutterDesktopBinaryReply reply, void *user_data)
Definition: flutter_windows_engine.cc:726
flutter::FlutterWindowsEngine::OnPreEngineRestart
void OnPreEngineRestart()
Definition: flutter_windows_engine.cc:924
flutter::KeyboardKeyEmbedderHandler::MapVirtualKeyToScanCode
std::function< SHORT(UINT, bool)> MapVirtualKeyToScanCode
Definition: keyboard_key_embedder_handler.h:43
flutter::FlutterWindowsEngine::Stop
virtual bool Stop()
Definition: flutter_windows_engine.cc:502
flutter::FlutterWindowsEngine::messenger
FlutterDesktopMessengerRef messenger()
Definition: flutter_windows_engine.h:155
flutter::FlutterWindowsEngine::ProcessExternalWindowMessage
std::optional< LRESULT > ProcessExternalWindowMessage(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam)
Definition: flutter_windows_engine.cc:993
flutter::BinaryMessenger
Definition: binary_messenger.h:28
flutter::FlutterWindowsEngine::OnDwmCompositionChanged
void OnDwmCompositionChanged()
Definition: flutter_windows_engine.cc:980
flutter::FlutterWindowsEngine::OnViewFocusChangeRequest
virtual void OnViewFocusChangeRequest(const FlutterViewFocusChangeRequest *request)
Definition: flutter_windows_engine.cc:1013
flutter::FlutterWindowsEngine::SendWindowMetricsEvent
void SendWindowMetricsEvent(const FlutterWindowMetricsEvent &event)
Definition: flutter_windows_engine.cc:698
app_lifecycle_state.h
flutter::FlutterWindowsEngine::DispatchSemanticsAction
bool DispatchSemanticsAction(uint64_t id, FlutterSemanticsAction action, fml::MallocMapping data)
Definition: flutter_windows_engine.cc:903
flutter::FlutterWindowsEngine::CreateKeyboardKeyHandler
virtual std::unique_ptr< KeyboardHandlerBase > CreateKeyboardKeyHandler(BinaryMessenger *messenger, KeyboardKeyEmbedderHandler::GetKeyStateHandler get_key_state, KeyboardKeyEmbedderHandler::MapVirtualKeyToScanCode map_vk_to_scan)
Definition: flutter_windows_engine.cc:844
flutter::FlutterWindowsTextureRegistrar
Definition: flutter_windows_texture_registrar.h:24
flutter::FlutterWindowsEngine::CreateView
std::unique_ptr< FlutterWindowsView > CreateView(std::unique_ptr< WindowBindingHandler > window)
Definition: flutter_windows_engine.cc:515
flutter::FlutterWindowsEngine::texture_registrar
FlutterWindowsTextureRegistrar * texture_registrar()
Definition: flutter_windows_engine.h:165
flutter::FlutterWindowsEngine::SendViewFocusEvent
void SendViewFocusEvent(const FlutterViewFocusEvent &event)
Definition: flutter_windows_engine.cc:719
accessibility_bridge_windows.h
flutter::FlutterWindowsEngine::AddPluginRegistrarDestructionCallback
void AddPluginRegistrarDestructionCallback(FlutterDesktopOnPluginRegistrarDestroyed callback, FlutterDesktopPluginRegistrarRef registrar)
Definition: flutter_windows_engine.cc:692
proc_table.h
flutter::FlutterWindowsEngine::semantics_enabled
bool semantics_enabled() const
Definition: flutter_windows_engine.h:248
flutter_project_bundle.h
flutter::FlutterViewId
int64_t FlutterViewId
Definition: flutter_view.h:13
binary_messenger_impl.h
window_state.h
flutter::WindowProcDelegateManager
Definition: window_proc_delegate_manager.h:20
flutter
Definition: accessibility_bridge_windows.cc:11
flutter::egl::Manager
Definition: manager.h:39
flutter_desktop_messenger.h
flutter::TaskRunner
Definition: task_runner.h:26
flutter::FlutterWindowsEngine::GetEngineForId
static FlutterWindowsEngine * GetEngineForId(int64_t engine_id)
Definition: flutter_windows_engine.cc:236
flutter::FlutterWindowsEngine::SendPlatformMessageResponse
void SendPlatformMessageResponse(const FlutterDesktopMessageResponseHandle *handle, const uint8_t *data, size_t data_length)
Definition: flutter_windows_engine.cc:760
flutter::FlutterWindowsEngine::keyboard_key_handler
KeyboardHandlerBase * keyboard_key_handler()
Definition: flutter_windows_engine.h:191
FlutterDesktopOnPluginRegistrarDestroyed
void(* FlutterDesktopOnPluginRegistrarDestroyed)(FlutterDesktopPluginRegistrarRef)
Definition: flutter_plugin_registrar.h:23
flutter::FlutterWindowsEngine::SendKeyEvent
void SendKeyEvent(const FlutterKeyEvent &event, FlutterKeyEventCallback callback, void *user_data)
Definition: flutter_windows_engine.cc:711
flutter::FlutterWindowsEngine::message_dispatcher
IncomingMessageDispatcher * message_dispatcher()
Definition: flutter_windows_engine.h:157
keyboard_handler_base.h
basic_message_channel.h
flutter::FlutterWindowsEngine::text_input_plugin
TextInputPlugin * text_input_plugin()
Definition: flutter_windows_engine.h:194
platform_handler.h
manager.h
flutter::TextInputPlugin
Definition: text_input_plugin.h:29
flutter::FlutterWindowsEngine::ScheduleFrame
void ScheduleFrame()
Definition: flutter_windows_engine.cc:785
flutter::FlutterWindowsEngine::UpdateHighContrastMode
void UpdateHighContrastMode()
Definition: flutter_windows_engine.cc:947
FlutterDesktopMessengerRef
struct FlutterDesktopMessenger * FlutterDesktopMessengerRef
Definition: flutter_messenger.h:19
platform_view_plugin.h
flutter::KeyboardHandlerBase
Definition: keyboard_handler_base.h:18
flutter_windows.h
message
Win32Message message
Definition: keyboard_unittests.cc:137
action
int action
Definition: keyboard_key_handler_unittests.cc:116
flutter::AppLifecycleState
AppLifecycleState
Definition: app_lifecycle_state.h:32
compositor.h
flutter::FlutterWindowsEngine::UpdateSemanticsEnabled
void UpdateSemanticsEnabled(bool enabled)
Definition: flutter_windows_engine.cc:912
task_runner.h
cursor_handler.h
incoming_message_dispatcher.h
flutter::WindowsLifecycleManager
Definition: windows_lifecycle_manager.h:37
flutter::FlutterWindowsEngine::egl_manager
egl::Manager * egl_manager() const
Definition: flutter_windows_engine.h:171
accessibility_bridge.h
FlutterDesktopPluginRegistrar
Definition: window_state.h:23
flutter::FlutterWindowsEngine::OnWindowStateEvent
void OnWindowStateEvent(HWND hwnd, WindowStateEvent event)
Definition: flutter_windows_engine.cc:988
flutter::FlutterWindowsEngine::HandlePlatformMessage
void HandlePlatformMessage(const FlutterPlatformMessage *)
Definition: flutter_windows_engine.cc:767
flutter::FlutterWindowsEngine::Run
bool Run()
Definition: flutter_windows_engine.cc:245
flutter::WindowsPlatformThreadPrioritySetter
static void WindowsPlatformThreadPrioritySetter(FlutterThreadPriority priority)
Definition: flutter_windows_engine.h:60
texture_id
uint32_t texture_id
Definition: compositor_opengl.cc:20
flutter::FlutterWindowsEngine::ReloadSystemFonts
void ReloadSystemFonts()
Definition: flutter_windows_engine.cc:781
flutter::FlutterWindowsEngine::GetExecutableName
std::string GetExecutableName() const
Definition: flutter_windows_engine.cc:929
callback
FlutterDesktopBinaryReply callback
Definition: flutter_windows_view_unittests.cc:52