5#include "flutter/shell/platform/linux/public/flutter_linux/fl_plugin_registrar.h"
6#include "flutter/shell/platform/linux/fl_plugin_registrar_private.h"
11 fl_plugin_registrar_impl,
13 PLUGIN_REGISTRAR_IMPL,
16struct _FlPluginRegistrarImpl {
17 GObject parent_instance;
23 FlBinaryMessenger* messenger;
30 FlPluginRegistrarInterface* iface);
35 FlPluginRegistrarImpl,
36 fl_plugin_registrar_impl,
38 G_IMPLEMENT_INTERFACE(fl_plugin_registrar_get_type(),
41static
void fl_plugin_registrar_default_init(
42 FlPluginRegistrarInterface* iface) {}
45 FlPluginRegistrarImpl*
self = FL_PLUGIN_REGISTRAR_IMPL(
object);
47 if (
self->view !=
nullptr) {
48 g_object_remove_weak_pointer(G_OBJECT(
self->view),
49 reinterpret_cast<gpointer*
>(&(
self->view)));
52 g_clear_object(&
self->messenger);
53 g_clear_object(&
self->texture_registrar);
55 G_OBJECT_CLASS(fl_plugin_registrar_impl_parent_class)->dispose(
object);
59 FlPluginRegistrarImplClass* klass) {
64 FlPluginRegistrarImpl*
self = FL_PLUGIN_REGISTRAR_IMPL(registrar);
65 return self->messenger;
69 FlPluginRegistrarImpl*
self = FL_PLUGIN_REGISTRAR_IMPL(registrar);
70 return self->texture_registrar;
73static FlView*
get_view(FlPluginRegistrar* registrar) {
74 FlPluginRegistrarImpl*
self = FL_PLUGIN_REGISTRAR_IMPL(registrar);
79 FlPluginRegistrarInterface* iface) {
89 FlBinaryMessenger* messenger,
91 g_return_val_if_fail(view ==
nullptr || FL_IS_VIEW(view),
nullptr);
92 g_return_val_if_fail(FL_IS_BINARY_MESSENGER(messenger),
nullptr);
95 FlPluginRegistrarImpl*
self = FL_PLUGIN_REGISTRAR_IMPL(
96 g_object_new(fl_plugin_registrar_impl_get_type(),
nullptr));
99 FL_IS_PLUGIN_REGISTRAR_IMPL(
self);
102 if (view !=
nullptr) {
103 g_object_add_weak_pointer(G_OBJECT(view),
104 reinterpret_cast<gpointer*
>(&(
self->view)));
106 self->messenger = FL_BINARY_MESSENGER(g_object_ref(messenger));
107 self->texture_registrar =
110 return FL_PLUGIN_REGISTRAR(
self);
114 FlPluginRegistrar*
self) {
115 g_return_val_if_fail(FL_IS_PLUGIN_REGISTRAR(
self),
nullptr);
117 return FL_PLUGIN_REGISTRAR_GET_IFACE(
self)->get_messenger(
self);
121 FlPluginRegistrar*
self) {
122 g_return_val_if_fail(FL_IS_PLUGIN_REGISTRAR(
self),
nullptr);
124 return FL_PLUGIN_REGISTRAR_GET_IFACE(
self)->get_texture_registrar(
self);
128 g_return_val_if_fail(FL_IS_PLUGIN_REGISTRAR(
self),
nullptr);
130 return FL_PLUGIN_REGISTRAR_GET_IFACE(
self)->get_view(
self);
G_DEFINE_INTERFACE(FlKeyboardViewDelegate, fl_keyboard_view_delegate, G_TYPE_OBJECT) static void fl_keyboard_view_delegate_default_init(FlKeyboardViewDelegateInterface *iface)
G_DEFINE_TYPE_WITH_CODE(FlPluginRegistrarImpl, fl_plugin_registrar_impl, G_TYPE_OBJECT, G_IMPLEMENT_INTERFACE(fl_plugin_registrar_get_type(), fl_plugin_registrar_impl_iface_init)) static void fl_plugin_registrar_default_init(FlPluginRegistrarInterface *iface)
G_MODULE_EXPORT FlTextureRegistrar * fl_plugin_registrar_get_texture_registrar(FlPluginRegistrar *self)
G_MODULE_EXPORT FlView * fl_plugin_registrar_get_view(FlPluginRegistrar *self)
static void fl_plugin_registrar_impl_dispose(GObject *object)
FlPluginRegistrar * fl_plugin_registrar_new(FlView *view, FlBinaryMessenger *messenger, FlTextureRegistrar *texture_registrar)
static FlView * get_view(FlPluginRegistrar *registrar)
static void fl_plugin_registrar_impl_init(FlPluginRegistrarImpl *self)
static FlBinaryMessenger * get_messenger(FlPluginRegistrar *registrar)
static void fl_plugin_registrar_impl_class_init(FlPluginRegistrarImplClass *klass)
G_DECLARE_FINAL_TYPE(FlPluginRegistrarImpl, fl_plugin_registrar_impl, FL, PLUGIN_REGISTRAR_IMPL, GObject) struct _FlPluginRegistrarImpl
static FlTextureRegistrar * get_texture_registrar(FlPluginRegistrar *registrar)
static void fl_plugin_registrar_impl_iface_init(FlPluginRegistrarInterface *iface)
G_MODULE_EXPORT FlBinaryMessenger * fl_plugin_registrar_get_messenger(FlPluginRegistrar *self)
G_BEGIN_DECLS FlTextureRegistrar * texture_registrar