Flutter Engine Uber Docs
Docs for the entire Flutter Engine repo.
 
Loading...
Searching...
No Matches
fl_window_monitor.cc File Reference

Go to the source code of this file.

Classes

struct  _FlWindowMonitor
 

Functions

static gboolean configure_event_cb (FlWindowMonitor *self, GdkEventConfigure *event)
 
static gboolean window_state_event_cb (FlWindowMonitor *self, GdkEventWindowState *event)
 
static void is_active_notify_cb (FlWindowMonitor *self)
 
static void title_notify_cb (FlWindowMonitor *self)
 
static void moved_to_rect_cb (FlWindowMonitor *self, GdkRectangle *flipped_rect, GdkRectangle *final_rect, gboolean flipped_x, gboolean flipped_y)
 
static gboolean delete_event_cb (FlWindowMonitor *self, GdkEvent *event)
 
static void destroy_cb (FlWindowMonitor *self)
 
static void fl_window_monitor_dispose (GObject *object)
 
static void fl_window_monitor_class_init (FlWindowMonitorClass *klass)
 
static void fl_window_monitor_init (FlWindowMonitor *self)
 
G_MODULE_EXPORT FlWindowMonitor * fl_window_monitor_new (GtkWindow *window, void(*on_configure)(void), void(*on_state_changed)(void), void(*on_is_active_notify)(void), void(*on_title_notify)(void), void(*on_moved_to_rect)(int, int, int, int), void(*on_close)(void), void(*on_destroy)(void))
 

Function Documentation

◆ configure_event_cb()

static gboolean configure_event_cb ( FlWindowMonitor *  self,
GdkEventConfigure *  event 
)
static

Definition at line 31 of file fl_window_monitor.cc.

32 {
33 flutter::IsolateScope scope(self->isolate);
34 self->on_configure();
35
36 return FALSE;
37}

References self.

Referenced by fl_window_monitor_new().

◆ delete_event_cb()

static gboolean delete_event_cb ( FlWindowMonitor *  self,
GdkEvent *  event 
)
static

Definition at line 67 of file fl_window_monitor.cc.

67 {
68 flutter::IsolateScope scope(self->isolate);
69 self->on_close();
70
71 // Stop default behaviour of destroying the window.
72 return TRUE;
73}
return TRUE

References self, and TRUE.

Referenced by fl_window_monitor_new().

◆ destroy_cb()

static void destroy_cb ( FlWindowMonitor *  self)
static

Definition at line 75 of file fl_window_monitor.cc.

75 {
76 flutter::IsolateScope scope(self->isolate);
77 self->on_destroy();
78}

References self.

Referenced by fl_window_monitor_new().

◆ fl_window_monitor_class_init()

static void fl_window_monitor_class_init ( FlWindowMonitorClass *  klass)
static

Definition at line 91 of file fl_window_monitor.cc.

91 {
92 G_OBJECT_CLASS(klass)->dispose = fl_window_monitor_dispose;
93}
static void fl_window_monitor_dispose(GObject *object)

References fl_window_monitor_dispose().

◆ fl_window_monitor_dispose()

static void fl_window_monitor_dispose ( GObject *  object)
static

Definition at line 80 of file fl_window_monitor.cc.

80 {
81 FlWindowMonitor* self = FL_WINDOW_MONITOR(object);
82
83 // Disconnect all handlers using data. If we try and disconnect them
84 // individually they generated warnings after the widget has been destroyed.
85 g_signal_handlers_disconnect_by_data(self->window, self);
86 g_clear_object(&self->window);
87
88 G_OBJECT_CLASS(fl_window_monitor_parent_class)->dispose(object);
89}

References self.

Referenced by fl_window_monitor_class_init().

◆ fl_window_monitor_init()

static void fl_window_monitor_init ( FlWindowMonitor *  self)
static

Definition at line 95 of file fl_window_monitor.cc.

95{}

◆ fl_window_monitor_new()

G_MODULE_EXPORT FlWindowMonitor * fl_window_monitor_new ( GtkWindow *  window,
void(*)(void)  on_configure,
void(*)(void)  on_state_changed,
void(*)(void)  on_is_active_notify,
void(*)(void)  on_title_notify,
void(*)(int, int, int, int)  on_moved_to_rect,
void(*)(void)  on_close,
void(*)(void)  on_destroy 
)

fl_window_monitor_new: @window: the window being monitored. @on_configure: the function to call when the window changes size, position or stacking. @on_state_changed: the function to call when the window state changes. @on_is_active_notify: the function to call when the is-active property changes. @on_moved_to_rect: the function to call when a popup window is moved to a new position. @on_close: the function to call when the user requests the window to be closed. @on_destroy: the function to call when the window is destroyed.

Helper class to allow the Flutter engine to monitor a GtkWindow using FFI. Callbacks are called in the isolate this class was created with.

Returns: a new #FlWindowMonitor.

Definition at line 97 of file fl_window_monitor.cc.

105 {
106 FlWindowMonitor* self =
107 FL_WINDOW_MONITOR(g_object_new(fl_window_monitor_get_type(), nullptr));
108
109 self->window = GTK_WINDOW(g_object_ref(window));
110 self->isolate = flutter::Isolate::Current();
111 self->on_configure = on_configure;
112 self->on_state_changed = on_state_changed;
113 self->on_is_active_notify = on_is_active_notify;
114 self->on_title_notify = on_title_notify;
115 self->on_moved_to_rect = on_moved_to_rect;
116 self->on_close = on_close;
117 self->on_destroy = on_destroy;
118 g_signal_connect_swapped(window, "configure-event",
119 G_CALLBACK(configure_event_cb), self);
120 g_signal_connect_swapped(window, "window-state-event",
121 G_CALLBACK(window_state_event_cb), self);
122 g_signal_connect_swapped(window, "notify::is-active",
123 G_CALLBACK(is_active_notify_cb), self);
124 g_signal_connect_swapped(window, "notify::title", G_CALLBACK(title_notify_cb),
125 self);
126 g_signal_connect_swapped(gtk_widget_get_window(GTK_WIDGET(window)),
127 "moved-to-rect", G_CALLBACK(moved_to_rect_cb), self);
128 g_signal_connect_swapped(window, "delete-event", G_CALLBACK(delete_event_cb),
129 self);
130 g_signal_connect_swapped(window, "destroy", G_CALLBACK(destroy_cb), self);
131
132 return self;
133}
static Isolate Current()
GLFWwindow * window
Definition main.cc:60
static void destroy_cb(FlWindowMonitor *self)
static void is_active_notify_cb(FlWindowMonitor *self)
static void title_notify_cb(FlWindowMonitor *self)
static void moved_to_rect_cb(FlWindowMonitor *self, GdkRectangle *flipped_rect, GdkRectangle *final_rect, gboolean flipped_x, gboolean flipped_y)
static gboolean configure_event_cb(FlWindowMonitor *self, GdkEventConfigure *event)
static gboolean window_state_event_cb(FlWindowMonitor *self, GdkEventWindowState *event)
static gboolean delete_event_cb(FlWindowMonitor *self, GdkEvent *event)
GdkWindow * gtk_widget_get_window(GtkWidget *widget)
Definition mock_gtk.cc:299

References configure_event_cb(), flutter::Isolate::Current(), delete_event_cb(), destroy_cb(), gtk_widget_get_window(), is_active_notify_cb(), moved_to_rect_cb(), self, title_notify_cb(), window, and window_state_event_cb().

◆ is_active_notify_cb()

static void is_active_notify_cb ( FlWindowMonitor *  self)
static

Definition at line 47 of file fl_window_monitor.cc.

47 {
48 flutter::IsolateScope scope(self->isolate);
49 self->on_is_active_notify();
50}

References self.

Referenced by fl_window_monitor_new().

◆ moved_to_rect_cb()

static void moved_to_rect_cb ( FlWindowMonitor *  self,
GdkRectangle *  flipped_rect,
GdkRectangle *  final_rect,
gboolean  flipped_x,
gboolean  flipped_y 
)
static

Definition at line 57 of file fl_window_monitor.cc.

61 {
62 flutter::IsolateScope scope(self->isolate);
63 self->on_moved_to_rect(final_rect->x, final_rect->y, final_rect->width,
64 final_rect->height);
65}

References self.

Referenced by fl_window_monitor_new().

◆ title_notify_cb()

static void title_notify_cb ( FlWindowMonitor *  self)
static

Definition at line 52 of file fl_window_monitor.cc.

52 {
53 flutter::IsolateScope scope(self->isolate);
54 self->on_title_notify();
55}

References self.

Referenced by fl_window_monitor_new().

◆ window_state_event_cb()

static gboolean window_state_event_cb ( FlWindowMonitor *  self,
GdkEventWindowState *  event 
)
static

Definition at line 39 of file fl_window_monitor.cc.

40 {
41 flutter::IsolateScope scope(self->isolate);
42 self->on_state_changed();
43
44 return FALSE;
45}

References self.

Referenced by fl_window_monitor_new().