Flutter Engine Uber Docs
Docs for the entire Flutter Engine repo.
 
Loading...
Searching...
No Matches
fl_window_state_monitor.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
10
11static constexpr const char* kFlutterLifecycleChannel = "flutter/lifecycle";
12
13static constexpr const char* kAppLifecycleStateResumed =
14 "AppLifecycleState.resumed";
15static constexpr const char* kAppLifecycleStateInactive =
16 "AppLifecycleState.inactive";
17static constexpr const char* kAppLifecycleStateHidden =
18 "AppLifecycleState.hidden";
19
22
23 // Messenger to communicate with engine.
24 FlBinaryMessenger* messenger;
25
26 // Window being monitored.
27 GtkWindow* window;
28
29 // Current state information.
30 GdkWindowState window_state;
31};
32
33G_DEFINE_TYPE(FlWindowStateMonitor, fl_window_state_monitor, G_TYPE_OBJECT);
34
35static void send_lifecycle_state(FlWindowStateMonitor* self,
36 const gchar* lifecycle_state) {
37 g_autoptr(FlValue) value = fl_value_new_string(lifecycle_state);
38 g_autoptr(FlStringCodec) codec = fl_string_codec_new();
39 g_autoptr(GError) error = nullptr;
40 g_autoptr(GBytes) message =
41 fl_message_codec_encode_message(FL_MESSAGE_CODEC(codec), value, &error);
42 if (message == nullptr) {
43 g_warning("Failed to encoding lifecycle state message: %s", error->message);
44 return;
45 }
46
48 message, nullptr, nullptr, nullptr);
49}
50
51static gboolean is_hidden(GdkWindowState state) {
52 return (state & GDK_WINDOW_STATE_WITHDRAWN) ||
53 (state & GDK_WINDOW_STATE_ICONIFIED);
54}
55
56// Signal handler for GtkWindow::window-state-event
57static gboolean window_state_event_cb(FlWindowStateMonitor* self,
58 GdkEvent* event) {
59 GdkWindowState state = event->window_state.new_window_state;
60 GdkWindowState previous_state = self->window_state;
61 self->window_state = state;
62 bool was_visible = !is_hidden(previous_state);
63 bool is_visible = !is_hidden(state);
64 bool was_focused = (previous_state & GDK_WINDOW_STATE_FOCUSED);
65 bool is_focused = (state & GDK_WINDOW_STATE_FOCUSED);
66
67 if (was_visible != is_visible || was_focused != is_focused) {
68 const gchar* lifecycle_state;
69 if (is_visible) {
70 lifecycle_state =
72 } else {
73 lifecycle_state = kAppLifecycleStateHidden;
74 }
75
76 send_lifecycle_state(self, lifecycle_state);
77 }
78
79 return FALSE;
80}
81
82static void fl_window_state_monitor_dispose(GObject* object) {
83 FlWindowStateMonitor* self = FL_WINDOW_STATE_MONITOR(object);
84
85 g_clear_object(&self->messenger);
86
87 G_OBJECT_CLASS(fl_window_state_monitor_parent_class)->dispose(object);
88}
89
91 FlWindowStateMonitorClass* klass) {
92 G_OBJECT_CLASS(klass)->dispose = fl_window_state_monitor_dispose;
93}
94
95static void fl_window_state_monitor_init(FlWindowStateMonitor* self) {}
96
97FlWindowStateMonitor* fl_window_state_monitor_new(FlBinaryMessenger* messenger,
98 GtkWindow* window) {
99 FlWindowStateMonitor* self = FL_WINDOW_STATE_MONITOR(
100 g_object_new(fl_window_state_monitor_get_type(), nullptr));
101 self->messenger = FL_BINARY_MESSENGER(g_object_ref(messenger));
102 self->window = window;
103
104 // Listen to window state changes.
105 g_signal_connect_object(self->window, "window-state-event",
106 G_CALLBACK(window_state_event_cb), self,
107 G_CONNECT_SWAPPED);
108 self->window_state =
109 gdk_window_get_state(gtk_widget_get_window(GTK_WIDGET(self->window)));
110
111 return self;
112}
int32_t value
GLFWwindow * window
Definition main.cc:60
const char * message
g_autoptr(FlEngine) engine
static gboolean is_focused(FlutterSemanticsFlags flags)
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_MODULE_EXPORT GBytes * fl_message_codec_encode_message(FlMessageCodec *self, FlValue *message, GError **error)
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 * kAppLifecycleStateHidden
static void fl_window_state_monitor_dispose(GObject *object)
static gboolean is_hidden(GdkWindowState state)
G_DEFINE_TYPE(FlWindowStateMonitor, fl_window_state_monitor, G_TYPE_OBJECT)
FlWindowStateMonitor * fl_window_state_monitor_new(FlBinaryMessenger *messenger, GtkWindow *window)
static constexpr const char * kAppLifecycleStateResumed
static constexpr const char * kFlutterLifecycleChannel
static gboolean window_state_event_cb(FlWindowStateMonitor *self, GdkEvent *event)
static void fl_window_state_monitor_init(FlWindowStateMonitor *self)
static void fl_window_state_monitor_class_init(FlWindowStateMonitorClass *klass)
static void send_lifecycle_state(FlWindowStateMonitor *self, const gchar *lifecycle_state)
static constexpr const char * kAppLifecycleStateInactive
GdkWindow * gtk_widget_get_window(GtkWidget *widget)
Definition mock_gtk.cc:309
GdkWindowState gdk_window_get_state(GdkWindow *window)
Definition mock_gtk.cc:100