Flutter Linux Embedder
fl_engine_private.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_LINUX_FL_ENGINE_PRIVATE_H_
6 #define FLUTTER_SHELL_PLATFORM_LINUX_FL_ENGINE_PRIVATE_H_
7 
8 #include <glib-object.h>
9 
10 #include "flutter/shell/platform/embedder/embedder.h"
20 
21 G_BEGIN_DECLS
22 
23 /**
24  * FlEngineError:
25  * Errors for #FlEngine objects to set on failures.
26  */
27 
28 typedef enum {
31 
32 GQuark fl_engine_error_quark(void) G_GNUC_CONST;
33 
34 /**
35  * FlEnginePlatformMessageHandler:
36  * @engine: an #FlEngine.
37  * @channel: channel message received on.
38  * @message: message content received from Dart.
39  * @response_handle: a handle to respond to the message with.
40  * @user_data: (closure): data provided when registering this handler.
41  *
42  * Function called when platform messages are received.
43  *
44  * Returns: %TRUE if message has been accepted.
45  */
46 typedef gboolean (*FlEnginePlatformMessageHandler)(
47  FlEngine* engine,
48  const gchar* channel,
49  GBytes* message,
50  const FlutterPlatformMessageResponseHandle* response_handle,
51  gpointer user_data);
52 
53 /**
54  * fl_engine_new_with_binary_messenger:
55  * @binary_messenger: an #FlBinaryMessenger.
56  *
57  * Creates a new engine with a custom binary messenger. Used for testing.
58  *
59  * Returns: a new #FlEngine.
60  */
62  FlBinaryMessenger* binary_messenger);
63 
64 /**
65  * fl_engine_new_with_renderer:
66  * @project: an #FlDartProject.
67  * @renderer: an #FlRenderer.
68  *
69  * Creates new Flutter engine.
70  *
71  * Returns: a new #FlEngine.
72  */
73 FlEngine* fl_engine_new_with_renderer(FlDartProject* project,
74  FlRenderer* renderer);
75 
76 /**
77  * fl_engine_get_renderer:
78  * @engine: an #FlEngine.
79  *
80  * Gets the renderer used by this engine.
81  *
82  * Returns: an #FlRenderer.
83  */
84 FlRenderer* fl_engine_get_renderer(FlEngine* engine);
85 
86 /**
87  * fl_engine_get_display_monitor:
88  * @engine: an #FlEngine.
89  *
90  * Gets the display monitor used by this engine.
91  *
92  * Returns: an #FlDisplayMonitor.
93  */
94 FlDisplayMonitor* fl_engine_get_display_monitor(FlEngine* engine);
95 
96 /**
97  * fl_engine_start:
98  * @engine: an #FlEngine.
99  * @error: (allow-none): #GError location to store the error occurring, or %NULL
100  * to ignore.
101  *
102  * Starts the Flutter engine.
103  *
104  * Returns: %TRUE on success.
105  */
106 gboolean fl_engine_start(FlEngine* engine, GError** error);
107 
108 /**
109  * fl_engine_get_embedder_api:
110  * @engine: an #FlEngine.
111  *
112  * Gets the embedder API proc table, allowing modificiations for unit testing.
113  *
114  * Returns: a mutable pointer to the embedder API proc table.
115  */
116 FlutterEngineProcTable* fl_engine_get_embedder_api(FlEngine* engine);
117 
118 /**
119  * fl_engine_notify_display_update:
120  * @engine: an #FlEngine.
121  * @displays: displays present on the system.
122  * @displays_length: length of @displays.
123  *
124  * Notify the current displays that are in the system.
125  */
126 void fl_engine_notify_display_update(FlEngine* engine,
127  const FlutterEngineDisplay* displays,
128  size_t displays_length);
129 
130 /**
131  * fl_engine_add_view:
132  * @engine: an #FlEngine.
133  * @width: width of view in pixels.
134  * @height: height of view in pixels.
135  * @pixel_ratio: scale factor for view.
136  * @cancellable: (allow-none): a #GCancellable or %NULL.
137  * @callback: (scope async): a #GAsyncReadyCallback to call when the view is
138  * added.
139  * @user_data: (closure): user data to pass to @callback.
140  *
141  * Asynchronously add a new view. The returned view ID should not be used until
142  * this function completes.
143  *
144  * Returns: the ID for the view.
145  */
146 FlutterViewId fl_engine_add_view(FlEngine* engine,
147  size_t width,
148  size_t height,
149  double pixel_ratio,
150  GCancellable* cancellable,
151  GAsyncReadyCallback callback,
152  gpointer user_data);
153 
154 /**
155  * fl_engine_add_view_finish:
156  * @engine: an #FlEngine.
157  * @result: a #GAsyncResult.
158  * @error: (allow-none): #GError location to store the error occurring, or %NULL
159  * to ignore.
160  *
161  * Completes request started with fl_engine_add_view().
162  *
163  * Returns: %TRUE on success.
164  */
165 gboolean fl_engine_add_view_finish(FlEngine* engine,
166  GAsyncResult* result,
167  GError** error);
168 
169 /**
170  * fl_engine_remove_view:
171  * @engine: an #FlEngine.
172  * @view_id: ID to remove.
173  * @cancellable: (allow-none): a #GCancellable or %NULL.
174  * @callback: (scope async): a #GAsyncReadyCallback to call when the view is
175  * added.
176  * @user_data: (closure): user data to pass to @callback.
177  *
178  * Removes a view previously added with fl_engine_add_view().
179  */
180 void fl_engine_remove_view(FlEngine* engine,
181  FlutterViewId view_id,
182  GCancellable* cancellable,
183  GAsyncReadyCallback callback,
184  gpointer user_data);
185 
186 /**
187  * fl_engine_remove_view_finish:
188  * @engine: an #FlEngine.
189  * @result: a #GAsyncResult.
190  * @error: (allow-none): #GError location to store the error occurring, or %NULL
191  * to ignore.
192  *
193  * Completes request started with fl_engine_remove_view().
194  *
195  * Returns: %TRUE on succcess.
196  */
197 gboolean fl_engine_remove_view_finish(FlEngine* engine,
198  GAsyncResult* result,
199  GError** error);
200 
201 /**
202  * fl_engine_set_platform_message_handler:
203  * @engine: an #FlEngine.
204  * @handler: function to call when a platform message is received.
205  * @user_data: (closure): user data to pass to @handler.
206  * @destroy_notify: (allow-none): a function which gets called to free
207  * @user_data, or %NULL.
208  *
209  * Registers the function called when a platform message is received. Call
210  * fl_engine_send_platform_message_response() with the response to this message.
211  * Ownership of #FlutterPlatformMessageResponseHandle is
212  * transferred to the caller, and the message must be responded to avoid
213  * memory leaks.
214  */
216  FlEngine* engine,
218  gpointer user_data,
219  GDestroyNotify destroy_notify);
220 
221 /**
222  * fl_engine_send_window_metrics_event:
223  * @engine: an #FlEngine.
224  * @display_id: the display this view is rendering on.
225  * @view_id: the view that the event occured on.
226  * @width: width of the window in pixels.
227  * @height: height of the window in pixels.
228  * @pixel_ratio: scale factor for window.
229  *
230  * Sends a window metrics event to the engine.
231  */
232 void fl_engine_send_window_metrics_event(FlEngine* engine,
233  FlutterEngineDisplayId display_id,
234  FlutterViewId view_id,
235  size_t width,
236  size_t height,
237  double pixel_ratio);
238 
239 /**
240  * fl_engine_send_mouse_pointer_event:
241  * @engine: an #FlEngine.
242  * @view_id: the view that the event occured on.
243  * @phase: mouse phase.
244  * @timestamp: time when event occurred in microseconds.
245  * @x: x location of mouse cursor.
246  * @y: y location of mouse cursor.
247  * @device_kind: kind of pointing device.
248  * @scroll_delta_x: x offset of scroll.
249  * @scroll_delta_y: y offset of scroll.
250  * @buttons: buttons that are pressed.
251  *
252  * Sends a mouse pointer event to the engine.
253  */
254 void fl_engine_send_mouse_pointer_event(FlEngine* engine,
255  FlutterViewId view_id,
256  FlutterPointerPhase phase,
257  size_t timestamp,
258  double x,
259  double y,
260  FlutterPointerDeviceKind device_kind,
261  double scroll_delta_x,
262  double scroll_delta_y,
263  int64_t buttons);
264 
265 /**
266  * fl_engine_send_touch_up_event:
267  * @engine: an #FlEngine.
268  * @view_id: the view that the event occured on.
269  * @timestamp: time when event occurred in microseconds.
270  * @x: x location of mouse cursor.
271  * @y: y location of mouse cursor.
272  * @device: device id.
273  *
274  * Sends a touch up event to the engine.
275  */
276 void fl_engine_send_touch_up_event(FlEngine* engine,
277  FlutterViewId view_id,
278  size_t timestamp,
279  double x,
280  double y,
281  int32_t device);
282 
283 /**
284  * fl_engine_send_touch_down_event:
285  * @engine: an #FlEngine.
286  * @view_id: the view that the event occured on.
287  * @timestamp: time when event occurred in microseconds.
288  * @x: x location of mouse cursor.
289  * @y: y location of mouse cursor.
290  * @device: device id.
291  *
292  * Sends a touch down event to the engine.
293  */
294 void fl_engine_send_touch_down_event(FlEngine* engine,
295  FlutterViewId view_id,
296  size_t timestamp,
297  double x,
298  double y,
299  int32_t device);
300 /**
301  * fl_engine_send_touch_move_event:
302  * @engine: an #FlEngine.
303  * @view_id: the view that the event occured on.
304  * @timestamp: time when event occurred in microseconds.
305  * @x: x location of mouse cursor.
306  * @y: y location of mouse cursor.
307  * @device: device id.
308  *
309  * Sends a touch move event to the engine.
310  */
311 void fl_engine_send_touch_move_event(FlEngine* engine,
312  FlutterViewId view_id,
313  size_t timestamp,
314  double x,
315  double y,
316  int32_t device);
317 
318 /**
319  * fl_engine_send_touch_add_event:
320  * @engine: an #FlEngine.
321  * @view_id: the view that the event occured on.
322  * @timestamp: time when event occurred in microseconds.
323  * @x: x location of mouse cursor.
324  * @y: y location of mouse cursor.
325  * @device: device id.
326  *
327  * Sends a touch add event to the engine.
328  */
329 void fl_engine_send_touch_add_event(FlEngine* engine,
330  FlutterViewId view_id,
331  size_t timestamp,
332  double x,
333  double y,
334  int32_t device);
335 
336 /**
337  * fl_engine_send_touch_remove_event:
338  * @engine: an #FlEngine.
339  * @view_id: the view that the event occured on.
340  * @timestamp: time when event occurred in microseconds.
341  * @x: x location of mouse cursor.
342  * @y: y location of mouse cursor.
343  * @device: device id.
344  *
345  * Sends a touch remove event to the engine.
346  */
347 void fl_engine_send_touch_remove_event(FlEngine* engine,
348  FlutterViewId view_id,
349  size_t timestamp,
350  double x,
351  double y,
352  int32_t device);
353 
354 /**
355  * fl_engine_send_pointer_pan_zoom_event:
356  * @engine: an #FlEngine.
357  * @view_id: the view that the event occured on.
358  * @timestamp: time when event occurred in microseconds.
359  * @x: x location of mouse cursor.
360  * @y: y location of mouse cursor.
361  * @phase: mouse phase.
362  * @pan_x: x offset of the pan/zoom in pixels.
363  * @pan_y: y offset of the pan/zoom in pixels.
364  * @scale: scale of the pan/zoom.
365  * @rotation: rotation of the pan/zoom in radians.
366  *
367  * Sends a pan/zoom pointer event to the engine.
368  */
369 void fl_engine_send_pointer_pan_zoom_event(FlEngine* engine,
370  FlutterViewId view_id,
371  size_t timestamp,
372  double x,
373  double y,
374  FlutterPointerPhase phase,
375  double pan_x,
376  double pan_y,
377  double scale,
378  double rotation);
379 
380 /**
381  * fl_engine_send_key_event:
382  * @engine: an #FlEngine.
383  * @event: key event to send.
384  * @cancellable: (allow-none): a #GCancellable or %NULL.
385  * @callback: (scope async): a #GAsyncReadyCallback to call when the request is
386  * satisfied.
387  * @user_data: (closure): user data to pass to @callback.
388  *
389  * Send a key event to the engine.
390  */
391 void fl_engine_send_key_event(FlEngine* engine,
392  const FlutterKeyEvent* event,
393  GCancellable* cancellable,
394  GAsyncReadyCallback callback,
395  gpointer user_data);
396 
397 /**
398  * fl_engine_send_key_event_finish:
399  * @engine: an #FlEngine.
400  * @result: a #GAsyncResult.
401  * @handled: location to write if this event was handled by the engine.
402  * @error: (allow-none): #GError location to store the error occurring, or %NULL
403  * to ignore.
404  *
405  * Completes request started with fl_engine_send_key_event().
406  *
407  * Returns: %TRUE on success.
408  */
409 gboolean fl_engine_send_key_event_finish(FlEngine* engine,
410  GAsyncResult* result,
411  gboolean* handled,
412  GError** error);
413 
414 /**
415  * fl_engine_dispatch_semantics_action:
416  * @engine: an #FlEngine.
417  * @id: the semantics action identifier.
418  * @action: the action being dispatched.
419  * @data: (allow-none): data associated with the action.
420  */
421 void fl_engine_dispatch_semantics_action(FlEngine* engine,
422  uint64_t id,
423  FlutterSemanticsAction action,
424  GBytes* data);
425 
426 /**
427  * fl_engine_send_platform_message_response:
428  * @engine: an #FlEngine.
429  * @handle: handle that was provided in #FlEnginePlatformMessageHandler.
430  * @response: (allow-none): response to send or %NULL for an empty response.
431  * @error: (allow-none): #GError location to store the error occurring, or %NULL
432  * to ignore.
433  *
434  * Responds to a platform message.
435  *
436  * Returns: %TRUE on success.
437  */
439  FlEngine* engine,
440  const FlutterPlatformMessageResponseHandle* handle,
441  GBytes* response,
442  GError** error);
443 
444 /**
445  * fl_engine_send_platform_message:
446  * @engine: an #FlEngine.
447  * @channel: channel to send to.
448  * @message: (allow-none): message buffer to send or %NULL for an empty message
449  * @cancellable: (allow-none): a #GCancellable or %NULL.
450  * @callback: (scope async): a #GAsyncReadyCallback to call when the request is
451  * satisfied.
452  * @user_data: (closure): user data to pass to @callback.
453  *
454  * Asynchronously sends a platform message.
455  */
456 void fl_engine_send_platform_message(FlEngine* engine,
457  const gchar* channel,
458  GBytes* message,
459  GCancellable* cancellable,
460  GAsyncReadyCallback callback,
461  gpointer user_data);
462 
463 /**
464  * fl_engine_send_platform_message_finish:
465  * @engine: an #FlEngine.
466  * @result: a #GAsyncResult.
467  * @error: (allow-none): #GError location to store the error occurring, or %NULL
468  * to ignore.
469  *
470  * Completes request started with fl_engine_send_platform_message().
471  *
472  * Returns: message response on success or %NULL on error.
473  */
474 GBytes* fl_engine_send_platform_message_finish(FlEngine* engine,
475  GAsyncResult* result,
476  GError** error);
477 
478 /**
479  * fl_engine_get_task_runner:
480  * @engine: an #FlEngine.
481  * @result: a #FlTaskRunner.
482  *
483  * Returns: task runner responsible for scheduling Flutter tasks.
484  */
485 FlTaskRunner* fl_engine_get_task_runner(FlEngine* engine);
486 
487 /**
488  * fl_engine_execute_task:
489  * @engine: an #FlEngine.
490  * @task: a #FlutterTask to execute.
491  *
492  * Executes given Flutter task.
493  */
494 void fl_engine_execute_task(FlEngine* engine, FlutterTask* task);
495 
496 /**
497  * fl_engine_mark_texture_frame_available:
498  * @engine: an #FlEngine.
499  * @texture_id: the identifier of the texture whose frame has been updated.
500  *
501  * Tells the Flutter engine that a new texture frame is available for the given
502  * texture.
503  *
504  * Returns: %TRUE on success.
505  */
506 gboolean fl_engine_mark_texture_frame_available(FlEngine* engine,
507  int64_t texture_id);
508 
509 /**
510  * fl_engine_register_external_texture:
511  * @engine: an #FlEngine.
512  * @texture_id: the identifier of the texture that is available.
513  *
514  * Tells the Flutter engine that a new external texture is available.
515  *
516  * Returns: %TRUE on success.
517  */
518 gboolean fl_engine_register_external_texture(FlEngine* engine,
519  int64_t texture_id);
520 
521 /**
522  * fl_engine_unregister_external_texture:
523  * @engine: an #FlEngine.
524  * @texture_id: the identifier of the texture that is not available anymore.
525  *
526  * Tells the Flutter engine that an existing external texture is not available
527  * anymore.
528  *
529  * Returns: %TRUE on success.
530  */
531 gboolean fl_engine_unregister_external_texture(FlEngine* engine,
532  int64_t texture_id);
533 
534 /**
535  * fl_engine_update_accessibility_features:
536  * @engine: an #FlEngine.
537  * @flags: the features to enable in the accessibility tree.
538  *
539  * Tells the Flutter engine to update the flags on the accessibility tree.
540  */
541 void fl_engine_update_accessibility_features(FlEngine* engine, int32_t flags);
542 
543 /**
544  * fl_engine_request_app_exit:
545  * @engine: an #FlEngine.
546  *
547  * Request the application exits.
548  */
549 void fl_engine_request_app_exit(FlEngine* engine);
550 
551 /**
552  * fl_engine_get_windowing_handler:
553  * @engine: an #FlEngine.
554  *
555  * Gets the windowing handler used by this engine.
556  *
557  * Returns: an #FlWindowingHandler.
558  */
559 FlWindowingHandler* fl_engine_get_windowing_handler(FlEngine* engine);
560 
561 /**
562  * fl_engine_get_keyboard_manager:
563  * @engine: an #FlEngine.
564  *
565  * Gets the keyboard manager used by this engine.
566  *
567  * Returns: an #FlKeyboardManager.
568  */
569 FlKeyboardManager* fl_engine_get_keyboard_manager(FlEngine* engine);
570 
571 /**
572  * fl_engine_get_text_input_handler:
573  * @engine: an #FlEngine.
574  *
575  * Gets the text input handler used by this engine.
576  *
577  * Returns: an #FlTextInputHandler.
578  */
579 FlTextInputHandler* fl_engine_get_text_input_handler(FlEngine* engine);
580 
581 /**
582  * fl_engine_get_mouse_cursor_handler:
583  * @engine: an #FlEngine.
584  *
585  * Gets the mouse cursor handler used by this engine.
586  *
587  * Returns: an #FlMouseCursorHandler.
588  */
589 FlMouseCursorHandler* fl_engine_get_mouse_cursor_handler(FlEngine* engine);
590 
591 /**
592  * fl_engine_for_id:
593  * @handle: an engine identifier obtained through
594  * PlatformDispatcher.instance.engineId.
595  *
596  * Returns Flutter engine associated with the identifier. The identifier
597  * must be valid and for a running engine otherwise the behavior is
598  * undefined.
599  * Must be called from the main thread.
600  *
601  * Returns: a #FlEngine or NULL.
602  */
603 FlEngine* fl_engine_for_id(int64_t handle);
604 
605 G_END_DECLS
606 
607 #endif // FLUTTER_SHELL_PLATFORM_LINUX_FL_ENGINE_PRIVATE_H_
fl_engine_send_platform_message_finish
GBytes * fl_engine_send_platform_message_finish(FlEngine *engine, GAsyncResult *result, GError **error)
Definition: fl_engine.cc:930
FlEnginePlatformMessageHandler
gboolean(* FlEnginePlatformMessageHandler)(FlEngine *engine, const gchar *channel, GBytes *message, const FlutterPlatformMessageResponseHandle *response_handle, gpointer user_data)
Definition: fl_engine_private.h:46
fl_engine_send_platform_message
void fl_engine_send_platform_message(FlEngine *engine, const gchar *channel, GBytes *message, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
Definition: fl_engine.cc:871
FL_ENGINE_ERROR_FAILED
@ FL_ENGINE_ERROR_FAILED
Definition: fl_engine_private.h:29
fl_engine_mark_texture_frame_available
gboolean fl_engine_mark_texture_frame_available(FlEngine *engine, int64_t texture_id)
Definition: fl_engine.cc:1225
fl_engine_get_windowing_handler
FlWindowingHandler * fl_engine_get_windowing_handler(FlEngine *engine)
Definition: fl_engine.cc:1284
fl_engine_get_keyboard_manager
FlKeyboardManager * fl_engine_get_keyboard_manager(FlEngine *engine)
Definition: fl_engine.cc:1289
fl_engine_unregister_external_texture
gboolean fl_engine_unregister_external_texture(FlEngine *engine, int64_t texture_id)
Definition: fl_engine.cc:1239
fl_engine_add_view
FlutterViewId fl_engine_add_view(FlEngine *engine, size_t width, size_t height, double pixel_ratio, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
Definition: fl_engine.cc:738
fl_keyboard_manager.h
fl_task_runner.h
fl_engine_start
gboolean fl_engine_start(FlEngine *engine, GError **error)
Definition: fl_engine.cc:607
fl_engine_notify_display_update
void fl_engine_notify_display_update(FlEngine *engine, const FlutterEngineDisplay *displays, size_t displays_length)
Definition: fl_engine.cc:725
fl_engine_for_id
FlEngine * fl_engine_for_id(int64_t handle)
Definition: fl_engine.cc:567
fl_engine_execute_task
void fl_engine_execute_task(FlEngine *engine, FlutterTask *task)
Definition: fl_engine.cc:1257
fl_engine_send_touch_move_event
void fl_engine_send_touch_move_event(FlEngine *engine, FlutterViewId view_id, size_t timestamp, double x, double y, int32_t device)
Definition: fl_engine.cc:1047
flags
FlutterSemanticsFlag flags
Definition: fl_accessible_node.cc:106
fl_text_input_handler.h
fl_engine_add_view_finish
gboolean fl_engine_add_view_finish(FlEngine *engine, GAsyncResult *result, GError **error)
Definition: fl_engine.cc:781
fl_engine_send_window_metrics_event
void fl_engine_send_window_metrics_event(FlEngine *engine, FlutterEngineDisplayId display_id, FlutterViewId view_id, size_t width, size_t height, double pixel_ratio)
Definition: fl_engine.cc:939
fl_engine_remove_view_finish
gboolean fl_engine_remove_view_finish(FlEngine *engine, GAsyncResult *result, GError **error)
Definition: fl_engine.cc:813
fl_engine_send_platform_message_response
gboolean fl_engine_send_platform_message_response(FlEngine *engine, const FlutterPlatformMessageResponseHandle *handle, GBytes *response, GError **error)
Definition: fl_engine.cc:839
fl_engine_register_external_texture
gboolean fl_engine_register_external_texture(FlEngine *engine, int64_t texture_id)
Definition: fl_engine.cc:1232
user_data
G_BEGIN_DECLS G_MODULE_EXPORT FlValue gpointer user_data
Definition: fl_event_channel.h:90
fl_engine_request_app_exit
void fl_engine_request_app_exit(FlEngine *engine)
Definition: fl_engine.cc:1279
fl_engine_new_with_renderer
FlEngine * fl_engine_new_with_renderer(FlDartProject *project, FlRenderer *renderer)
Definition: fl_engine.cc:573
fl_engine_get_display_monitor
FlDisplayMonitor * fl_engine_get_display_monitor(FlEngine *engine)
Definition: fl_engine.cc:602
fl_engine_send_key_event
void fl_engine_send_key_event(FlEngine *engine, const FlutterKeyEvent *event, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
Definition: fl_engine.cc:1164
fl_engine_new_with_binary_messenger
FlEngine * fl_engine_new_with_binary_messenger(FlBinaryMessenger *binary_messenger)
Definition: fl_engine.cc:585
fl_engine_send_mouse_pointer_event
void fl_engine_send_mouse_pointer_event(FlEngine *engine, FlutterViewId view_id, FlutterPointerPhase phase, size_t timestamp, double x, double y, FlutterPointerDeviceKind device_kind, double scroll_delta_x, double scroll_delta_y, int64_t buttons)
Definition: fl_engine.cc:961
fl_dart_project.h
fl_engine_send_touch_remove_event
void fl_engine_send_touch_remove_event(FlEngine *engine, FlutterViewId view_id, size_t timestamp, double x, double y, int32_t device)
Definition: fl_engine.cc:1099
fl_engine_update_accessibility_features
void fl_engine_update_accessibility_features(FlEngine *engine, int32_t flags)
Definition: fl_engine.cc:1268
fl_mouse_cursor_handler.h
fl_engine_get_renderer
FlRenderer * fl_engine_get_renderer(FlEngine *engine)
Definition: fl_engine.cc:597
fl_engine_get_mouse_cursor_handler
FlMouseCursorHandler * fl_engine_get_mouse_cursor_handler(FlEngine *engine)
Definition: fl_engine.cc:1299
fl_engine_get_task_runner
FlTaskRunner * fl_engine_get_task_runner(FlEngine *engine)
Definition: fl_engine.cc:1252
fl_renderer.h
fl_engine_send_key_event_finish
gboolean fl_engine_send_key_event_finish(FlEngine *engine, GAsyncResult *result, gboolean *handled, GError **error)
Definition: fl_engine.cc:1187
fl_engine_get_embedder_api
FlutterEngineProcTable * fl_engine_get_embedder_api(FlEngine *engine)
Definition: fl_engine.cc:721
fl_engine_set_platform_message_handler
void fl_engine_set_platform_message_handler(FlEngine *engine, FlEnginePlatformMessageHandler handler, gpointer user_data, GDestroyNotify destroy_notify)
Definition: fl_engine.cc:820
height
const uint8_t uint32_t uint32_t * height
Definition: fl_pixel_buffer_texture_test.cc:39
fl_engine_send_touch_add_event
void fl_engine_send_touch_add_event(FlEngine *engine, FlutterViewId view_id, size_t timestamp, double x, double y, int32_t device)
Definition: fl_engine.cc:1073
FlEngineError
FlEngineError
Definition: fl_engine_private.h:28
fl_engine_remove_view
void fl_engine_remove_view(FlEngine *engine, FlutterViewId view_id, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
Definition: fl_engine.cc:788
fl_engine.h
error
const uint8_t uint32_t uint32_t GError ** error
Definition: fl_pixel_buffer_texture_test.cc:40
fl_engine_send_pointer_pan_zoom_event
void fl_engine_send_pointer_pan_zoom_event(FlEngine *engine, FlutterViewId view_id, size_t timestamp, double x, double y, FlutterPointerPhase phase, double pan_x, double pan_y, double scale, double rotation)
Definition: fl_engine.cc:1125
fl_engine_get_text_input_handler
FlTextInputHandler * fl_engine_get_text_input_handler(FlEngine *engine)
Definition: fl_engine.cc:1294
fl_windowing_handler.h
fl_engine_send_touch_up_event
void fl_engine_send_touch_up_event(FlEngine *engine, FlutterViewId view_id, size_t timestamp, double x, double y, int32_t device)
Definition: fl_engine.cc:995
fl_engine_error_quark
GQuark fl_engine_error_quark(void) G_GNUC_CONST
texture_id
int64_t texture_id
Definition: texture_registrar_unittests.cc:24
width
const uint8_t uint32_t * width
Definition: fl_pixel_buffer_texture_test.cc:38
fl_engine_dispatch_semantics_action
void fl_engine_dispatch_semantics_action(FlEngine *engine, uint64_t id, FlutterSemanticsAction action, GBytes *data)
Definition: fl_engine.cc:1204
fl_engine_send_touch_down_event
void fl_engine_send_touch_down_event(FlEngine *engine, FlutterViewId view_id, size_t timestamp, double x, double y, int32_t device)
Definition: fl_engine.cc:1021
fl_display_monitor.h