#include "flutter/shell/platform/linux/fl_windowing_handler.h"
#include "flutter/shell/platform/linux/fl_windowing_channel.h"
#include "flutter/shell/platform/linux/public/flutter_linux/fl_view.h"
Go to the source code of this file.
Classes | |
struct | FlWindowingHandlerPrivate |
Enumerations | |
enum | { SIGNAL_CREATE_WINDOW, LAST_SIGNAL } |
Functions | |
G_DEFINE_TYPE_WITH_PRIVATE (FlWindowingHandler, fl_windowing_handler, G_TYPE_OBJECT) typedef struct | |
static WindowData * | window_data_new (GtkWindow *window, FlView *view) |
static void | window_data_free (WindowData *data) |
static void | first_frame_cb (FlView *view, WindowData *data) |
static WindowData * | get_window_data (FlWindowingHandler *self, int64_t view_id) |
static GtkWindow * | fl_windowing_handler_create_window (FlWindowingHandler *handler, FlView *view) |
static FlMethodResponse * | create_regular (FlWindowingSize *size, FlWindowingSize *min_size, FlWindowingSize *max_size, const gchar *title, FlWindowState state, gpointer user_data) |
static FlMethodResponse * | modify_regular (int64_t view_id, FlWindowingSize *size, const gchar *title, FlWindowState state, gpointer user_data) |
static FlMethodResponse * | destroy_window (int64_t view_id, gpointer user_data) |
static void | fl_windowing_handler_dispose (GObject *object) |
static void | fl_windowing_handler_class_init (FlWindowingHandlerClass *klass) |
static void | fl_windowing_handler_init (FlWindowingHandler *self) |
FlWindowingHandler * | fl_windowing_handler_new (FlEngine *engine) |
Variables | |
static guint | signals [LAST_SIGNAL] |
WindowData | |
static FlWindowingChannelVTable | windowing_channel_vtable |
anonymous enum |
|
static |
Definition at line 69 of file fl_windowing_handler.cc.
References first_frame_cb(), fl_method_error_response_new(), fl_view_get_id(), fl_view_new_for_engine(), FL_WINDOW_STATE_MAXIMIZED, FL_WINDOW_STATE_MINIMIZED, FL_WINDOW_STATE_RESTORED, FL_WINDOW_STATE_UNDEFINED, fl_windowing_channel_make_create_regular_response(), g_signal_emit(), FlWindowingSize::height, priv, SIGNAL_CREATE_WINDOW, signals, state, user_data, view, FlWindowingSize::width, window, window_data_new(), and WindowData.
|
static |
Definition at line 200 of file fl_windowing_handler.cc.
References fl_method_error_response_new(), fl_windowing_channel_make_destroy_window_response(), get_window_data(), priv, user_data, and WindowData.
|
static |
Definition at line 47 of file fl_windowing_handler.cc.
Referenced by create_regular().
|
static |
Definition at line 232 of file fl_windowing_handler.cc.
References fl_windowing_handler_create_window(), fl_windowing_handler_dispose(), SIGNAL_CREATE_WINDOW, and signals.
|
static |
Definition at line 60 of file fl_windowing_handler.cc.
Referenced by fl_windowing_handler_class_init().
|
static |
Definition at line 219 of file fl_windowing_handler.cc.
References priv.
Referenced by fl_windowing_handler_class_init().
|
static |
FlWindowingHandler* fl_windowing_handler_new | ( | FlEngine * | engine | ) |
FlWindowingHandler:
#FlWindowingHandler is a handler that implements the shell side of SystemChannels.windowing from the Flutter services library. fl_windowing_handler_new: @engine: an #FlEngine.
Creates a new handler that implements SystemChannels.windowing from the Flutter services library.
Returns: a new #FlWindowingHandler
Definition at line 260 of file fl_windowing_handler.cc.
References fl_engine_get_binary_messenger(), fl_windowing_channel_new(), priv, and windowing_channel_vtable.
Referenced by fl_engine_new_full(), and TEST().
G_DEFINE_TYPE_WITH_PRIVATE | ( | FlWindowingHandler | , |
fl_windowing_handler | , | ||
G_TYPE_OBJECT | |||
) |
Definition at line 22 of file fl_windowing_handler.cc.
|
static |
Definition at line 51 of file fl_windowing_handler.cc.
References priv, and WindowData.
Referenced by destroy_window(), and modify_regular().
|
static |
Definition at line 154 of file fl_windowing_handler.cc.
References fl_method_error_response_new(), FL_WINDOW_STATE_MAXIMIZED, FL_WINDOW_STATE_MINIMIZED, FL_WINDOW_STATE_RESTORED, FL_WINDOW_STATE_UNDEFINED, fl_windowing_channel_make_modify_regular_response(), get_window_data(), FlWindowingSize::height, state, user_data, FlWindowingSize::width, and WindowData.
|
static |
|
static |
Definition at line 32 of file fl_windowing_handler.cc.
References view, window, and WindowData.
Referenced by create_regular().
|
static |
Definition at line 20 of file fl_windowing_handler.cc.
Referenced by create_regular(), and fl_windowing_handler_class_init().
WindowData |
Definition at line 30 of file fl_windowing_handler.cc.
Referenced by create_regular(), destroy_window(), get_window_data(), modify_regular(), and window_data_new().
|
static |
Definition at line 254 of file fl_windowing_handler.cc.
Referenced by fl_windowing_handler_new().