6 #include "gtest/gtest.h"
8 #include "flutter/shell/platform/embedder/test_utils/proc_table_replacement.h"
13 #include "flutter/shell/platform/linux/testing/mock_renderable.h"
19 TEST(FlEngineTest, NotifyDisplayUpdate) {
23 g_autoptr(GError)
error =
nullptr;
25 EXPECT_EQ(
error,
nullptr);
30 ([&called](
auto engine, FlutterEngineDisplaysUpdateType update_type,
31 const FlutterEngineDisplay* displays,
size_t displays_length) {
33 EXPECT_EQ(update_type, kFlutterEngineDisplaysUpdateTypeStartup);
34 EXPECT_EQ(displays_length, 2u);
36 EXPECT_EQ(displays[0].display_id, 1u);
37 EXPECT_EQ(displays[0].refresh_rate, 60);
38 EXPECT_EQ(displays[0].
width, 1024u);
39 EXPECT_EQ(displays[0].
height, 768u);
40 EXPECT_EQ(displays[0].device_pixel_ratio, 1.0);
42 EXPECT_EQ(displays[1].display_id, 2u);
43 EXPECT_EQ(displays[1].refresh_rate, 120);
44 EXPECT_EQ(displays[1].
width, 3840u);
45 EXPECT_EQ(displays[1].
height, 2160u);
46 EXPECT_EQ(displays[1].device_pixel_ratio, 2.0);
51 FlutterEngineDisplay displays[2] = {
53 .struct_size =
sizeof(FlutterEngineDisplay),
55 .single_display =
false,
59 .device_pixel_ratio = 1.0,
62 .struct_size =
sizeof(FlutterEngineDisplay),
64 .single_display =
false,
65 .refresh_rate = 120.0,
68 .device_pixel_ratio = 2.0,
76 TEST(FlEngineTest, WindowMetrics) {
80 g_autoptr(GError)
error =
nullptr;
82 EXPECT_EQ(
error,
nullptr);
86 SendWindowMetricsEvent,
87 ([&called](
auto engine,
const FlutterWindowMetricsEvent* event) {
89 EXPECT_EQ(event->display_id, 99u);
90 EXPECT_EQ(event->view_id, 1);
91 EXPECT_EQ(event->width,
static_cast<size_t>(3840));
92 EXPECT_EQ(event->height,
static_cast<size_t>(2160));
93 EXPECT_EQ(event->pixel_ratio, 2.0);
104 TEST(FlEngineTest, MousePointer) {
111 ([&called](
auto engine,
const FlutterPointerEvent* events,
112 size_t events_count) {
114 EXPECT_EQ(events_count,
static_cast<size_t>(1));
115 EXPECT_EQ(events[0].
view_id, 1);
116 EXPECT_EQ(events[0].phase, kDown);
117 EXPECT_EQ(events[0].timestamp,
static_cast<size_t>(1234567890));
118 EXPECT_EQ(events[0].x, 800);
119 EXPECT_EQ(events[0].y, 600);
120 EXPECT_EQ(events[0].device,
static_cast<int32_t
>(0));
121 EXPECT_EQ(events[0].signal_kind, kFlutterPointerSignalKindScroll);
122 EXPECT_EQ(events[0].scroll_delta_x, 1.2);
123 EXPECT_EQ(events[0].scroll_delta_y, -3.4);
124 EXPECT_EQ(events[0].device_kind, kFlutterPointerDeviceKindMouse);
125 EXPECT_EQ(events[0].buttons, kFlutterPointerButtonMouseSecondary);
130 g_autoptr(GError)
error =
nullptr;
132 EXPECT_EQ(
error,
nullptr);
134 kFlutterPointerDeviceKindMouse, 1.2, -3.4,
135 kFlutterPointerButtonMouseSecondary);
141 TEST(FlEngineTest, PointerPanZoom) {
148 ([&called](
auto engine,
const FlutterPointerEvent* events,
149 size_t events_count) {
151 EXPECT_EQ(events_count,
static_cast<size_t>(1));
152 EXPECT_EQ(events[0].
view_id, 1);
153 EXPECT_EQ(events[0].phase, kPanZoomUpdate);
154 EXPECT_EQ(events[0].timestamp,
static_cast<size_t>(1234567890));
155 EXPECT_EQ(events[0].x, 800);
156 EXPECT_EQ(events[0].y, 600);
157 EXPECT_EQ(events[0].device,
static_cast<int32_t
>(1));
158 EXPECT_EQ(events[0].signal_kind, kFlutterPointerSignalKindNone);
159 EXPECT_EQ(events[0].pan_x, 1.5);
160 EXPECT_EQ(events[0].pan_y, 2.5);
161 EXPECT_EQ(events[0].scale, 3.5);
162 EXPECT_EQ(events[0].rotation, 4.5);
163 EXPECT_EQ(events[0].device_kind, kFlutterPointerDeviceKindTrackpad);
164 EXPECT_EQ(events[0].buttons, 0);
169 g_autoptr(GError)
error =
nullptr;
171 EXPECT_EQ(
error,
nullptr);
173 kPanZoomUpdate, 1.5, 2.5, 3.5, 4.5);
179 TEST(FlEngineTest, DispatchSemanticsAction) {
186 ([&called](
auto engine,
const FlutterSendSemanticsActionInfo* info) {
187 EXPECT_EQ(info->view_id,
static_cast<int64_t
>(456));
188 EXPECT_EQ(info->node_id,
static_cast<uint64_t
>(42));
189 EXPECT_EQ(info->action, kFlutterSemanticsActionTap);
190 EXPECT_EQ(info->data_length,
static_cast<size_t>(4));
191 EXPECT_EQ(info->data[0],
't');
192 EXPECT_EQ(info->data[1],
'e');
193 EXPECT_EQ(info->data[2],
's');
194 EXPECT_EQ(info->data[3],
't');
200 g_autoptr(GError)
error =
nullptr;
202 EXPECT_EQ(
error,
nullptr);
203 g_autoptr(GBytes) data = g_bytes_new_static(
"test", 4);
205 kFlutterSemanticsActionTap, data);
211 TEST(FlEngineTest, PlatformMessage) {
216 FlutterEngineSendPlatformMessageFnPtr old_handler =
220 ([&called, old_handler](
auto engine,
221 const FlutterPlatformMessage* message) {
222 if (strcmp(message->channel,
"test") != 0) {
223 return old_handler(engine, message);
228 EXPECT_EQ(message->message_size,
static_cast<size_t>(4));
229 EXPECT_EQ(message->message[0],
't');
230 EXPECT_EQ(message->message[1],
'e');
231 EXPECT_EQ(message->message[2],
's');
232 EXPECT_EQ(message->message[3],
't');
237 g_autoptr(GError)
error =
nullptr;
239 EXPECT_EQ(
error,
nullptr);
240 g_autoptr(GBytes) message = g_bytes_new_static(
"test", 4);
248 TEST(FlEngineTest, PlatformMessageResponse) {
255 SendPlatformMessageResponse,
256 ([&called](
auto engine,
257 const FlutterPlatformMessageResponseHandle* handle,
258 const uint8_t* data,
size_t data_length) {
263 reinterpret_cast<const FlutterPlatformMessageResponseHandle*
>(
265 EXPECT_EQ(data_length,
static_cast<size_t>(4));
266 EXPECT_EQ(data[0],
't');
267 EXPECT_EQ(data[1],
'e');
268 EXPECT_EQ(data[2],
's');
269 EXPECT_EQ(data[3],
't');
274 g_autoptr(GError)
error =
nullptr;
276 EXPECT_EQ(
error,
nullptr);
277 g_autoptr(GBytes) response = g_bytes_new_static(
"test", 4);
279 engine,
reinterpret_cast<const FlutterPlatformMessageResponseHandle*
>(42),
281 EXPECT_EQ(
error,
nullptr);
287 TEST(FlEngineTest, SettingsHandler) {
294 ([&called](
auto engine,
const FlutterPlatformMessage* message) {
297 EXPECT_STREQ(message->channel,
"flutter/settings");
300 g_autoptr(GBytes) data =
301 g_bytes_new(message->message, message->message_size);
302 g_autoptr(GError)
error =
nullptr;
304 FL_MESSAGE_CODEC(codec), data, &
error);
305 EXPECT_NE(settings,
nullptr);
306 EXPECT_EQ(
error,
nullptr);
310 EXPECT_NE(text_scale_factor,
nullptr);
313 FlValue* always_use_24hr_format =
315 EXPECT_NE(always_use_24hr_format,
nullptr);
321 EXPECT_NE(platform_brightness,
nullptr);
327 g_autoptr(GError)
error =
nullptr;
329 EXPECT_EQ(
error,
nullptr);
335 int* count =
reinterpret_cast<int*
>(
user_data);
340 TEST(FlEngineTest, OnPreEngineRestart) {
344 OnPreEngineRestartCallback callback;
345 void* callback_user_data;
349 Initialize, ([&callback, &callback_user_data, &called](
350 size_t version,
const FlutterRendererConfig* config,
352 FLUTTER_API_SYMBOL(FlutterEngine) * engine_out) {
354 callback =
args->on_pre_engine_restart_callback;
360 MOCK_ENGINE_PROC(RunInitialized, ([](
auto engine) {
return kSuccess; }));
362 g_autoptr(GError)
error =
nullptr;
364 EXPECT_EQ(
error,
nullptr);
367 EXPECT_NE(callback,
nullptr);
370 callback(callback_user_data);
378 g_signal_connect(engine,
"on-pre-engine-restart",
381 callback(callback_user_data);
385 TEST(FlEngineTest, DartEntrypointArgs) {
386 GPtrArray* args_array = g_ptr_array_new();
387 g_ptr_array_add(args_array,
const_cast<char*
>(
"arg_one"));
388 g_ptr_array_add(args_array,
const_cast<char*
>(
"arg_two"));
389 g_ptr_array_add(args_array,
const_cast<char*
>(
"arg_three"));
390 g_ptr_array_add(args_array,
nullptr);
391 gchar**
args =
reinterpret_cast<gchar**
>(g_ptr_array_free(args_array,
false));
399 Initialize, ([&called, &set_args =
args](
400 size_t version,
const FlutterRendererConfig* config,
402 FLUTTER_API_SYMBOL(FlutterEngine) * engine_out) {
404 EXPECT_NE(set_args,
args->dart_entrypoint_argv);
405 EXPECT_EQ(
args->dart_entrypoint_argc, 3);
410 MOCK_ENGINE_PROC(RunInitialized, ([](
auto engine) {
return kSuccess; }));
412 g_autoptr(GError)
error =
nullptr;
414 EXPECT_EQ(
error,
nullptr);
425 ([&engine_id](
size_t version,
const FlutterRendererConfig* config,
427 FLUTTER_API_SYMBOL(FlutterEngine) * engine_out) {
428 engine_id =
args->engine_id;
432 MOCK_ENGINE_PROC(RunInitialized, ([](
auto engine) {
return kSuccess; }));
434 g_autoptr(GError)
error =
nullptr;
436 EXPECT_EQ(
error,
nullptr);
437 EXPECT_TRUE(engine_id != 0);
443 g_autofree gchar* initial_language = g_strdup(g_getenv(
"LANGUAGE"));
444 g_setenv(
"LANGUAGE",
"de:en_US",
TRUE);
451 UpdateLocales, ([&called](
auto engine,
const FlutterLocale** locales,
452 size_t locales_count) {
455 EXPECT_EQ(locales_count,
static_cast<size_t>(4));
457 EXPECT_STREQ(locales[0]->language_code,
"de");
458 EXPECT_STREQ(locales[0]->country_code,
nullptr);
459 EXPECT_STREQ(locales[0]->script_code,
nullptr);
460 EXPECT_STREQ(locales[0]->variant_code,
nullptr);
462 EXPECT_STREQ(locales[1]->language_code,
"en");
463 EXPECT_STREQ(locales[1]->country_code,
"US");
464 EXPECT_STREQ(locales[1]->script_code,
nullptr);
465 EXPECT_STREQ(locales[1]->variant_code,
nullptr);
467 EXPECT_STREQ(locales[2]->language_code,
"en");
468 EXPECT_STREQ(locales[2]->country_code,
nullptr);
469 EXPECT_STREQ(locales[2]->script_code,
nullptr);
470 EXPECT_STREQ(locales[2]->variant_code,
nullptr);
472 EXPECT_STREQ(locales[3]->language_code,
"C");
473 EXPECT_STREQ(locales[3]->country_code,
nullptr);
474 EXPECT_STREQ(locales[3]->script_code,
nullptr);
475 EXPECT_STREQ(locales[3]->variant_code,
nullptr);
480 g_autoptr(GError)
error =
nullptr;
482 EXPECT_EQ(
error,
nullptr);
486 if (initial_language) {
487 g_setenv(
"LANGUAGE", initial_language,
TRUE);
489 g_unsetenv(
"LANGUAGE");
494 g_autofree gchar* initial_language = g_strdup(g_getenv(
"LANGUAGE"));
495 g_setenv(
"LANGUAGE",
"C",
TRUE);
502 UpdateLocales, ([&called](
auto engine,
const FlutterLocale** locales,
503 size_t locales_count) {
506 EXPECT_EQ(locales_count,
static_cast<size_t>(1));
508 EXPECT_STREQ(locales[0]->language_code,
"C");
509 EXPECT_STREQ(locales[0]->country_code,
nullptr);
510 EXPECT_STREQ(locales[0]->script_code,
nullptr);
511 EXPECT_STREQ(locales[0]->variant_code,
nullptr);
516 g_autoptr(GError)
error =
nullptr;
518 EXPECT_EQ(
error,
nullptr);
522 if (initial_language) {
523 g_setenv(
"LANGUAGE", initial_language,
TRUE);
525 g_unsetenv(
"LANGUAGE");
529 TEST(FlEngineTest, DuplicateLocale) {
530 g_autofree gchar* initial_language = g_strdup(g_getenv(
"LANGUAGE"));
531 g_setenv(
"LANGUAGE",
"en:en",
TRUE);
538 UpdateLocales, ([&called](
auto engine,
const FlutterLocale** locales,
539 size_t locales_count) {
542 EXPECT_EQ(locales_count,
static_cast<size_t>(2));
544 EXPECT_STREQ(locales[0]->language_code,
"en");
545 EXPECT_STREQ(locales[0]->country_code,
nullptr);
546 EXPECT_STREQ(locales[0]->script_code,
nullptr);
547 EXPECT_STREQ(locales[0]->variant_code,
nullptr);
549 EXPECT_STREQ(locales[1]->language_code,
"C");
550 EXPECT_STREQ(locales[1]->country_code,
nullptr);
551 EXPECT_STREQ(locales[1]->script_code,
nullptr);
552 EXPECT_STREQ(locales[1]->variant_code,
nullptr);
557 g_autoptr(GError)
error =
nullptr;
559 EXPECT_EQ(
error,
nullptr);
563 if (initial_language) {
564 g_setenv(
"LANGUAGE", initial_language,
TRUE);
566 g_unsetenv(
"LANGUAGE");
570 TEST(FlEngineTest, EmptyLocales) {
571 g_autofree gchar* initial_language = g_strdup(g_getenv(
"LANGUAGE"));
572 g_setenv(
"LANGUAGE",
"de:: :en_US",
TRUE);
579 UpdateLocales, ([&called](
auto engine,
const FlutterLocale** locales,
580 size_t locales_count) {
583 EXPECT_EQ(locales_count,
static_cast<size_t>(4));
585 EXPECT_STREQ(locales[0]->language_code,
"de");
586 EXPECT_STREQ(locales[0]->country_code,
nullptr);
587 EXPECT_STREQ(locales[0]->script_code,
nullptr);
588 EXPECT_STREQ(locales[0]->variant_code,
nullptr);
590 EXPECT_STREQ(locales[1]->language_code,
"en");
591 EXPECT_STREQ(locales[1]->country_code,
"US");
592 EXPECT_STREQ(locales[1]->script_code,
nullptr);
593 EXPECT_STREQ(locales[1]->variant_code,
nullptr);
595 EXPECT_STREQ(locales[2]->language_code,
"en");
596 EXPECT_STREQ(locales[2]->country_code,
nullptr);
597 EXPECT_STREQ(locales[2]->script_code,
nullptr);
598 EXPECT_STREQ(locales[2]->variant_code,
nullptr);
600 EXPECT_STREQ(locales[3]->language_code,
"C");
601 EXPECT_STREQ(locales[3]->country_code,
nullptr);
602 EXPECT_STREQ(locales[3]->script_code,
nullptr);
603 EXPECT_STREQ(locales[3]->variant_code,
nullptr);
608 g_autoptr(GError)
error =
nullptr;
610 EXPECT_EQ(
error,
nullptr);
614 if (initial_language) {
615 g_setenv(
"LANGUAGE", initial_language,
TRUE);
617 g_unsetenv(
"LANGUAGE");
622 GAsyncResult* result,
624 g_autoptr(GError)
error =
nullptr;
627 EXPECT_EQ(
error,
nullptr);
629 g_main_loop_quit(
static_cast<GMainLoop*
>(
user_data));
633 g_autoptr(GMainLoop) loop = g_main_loop_new(
nullptr, 0);
640 AddView, ([&called](
auto engine,
const FlutterAddViewInfo* info) {
642 EXPECT_EQ(info->view_metrics->width, 123u);
643 EXPECT_EQ(info->view_metrics->height, 456u);
644 EXPECT_EQ(info->view_metrics->pixel_ratio, 2.0);
646 FlutterAddViewResult result;
647 result.struct_size =
sizeof(FlutterAddViewResult);
649 result.user_data = info->user_data;
650 info->add_view_callback(&result);
655 g_autoptr(FlMockRenderable) renderable = fl_mock_renderable_new();
663 g_main_loop_run(loop);
667 GAsyncResult* result,
669 g_autoptr(GError)
error =
nullptr;
672 EXPECT_NE(
error,
nullptr);
674 g_main_loop_quit(
static_cast<GMainLoop*
>(
user_data));
677 TEST(FlEngineTest, AddViewError) {
678 g_autoptr(GMainLoop) loop = g_main_loop_new(
nullptr, 0);
684 AddView, ([](
auto engine,
const FlutterAddViewInfo* info) {
685 FlutterAddViewResult result;
686 result.struct_size =
sizeof(FlutterAddViewResult);
687 result.added =
false;
688 result.user_data = info->user_data;
689 info->add_view_callback(&result);
694 g_autoptr(FlMockRenderable) renderable = fl_mock_renderable_new();
701 g_main_loop_run(loop);
705 GAsyncResult* result,
707 g_autoptr(GError)
error =
nullptr;
710 EXPECT_NE(
error,
nullptr);
712 g_main_loop_quit(
static_cast<GMainLoop*
>(
user_data));
715 TEST(FlEngineTest, AddViewEngineError) {
716 g_autoptr(GMainLoop) loop = g_main_loop_new(
nullptr, 0);
722 AddView, ([](
auto engine,
const FlutterAddViewInfo* info) {
723 return kInvalidArguments;
726 g_autoptr(FlMockRenderable) renderable = fl_mock_renderable_new();
733 g_main_loop_run(loop);
737 GAsyncResult* result,
739 g_autoptr(GError)
error =
nullptr;
742 EXPECT_EQ(
error,
nullptr);
744 g_main_loop_quit(
static_cast<GMainLoop*
>(
user_data));
747 TEST(FlEngineTest, RemoveView) {
748 g_autoptr(GMainLoop) loop = g_main_loop_new(
nullptr, 0);
755 RemoveView, ([&called](
auto engine,
const FlutterRemoveViewInfo* info) {
757 EXPECT_EQ(info->view_id, 123);
759 FlutterRemoveViewResult result;
760 result.struct_size =
sizeof(FlutterRemoveViewResult);
761 result.removed =
true;
762 result.user_data = info->user_data;
763 info->remove_view_callback(&result);
772 g_main_loop_run(loop);
776 GAsyncResult* result,
778 g_autoptr(GError)
error =
nullptr;
781 EXPECT_NE(
error,
nullptr);
783 g_main_loop_quit(
static_cast<GMainLoop*
>(
user_data));
786 TEST(FlEngineTest, RemoveViewError) {
787 g_autoptr(GMainLoop) loop = g_main_loop_new(
nullptr, 0);
793 RemoveView, ([](
auto engine,
const FlutterRemoveViewInfo* info) {
794 FlutterRemoveViewResult result;
795 result.struct_size =
sizeof(FlutterRemoveViewResult);
796 result.removed =
false;
797 result.user_data = info->user_data;
798 info->remove_view_callback(&result);
806 g_main_loop_run(loop);
810 GAsyncResult* result,
812 g_autoptr(GError)
error =
nullptr;
815 EXPECT_NE(
error,
nullptr);
817 g_main_loop_quit(
static_cast<GMainLoop*
>(
user_data));
820 TEST(FlEngineTest, RemoveViewEngineError) {
821 g_autoptr(GMainLoop) loop = g_main_loop_new(
nullptr, 0);
827 RemoveView, ([](
auto engine,
const FlutterRemoveViewInfo* info) {
828 return kInvalidArguments;
835 g_main_loop_run(loop);
838 TEST(FlEngineTest, SendKeyEvent) {
839 g_autoptr(GMainLoop) loop = g_main_loop_new(
nullptr, 0);
844 g_autoptr(GError)
error =
nullptr;
846 EXPECT_EQ(
error,
nullptr);
851 ([&called](
auto engine,
const FlutterKeyEvent* event,
852 FlutterKeyEventCallback callback,
void*
user_data) {
854 EXPECT_EQ(event->timestamp, 1234);
855 EXPECT_EQ(event->type, kFlutterKeyEventTypeUp);
856 EXPECT_EQ(event->physical,
static_cast<uint64_t
>(42));
857 EXPECT_EQ(event->logical,
static_cast<uint64_t
>(123));
858 EXPECT_TRUE(event->synthesized);
859 EXPECT_EQ(event->device_type, kFlutterKeyEventDeviceTypeKeyboard);
864 FlutterKeyEvent
event = {.struct_size =
sizeof(FlutterKeyEvent),
866 .
type = kFlutterKeyEventTypeUp,
869 .character =
nullptr,
871 .device_type = kFlutterKeyEventDeviceTypeKeyboard};
873 engine, &event,
nullptr,
874 [](GObject*
object, GAsyncResult* result, gpointer
user_data) {
876 g_autoptr(GError)
error =
nullptr;
879 EXPECT_EQ(
error,
nullptr);
880 EXPECT_TRUE(handled);
881 g_main_loop_quit(
static_cast<GMainLoop*
>(
user_data));
885 g_main_loop_run(loop);
889 TEST(FlEngineTest, SendKeyEventNotHandled) {
890 g_autoptr(GMainLoop) loop = g_main_loop_new(
nullptr, 0);
895 g_autoptr(GError)
error =
nullptr;
897 EXPECT_EQ(
error,
nullptr);
902 ([&called](
auto engine,
const FlutterKeyEvent* event,
903 FlutterKeyEventCallback callback,
void*
user_data) {
909 FlutterKeyEvent
event = {.struct_size =
sizeof(FlutterKeyEvent),
911 .
type = kFlutterKeyEventTypeUp,
914 .character =
nullptr,
916 .device_type = kFlutterKeyEventDeviceTypeKeyboard};
918 engine, &event,
nullptr,
919 [](GObject*
object, GAsyncResult* result, gpointer
user_data) {
921 g_autoptr(GError)
error =
nullptr;
924 EXPECT_EQ(
error,
nullptr);
925 EXPECT_FALSE(handled);
926 g_main_loop_quit(
static_cast<GMainLoop*
>(
user_data));
930 g_main_loop_run(loop);
934 TEST(FlEngineTest, SendKeyEventError) {
935 g_autoptr(GMainLoop) loop = g_main_loop_new(
nullptr, 0);
940 g_autoptr(GError)
error =
nullptr;
942 EXPECT_EQ(
error,
nullptr);
947 ([&called](
auto engine,
const FlutterKeyEvent* event,
948 FlutterKeyEventCallback callback,
void*
user_data) {
950 return kInvalidArguments;
953 FlutterKeyEvent
event = {.struct_size =
sizeof(FlutterKeyEvent),
955 .
type = kFlutterKeyEventTypeUp,
958 .character =
nullptr,
960 .device_type = kFlutterKeyEventDeviceTypeKeyboard};
962 engine, &event,
nullptr,
963 [](GObject*
object, GAsyncResult* result, gpointer
user_data) {
965 g_autoptr(GError)
error =
nullptr;
968 EXPECT_NE(
error,
nullptr);
969 EXPECT_STREQ(
error->message,
"Failed to send key event");
970 g_main_loop_quit(
static_cast<GMainLoop*
>(
user_data));
974 g_main_loop_run(loop);
978 TEST(FlEngineTest, ChildObjects) {
G_MODULE_EXPORT FlDartProject * fl_dart_project_new()
G_MODULE_EXPORT void fl_dart_project_set_dart_entrypoint_arguments(FlDartProject *self, char **argv)
FlMouseCursorHandler * fl_engine_get_mouse_cursor_handler(FlEngine *self)
void fl_engine_send_mouse_pointer_event(FlEngine *self, 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)
gboolean fl_engine_send_key_event_finish(FlEngine *self, GAsyncResult *result, gboolean *handled, GError **error)
FlutterEngineProcTable * fl_engine_get_embedder_api(FlEngine *self)
void fl_engine_dispatch_semantics_action(FlEngine *self, FlutterViewId view_id, uint64_t node_id, FlutterSemanticsAction action, GBytes *data)
void fl_engine_notify_display_update(FlEngine *self, const FlutterEngineDisplay *displays, size_t displays_length)
FlCompositor * fl_engine_get_compositor(FlEngine *self)
void fl_engine_send_window_metrics_event(FlEngine *self, FlutterEngineDisplayId display_id, FlutterViewId view_id, size_t width, size_t height, double pixel_ratio)
FlWindowingHandler * fl_engine_get_windowing_handler(FlEngine *self)
gboolean fl_engine_remove_view_finish(FlEngine *self, GAsyncResult *result, GError **error)
FlTaskRunner * fl_engine_get_task_runner(FlEngine *self)
FlKeyboardManager * fl_engine_get_keyboard_manager(FlEngine *self)
FlDisplayMonitor * fl_engine_get_display_monitor(FlEngine *self)
gboolean fl_engine_send_platform_message_response(FlEngine *self, const FlutterPlatformMessageResponseHandle *handle, GBytes *response, GError **error)
void fl_engine_send_platform_message(FlEngine *self, const gchar *channel, GBytes *message, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
FlEngine * fl_engine_for_id(int64_t id)
void fl_engine_remove_view(FlEngine *self, FlutterViewId view_id, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
G_MODULE_EXPORT FlBinaryMessenger * fl_engine_get_binary_messenger(FlEngine *self)
gboolean fl_engine_add_view_finish(FlEngine *self, GAsyncResult *result, GError **error)
void fl_engine_send_key_event(FlEngine *self, const FlutterKeyEvent *event, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
void fl_engine_send_pointer_pan_zoom_event(FlEngine *self, FlutterViewId view_id, size_t timestamp, double x, double y, FlutterPointerPhase phase, double pan_x, double pan_y, double scale, double rotation)
FlutterViewId fl_engine_add_view(FlEngine *self, FlRenderable *renderable, size_t width, size_t height, double pixel_ratio, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
gboolean fl_engine_start(FlEngine *self, GError **error)
G_MODULE_EXPORT FlEngine * fl_engine_new(FlDartProject *project)
void on_pre_engine_restart_cb(FlEngine *engine, gpointer user_data)
static void remove_view_engine_error_cb(GObject *object, GAsyncResult *result, gpointer user_data)
TEST(FlEngineTest, NotifyDisplayUpdate)
static void remove_view_cb(GObject *object, GAsyncResult *result, gpointer user_data)
static void add_view_error_cb(GObject *object, GAsyncResult *result, gpointer user_data)
static void add_view_engine_error_cb(GObject *object, GAsyncResult *result, gpointer user_data)
static void remove_view_error_cb(GObject *object, GAsyncResult *result, gpointer user_data)
static void add_view_cb(GObject *object, GAsyncResult *result, gpointer user_data)
G_BEGIN_DECLS G_MODULE_EXPORT FlValue * args
G_BEGIN_DECLS G_MODULE_EXPORT FlValue gpointer user_data
G_MODULE_EXPORT FlJsonMessageCodec * fl_json_message_codec_new()
G_MODULE_EXPORT FlValue * fl_message_codec_decode_message(FlMessageCodec *self, GBytes *message, GError **error)
const uint8_t uint32_t uint32_t * height
const uint8_t uint32_t * width
const uint8_t uint32_t uint32_t GError ** error
G_MODULE_EXPORT FlValue * fl_value_lookup_string(FlValue *self, const gchar *key)
G_MODULE_EXPORT FlValueType fl_value_get_type(FlValue *self)
typedefG_BEGIN_DECLS struct _FlValue FlValue
G_BEGIN_DECLS FlutterViewId view_id