Flutter Engine
 
Loading...
Searching...
No Matches
fl_application.cc
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
6
7#include <gtk/gtk.h>
8#ifdef GDK_WINDOWING_X11
9#include <gdk/gdkx.h>
10#endif
11
16
18 // Arguments to pass to Dart.
20};
21
22#define FL_APPLICATION_GET_PRIVATE(app) \
23 ((FlApplicationPrivate*)fl_application_get_instance_private( \
24 FL_APPLICATION(app)))
25
27
29
31 fl_application,
32 GTK_TYPE_APPLICATION,
33 G_ADD_PRIVATE(FlApplication))
34
35// Called when the platform creates a window.
36static GtkWindow* create_window_cb(FlApplication* self, FlView* view) {
37 GtkWindow* window;
39 &window);
40
41 return window;
42}
43
44// Called when the first frame is received.
45static void first_frame_cb(FlApplication* self, FlView* view) {
46 GtkWidget* window = gtk_widget_get_toplevel(GTK_WIDGET(view));
47
48 // Show the main window.
49 if (window != nullptr && GTK_IS_WINDOW(window)) {
50 gtk_window_present(GTK_WINDOW(window));
51 }
52}
53
54// Default implementation of FlApplication::register_plugins
55static void fl_application_register_plugins(FlApplication* self,
56 FlPluginRegistry* registry) {}
57
58// Default implementation of FlApplication::create_window
59static GtkWindow* fl_application_create_window(FlApplication* self,
60 FlView* view) {
61 GtkApplicationWindow* window =
62 GTK_APPLICATION_WINDOW(gtk_application_window_new(GTK_APPLICATION(self)));
63
64 // Use a header bar when running in GNOME as this is the common style used
65 // by applications and is the setup most users will be using (e.g. Ubuntu
66 // desktop).
67 // If running on X and not using GNOME then just use a traditional title bar
68 // in case the window manager does more exotic layout, e.g. tiling.
69 // If running on Wayland assume the header bar will work (may need changing
70 // if future cases occur).
71 gboolean use_header_bar = TRUE;
72#ifdef GDK_WINDOWING_X11
73 GdkScreen* screen = gtk_window_get_screen(GTK_WINDOW(window));
74 if (GDK_IS_X11_SCREEN(screen)) {
75 const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen);
76 if (g_strcmp0(wm_name, "GNOME Shell") != 0) {
77 use_header_bar = FALSE;
78 }
79 }
80#endif
81 if (use_header_bar) {
82 GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new());
83 gtk_widget_show(GTK_WIDGET(header_bar));
84 gtk_header_bar_set_show_close_button(header_bar, TRUE);
85 gtk_window_set_titlebar(GTK_WINDOW(window), GTK_WIDGET(header_bar));
86 }
87
88 gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view));
89
90 return GTK_WINDOW(window);
91}
92
93// Implements GApplication::activate.
94static void fl_application_activate(GApplication* application) {
95 FlApplication* self = FL_APPLICATION(application);
97
98 g_autoptr(FlDartProject) project = fl_dart_project_new();
100 project, priv->dart_entrypoint_arguments);
101
102 FlView* view = fl_view_new(project);
103 g_signal_connect_swapped(view, "first-frame", G_CALLBACK(first_frame_cb),
104 self);
105 gtk_widget_show(GTK_WIDGET(view));
106
107 FlWindowingHandler* windowing_handler =
109 g_signal_connect_swapped(windowing_handler, "create_window",
110 G_CALLBACK(create_window_cb), self);
111
112 GtkWindow* window;
114 &window);
115
116 // Make the resources for the view so rendering can start.
117 // We'll show the view when we have the first frame.
118 gtk_widget_realize(GTK_WIDGET(view));
119
121 FL_PLUGIN_REGISTRY(view));
122}
123
124// Implements GApplication::local_command_line.
125static gboolean fl_application_local_command_line(GApplication* application,
126 gchar*** arguments,
127 int* exit_status) {
128 FlApplication* self = FL_APPLICATION(application);
130
131 // Strip out the first argument as it is the binary name.
132 priv->dart_entrypoint_arguments = g_strdupv(*arguments + 1);
133
134 g_autoptr(GError) error = nullptr;
135 if (!g_application_register(application, nullptr, &error)) {
136 g_warning("Failed to register: %s", error->message);
137 *exit_status = 1;
138 return TRUE;
139 }
140
141 // This will only run on the primary instance or this instance with
142 // G_APPLICATION_NON_UNIQUE
143 g_application_activate(application);
144 *exit_status = 0;
145
146 return TRUE;
147}
148
149// Implements GObject::dispose.
150static void fl_application_dispose(GObject* object) {
151 FlApplication* self = FL_APPLICATION(object);
153
154 g_clear_pointer(&priv->dart_entrypoint_arguments, g_strfreev);
155
156 G_OBJECT_CLASS(fl_application_parent_class)->dispose(object);
157}
158
159static void fl_application_class_init(FlApplicationClass* klass) {
160 G_APPLICATION_CLASS(klass)->activate = fl_application_activate;
161 G_APPLICATION_CLASS(klass)->local_command_line =
163 G_OBJECT_CLASS(klass)->dispose = fl_application_dispose;
164
165 klass->register_plugins = fl_application_register_plugins;
166 klass->create_window = fl_application_create_window;
167
169 "register-plugins", fl_application_get_type(), G_SIGNAL_RUN_LAST,
170 G_STRUCT_OFFSET(FlApplicationClass, register_plugins), nullptr, nullptr,
171 nullptr, G_TYPE_NONE, 1, fl_plugin_registry_get_type());
173 "create-window", fl_application_get_type(), G_SIGNAL_RUN_LAST,
174 G_STRUCT_OFFSET(FlApplicationClass, create_window),
175 g_signal_accumulator_first_wins, nullptr, nullptr, GTK_TYPE_WINDOW, 1,
176 fl_view_get_type());
177}
178
179static void fl_application_init(FlApplication* self) {}
180
181G_MODULE_EXPORT
182FlApplication* fl_application_new(const gchar* application_id,
183 GApplicationFlags flags) {
184 return FL_APPLICATION(g_object_new(fl_application_get_type(),
185 "application-id", application_id, "flags",
186 flags, nullptr));
187}
FlView * view
G_MODULE_EXPORT FlApplication * fl_application_new(const gchar *application_id, GApplicationFlags flags)
static void fl_application_dispose(GObject *object)
static void first_frame_cb(FlApplication *self, FlView *view)
static void fl_application_init(FlApplication *self)
static GtkWindow * fl_application_create_window(FlApplication *self, FlView *view)
static guint fl_application_signals[LAST_SIGNAL]
@ LAST_SIGNAL
@ SIGNAL_CREATE_WINDOW
@ SIGNAL_REGISTER_PLUGINS
static gboolean fl_application_local_command_line(GApplication *application, gchar ***arguments, int *exit_status)
#define FL_APPLICATION_GET_PRIVATE(app)
static void fl_application_register_plugins(FlApplication *self, FlPluginRegistry *registry)
g_signal_emit(self, fl_application_signals[SIGNAL_CREATE_WINDOW], 0, view, &window)
G_DEFINE_TYPE_WITH_CODE(FlApplication, fl_application, GTK_TYPE_APPLICATION, G_ADD_PRIVATE(FlApplication)) static GtkWindow *create_window_cb(FlApplication *self
return window
static void fl_application_class_init(FlApplicationClass *klass)
static void fl_application_activate(GApplication *application)
g_autoptr(GMutexLocker) locker
return TRUE
G_MODULE_EXPORT void fl_dart_project_set_dart_entrypoint_arguments(FlDartProject *self, char **argv)
G_MODULE_EXPORT FlDartProject * fl_dart_project_new()
FlWindowingHandler * fl_engine_get_windowing_handler(FlEngine *self)
FlPixelBufferTexturePrivate * priv
const uint8_t uint32_t uint32_t GError ** error
G_MODULE_EXPORT FlView * fl_view_new(FlDartProject *project)
Definition fl_view.cc:763
G_MODULE_EXPORT FlEngine * fl_view_get_engine(FlView *self)
Definition fl_view.cc:790
void gtk_widget_show(GtkWidget *widget)
Definition mock_gtk.cc:256
GtkWidget * gtk_widget_get_toplevel(GtkWidget *widget)
Definition mock_gtk.cc:293
void gtk_widget_realize(GtkWidget *widget)
Definition mock_gtk.cc:252
gchar ** dart_entrypoint_arguments