Flutter Engine
 
Loading...
Searching...
No Matches
fl_window_state_monitor.cc File Reference

Go to the source code of this file.

Classes

struct  _FlWindowStateMonitor
 

Functions

 G_DEFINE_TYPE (FlWindowStateMonitor, fl_window_state_monitor, G_TYPE_OBJECT)
 
static void send_lifecycle_state (FlWindowStateMonitor *self, const gchar *lifecycle_state)
 
static gboolean is_hidden (GdkWindowState state)
 
static gboolean window_state_event_cb (FlWindowStateMonitor *self, GdkEvent *event)
 
static void fl_window_state_monitor_dispose (GObject *object)
 
static void fl_window_state_monitor_class_init (FlWindowStateMonitorClass *klass)
 
static void fl_window_state_monitor_init (FlWindowStateMonitor *self)
 
FlWindowStateMonitor * fl_window_state_monitor_new (FlBinaryMessenger *messenger, GtkWindow *window)
 

Variables

static constexpr const char * kFlutterLifecycleChannel = "flutter/lifecycle"
 
static constexpr const char * kAppLifecycleStateResumed
 
static constexpr const char * kAppLifecycleStateInactive
 
static constexpr const char * kAppLifecycleStateHidden
 

Function Documentation

◆ fl_window_state_monitor_class_init()

static void fl_window_state_monitor_class_init ( FlWindowStateMonitorClass *  klass)
static

Definition at line 97 of file fl_window_state_monitor.cc.

98 {
99 G_OBJECT_CLASS(klass)->dispose = fl_window_state_monitor_dispose;
100}
static void fl_window_state_monitor_dispose(GObject *object)

References fl_window_state_monitor_dispose().

◆ fl_window_state_monitor_dispose()

static void fl_window_state_monitor_dispose ( GObject *  object)
static

Definition at line 85 of file fl_window_state_monitor.cc.

85 {
86 FlWindowStateMonitor* self = FL_WINDOW_STATE_MONITOR(object);
87
88 g_clear_object(&self->messenger);
89 if (self->window_state_event_cb_id != 0) {
90 g_signal_handler_disconnect(self->window, self->window_state_event_cb_id);
91 self->window_state_event_cb_id = 0;
92 }
93
94 G_OBJECT_CLASS(fl_window_state_monitor_parent_class)->dispose(object);
95}

References self.

Referenced by fl_window_state_monitor_class_init().

◆ fl_window_state_monitor_init()

static void fl_window_state_monitor_init ( FlWindowStateMonitor *  self)
static

Definition at line 102 of file fl_window_state_monitor.cc.

102{}

◆ fl_window_state_monitor_new()

FlWindowStateMonitor * fl_window_state_monitor_new ( FlBinaryMessenger *  messenger,
GtkWindow *  window 
)

FlWindowStateMonitor:

Monitors a GtkWindow and reports state change events to the Flutter engine. fl_window_state_monitor_new: @messenger: an #FlBinaryMessenger. @window: a #GtkWindow.

Creates a new window state manager to monitor @window and report events to @messenger.

Returns: a new #FlWindowStateMonitor.

Definition at line 104 of file fl_window_state_monitor.cc.

105 {
106 FlWindowStateMonitor* self = FL_WINDOW_STATE_MONITOR(
107 g_object_new(fl_window_state_monitor_get_type(), nullptr));
108 self->messenger = FL_BINARY_MESSENGER(g_object_ref(messenger));
109 self->window = window;
110
111 // Listen to window state changes.
112 self->window_state_event_cb_id =
113 g_signal_connect_swapped(self->window, "window-state-event",
114 G_CALLBACK(window_state_event_cb), self);
115 self->window_state =
116 gdk_window_get_state(gtk_widget_get_window(GTK_WIDGET(self->window)));
117
118 return self;
119}
GLFWwindow * window
Definition main.cc:60
static gboolean window_state_event_cb(FlWindowStateMonitor *self, GdkEvent *event)
GdkWindow * gtk_widget_get_window(GtkWidget *widget)
Definition mock_gtk.cc:298
GdkWindowState gdk_window_get_state(GdkWindow *window)
Definition mock_gtk.cc:89

References gdk_window_get_state(), gtk_widget_get_window(), self, window, and window_state_event_cb().

Referenced by realize_cb(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), and TEST().

◆ G_DEFINE_TYPE()

G_DEFINE_TYPE ( FlWindowStateMonitor  ,
fl_window_state_monitor  ,
G_TYPE_OBJECT   
)

◆ is_hidden()

static gboolean is_hidden ( GdkWindowState  state)
static

Definition at line 54 of file fl_window_state_monitor.cc.

54 {
55 return (state & GDK_WINDOW_STATE_WITHDRAWN) ||
56 (state & GDK_WINDOW_STATE_ICONIFIED);
57}

Referenced by window_state_event_cb().

◆ send_lifecycle_state()

static void send_lifecycle_state ( FlWindowStateMonitor *  self,
const gchar *  lifecycle_state 
)
static

Definition at line 38 of file fl_window_state_monitor.cc.

39 {
40 g_autoptr(FlValue) value = fl_value_new_string(lifecycle_state);
41 g_autoptr(FlStringCodec) codec = fl_string_codec_new();
42 g_autoptr(GError) error = nullptr;
43 g_autoptr(GBytes) message =
44 fl_message_codec_encode_message(FL_MESSAGE_CODEC(codec), value, &error);
45 if (message == nullptr) {
46 g_warning("Failed to encoding lifecycle state message: %s", error->message);
47 return;
48 }
49
51 message, nullptr, nullptr, nullptr);
52}
int32_t value
G_MODULE_EXPORT void fl_binary_messenger_send_on_channel(FlBinaryMessenger *self, const gchar *channel, GBytes *message, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
g_autoptr(GMutexLocker) locker
G_MODULE_EXPORT GBytes * fl_message_codec_encode_message(FlMessageCodec *self, FlValue *message, GError **error)
G_BEGIN_DECLS GBytes * message
const uint8_t uint32_t uint32_t GError ** error
G_MODULE_EXPORT FlStringCodec * fl_string_codec_new()
G_MODULE_EXPORT FlValue * fl_value_new_string(const gchar *value)
Definition fl_value.cc:276
typedefG_BEGIN_DECLS struct _FlValue FlValue
Definition fl_value.h:42
static constexpr const char * kFlutterLifecycleChannel

References error, fl_binary_messenger_send_on_channel(), fl_message_codec_encode_message(), fl_string_codec_new(), fl_value_new_string(), g_autoptr(), kFlutterLifecycleChannel, message, self, and value.

Referenced by window_state_event_cb().

◆ window_state_event_cb()

static gboolean window_state_event_cb ( FlWindowStateMonitor *  self,
GdkEvent *  event 
)
static

Definition at line 60 of file fl_window_state_monitor.cc.

61 {
62 GdkWindowState state = event->window_state.new_window_state;
63 GdkWindowState previous_state = self->window_state;
64 self->window_state = state;
65 bool was_visible = !is_hidden(previous_state);
66 bool is_visible = !is_hidden(state);
67 bool was_focused = (previous_state & GDK_WINDOW_STATE_FOCUSED);
68 bool is_focused = (state & GDK_WINDOW_STATE_FOCUSED);
69
70 if (was_visible != is_visible || was_focused != is_focused) {
71 const gchar* lifecycle_state;
72 if (is_visible) {
73 lifecycle_state =
75 } else {
76 lifecycle_state = kAppLifecycleStateHidden;
77 }
78
79 send_lifecycle_state(self, lifecycle_state);
80 }
81
82 return FALSE;
83}
static gboolean is_focused(FlutterSemanticsFlags flags)
static constexpr const char * kAppLifecycleStateHidden
static gboolean is_hidden(GdkWindowState state)
static constexpr const char * kAppLifecycleStateResumed
static void send_lifecycle_state(FlWindowStateMonitor *self, const gchar *lifecycle_state)
static constexpr const char * kAppLifecycleStateInactive

References is_focused(), is_hidden(), kAppLifecycleStateHidden, kAppLifecycleStateInactive, kAppLifecycleStateResumed, self, and send_lifecycle_state().

Referenced by fl_window_state_monitor_new().

Variable Documentation

◆ kAppLifecycleStateHidden

constexpr const char* kAppLifecycleStateHidden
staticconstexpr
Initial value:
=
"AppLifecycleState.hidden"

Definition at line 17 of file fl_window_state_monitor.cc.

Referenced by window_state_event_cb().

◆ kAppLifecycleStateInactive

constexpr const char* kAppLifecycleStateInactive
staticconstexpr
Initial value:
=
"AppLifecycleState.inactive"

Definition at line 15 of file fl_window_state_monitor.cc.

Referenced by window_state_event_cb().

◆ kAppLifecycleStateResumed

constexpr const char* kAppLifecycleStateResumed
staticconstexpr
Initial value:
=
"AppLifecycleState.resumed"

Definition at line 13 of file fl_window_state_monitor.cc.

Referenced by window_state_event_cb().

◆ kFlutterLifecycleChannel

constexpr const char* kFlutterLifecycleChannel = "flutter/lifecycle"
staticconstexpr

Definition at line 11 of file fl_window_state_monitor.cc.

Referenced by send_lifecycle_state().