mirror of
https://github.com/kphanipavan/modal_progress_hud_nsn.git
synced 2025-12-15 20:22:49 -07:00
More platforms' support, upgraded gradle kotlin deps
This commit is contained in:
25
linux/CMakeLists.txt
Normal file
25
linux/CMakeLists.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
set(PROJECT_NAME "modal_progress_hud_nsn")
|
||||
project(${PROJECT_NAME} LANGUAGES CXX)
|
||||
|
||||
# This value is used when generating builds using this plugin, so it must
|
||||
# not be changed
|
||||
set(PLUGIN_NAME "modal_progress_hud_nsn_plugin")
|
||||
|
||||
add_library(${PLUGIN_NAME} SHARED
|
||||
"modal_progress_hud_nsn_plugin.cc"
|
||||
)
|
||||
apply_standard_settings(${PLUGIN_NAME})
|
||||
set_target_properties(${PLUGIN_NAME} PROPERTIES
|
||||
CXX_VISIBILITY_PRESET hidden)
|
||||
target_compile_definitions(${PLUGIN_NAME} PRIVATE FLUTTER_PLUGIN_IMPL)
|
||||
target_include_directories(${PLUGIN_NAME} INTERFACE
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/include")
|
||||
target_link_libraries(${PLUGIN_NAME} PRIVATE flutter)
|
||||
target_link_libraries(${PLUGIN_NAME} PRIVATE PkgConfig::GTK)
|
||||
|
||||
# List of absolute paths to libraries that should be bundled with the plugin
|
||||
set(modal_progress_hud_nsn_bundled_libraries
|
||||
""
|
||||
PARENT_SCOPE
|
||||
)
|
||||
@@ -0,0 +1,26 @@
|
||||
#ifndef FLUTTER_PLUGIN_MODAL_PROGRESS_HUD_NSN_PLUGIN_H_
|
||||
#define FLUTTER_PLUGIN_MODAL_PROGRESS_HUD_NSN_PLUGIN_H_
|
||||
|
||||
#include <flutter_linux/flutter_linux.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#ifdef FLUTTER_PLUGIN_IMPL
|
||||
#define FLUTTER_PLUGIN_EXPORT __attribute__((visibility("default")))
|
||||
#else
|
||||
#define FLUTTER_PLUGIN_EXPORT
|
||||
#endif
|
||||
|
||||
typedef struct _ModalProgressHudNsnPlugin ModalProgressHudNsnPlugin;
|
||||
typedef struct {
|
||||
GObjectClass parent_class;
|
||||
} ModalProgressHudNsnPluginClass;
|
||||
|
||||
FLUTTER_PLUGIN_EXPORT GType modal_progress_hud_nsn_plugin_get_type();
|
||||
|
||||
FLUTTER_PLUGIN_EXPORT void modal_progress_hud_nsn_plugin_register_with_registrar(
|
||||
FlPluginRegistrar* registrar);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif // FLUTTER_PLUGIN_MODAL_PROGRESS_HUD_NSN_PLUGIN_H_
|
||||
70
linux/modal_progress_bar_hud_nsn_plugin.cc
Normal file
70
linux/modal_progress_bar_hud_nsn_plugin.cc
Normal file
@@ -0,0 +1,70 @@
|
||||
#include "include/modal_progress_bar_hud_nsn/modal_progress_bar_hud_nsn_plugin.h"
|
||||
|
||||
#include <flutter_linux/flutter_linux.h>
|
||||
#include <gtk/gtk.h>
|
||||
#include <sys/utsname.h>
|
||||
|
||||
#include <cstring>
|
||||
|
||||
#define MODAL_PROGRESS_BAR_HUD_NSN_PLUGIN(obj) \
|
||||
(G_TYPE_CHECK_INSTANCE_CAST((obj), modal_progress_bar_hud_nsn_plugin_get_type(), \
|
||||
ModalProgressBarHudNsnPlugin))
|
||||
|
||||
struct _ModalProgressBarHudNsnPlugin {
|
||||
GObject parent_instance;
|
||||
};
|
||||
|
||||
G_DEFINE_TYPE(ModalProgressBarHudNsnPlugin, modal_progress_bar_hud_nsn_plugin, g_object_get_type())
|
||||
|
||||
// Called when a method call is received from Flutter.
|
||||
static void modal_progress_bar_hud_nsn_plugin_handle_method_call(
|
||||
ModalProgressBarHudNsnPlugin* self,
|
||||
FlMethodCall* method_call) {
|
||||
g_autoptr(FlMethodResponse) response = nullptr;
|
||||
|
||||
const gchar* method = fl_method_call_get_name(method_call);
|
||||
|
||||
if (strcmp(method, "getPlatformVersion") == 0) {
|
||||
struct utsname uname_data = {};
|
||||
uname(&uname_data);
|
||||
g_autofree gchar *version = g_strdup_printf("Linux %s", uname_data.version);
|
||||
g_autoptr(FlValue) result = fl_value_new_string(version);
|
||||
response = FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
} else {
|
||||
response = FL_METHOD_RESPONSE(fl_method_not_implemented_response_new());
|
||||
}
|
||||
|
||||
fl_method_call_respond(method_call, response, nullptr);
|
||||
}
|
||||
|
||||
static void modal_progress_bar_hud_nsn_plugin_dispose(GObject* object) {
|
||||
G_OBJECT_CLASS(modal_progress_bar_hud_nsn_plugin_parent_class)->dispose(object);
|
||||
}
|
||||
|
||||
static void modal_progress_bar_hud_nsn_plugin_class_init(ModalProgressBarHudNsnPluginClass* klass) {
|
||||
G_OBJECT_CLASS(klass)->dispose = modal_progress_bar_hud_nsn_plugin_dispose;
|
||||
}
|
||||
|
||||
static void modal_progress_bar_hud_nsn_plugin_init(ModalProgressBarHudNsnPlugin* self) {}
|
||||
|
||||
static void method_call_cb(FlMethodChannel* channel, FlMethodCall* method_call,
|
||||
gpointer user_data) {
|
||||
ModalProgressBarHudNsnPlugin* plugin = MODAL_PROGRESS_BAR_HUD_NSN_PLUGIN(user_data);
|
||||
modal_progress_bar_hud_nsn_plugin_handle_method_call(plugin, method_call);
|
||||
}
|
||||
|
||||
void modal_progress_bar_hud_nsn_plugin_register_with_registrar(FlPluginRegistrar* registrar) {
|
||||
ModalProgressBarHudNsnPlugin* plugin = MODAL_PROGRESS_BAR_HUD_NSN_PLUGIN(
|
||||
g_object_new(modal_progress_bar_hud_nsn_plugin_get_type(), nullptr));
|
||||
|
||||
g_autoptr(FlStandardMethodCodec) codec = fl_standard_method_codec_new();
|
||||
g_autoptr(FlMethodChannel) channel =
|
||||
fl_method_channel_new(fl_plugin_registrar_get_messenger(registrar),
|
||||
"modal_progress_bar_hud_nsn",
|
||||
FL_METHOD_CODEC(codec));
|
||||
fl_method_channel_set_method_call_handler(channel, method_call_cb,
|
||||
g_object_ref(plugin),
|
||||
g_object_unref);
|
||||
|
||||
g_object_unref(plugin);
|
||||
}
|
||||
70
linux/modal_progress_hud_nsn_plugin.cc
Normal file
70
linux/modal_progress_hud_nsn_plugin.cc
Normal file
@@ -0,0 +1,70 @@
|
||||
#include "include/modal_progress_hud_nsn/modal_progress_hud_nsn_plugin.h"
|
||||
|
||||
#include <flutter_linux/flutter_linux.h>
|
||||
#include <gtk/gtk.h>
|
||||
#include <sys/utsname.h>
|
||||
|
||||
#include <cstring>
|
||||
|
||||
#define MODAL_PROGRESS_HUD_NSN_PLUGIN(obj) \
|
||||
(G_TYPE_CHECK_INSTANCE_CAST((obj), modal_progress_hud_nsn_plugin_get_type(), \
|
||||
ModalProgressHudNsnPlugin))
|
||||
|
||||
struct _ModalProgressHudNsnPlugin {
|
||||
GObject parent_instance;
|
||||
};
|
||||
|
||||
G_DEFINE_TYPE(ModalProgressHudNsnPlugin, modal_progress_hud_nsn_plugin, g_object_get_type())
|
||||
|
||||
// Called when a method call is received from Flutter.
|
||||
static void modal_progress_hud_nsn_plugin_handle_method_call(
|
||||
ModalProgressHudNsnPlugin* self,
|
||||
FlMethodCall* method_call) {
|
||||
g_autoptr(FlMethodResponse) response = nullptr;
|
||||
|
||||
const gchar* method = fl_method_call_get_name(method_call);
|
||||
|
||||
if (strcmp(method, "getPlatformVersion") == 0) {
|
||||
struct utsname uname_data = {};
|
||||
uname(&uname_data);
|
||||
g_autofree gchar *version = g_strdup_printf("Linux %s", uname_data.version);
|
||||
g_autoptr(FlValue) result = fl_value_new_string(version);
|
||||
response = FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
} else {
|
||||
response = FL_METHOD_RESPONSE(fl_method_not_implemented_response_new());
|
||||
}
|
||||
|
||||
fl_method_call_respond(method_call, response, nullptr);
|
||||
}
|
||||
|
||||
static void modal_progress_hud_nsn_plugin_dispose(GObject* object) {
|
||||
G_OBJECT_CLASS(modal_progress_hud_nsn_plugin_parent_class)->dispose(object);
|
||||
}
|
||||
|
||||
static void modal_progress_hud_nsn_plugin_class_init(ModalProgressHudNsnPluginClass* klass) {
|
||||
G_OBJECT_CLASS(klass)->dispose = modal_progress_hud_nsn_plugin_dispose;
|
||||
}
|
||||
|
||||
static void modal_progress_hud_nsn_plugin_init(ModalProgressHudNsnPlugin* self) {}
|
||||
|
||||
static void method_call_cb(FlMethodChannel* channel, FlMethodCall* method_call,
|
||||
gpointer user_data) {
|
||||
ModalProgressHudNsnPlugin* plugin = MODAL_PROGRESS_HUD_NSN_PLUGIN(user_data);
|
||||
modal_progress_hud_nsn_plugin_handle_method_call(plugin, method_call);
|
||||
}
|
||||
|
||||
void modal_progress_hud_nsn_plugin_register_with_registrar(FlPluginRegistrar* registrar) {
|
||||
ModalProgressHudNsnPlugin* plugin = MODAL_PROGRESS_HUD_NSN_PLUGIN(
|
||||
g_object_new(modal_progress_hud_nsn_plugin_get_type(), nullptr));
|
||||
|
||||
g_autoptr(FlStandardMethodCodec) codec = fl_standard_method_codec_new();
|
||||
g_autoptr(FlMethodChannel) channel =
|
||||
fl_method_channel_new(fl_plugin_registrar_get_messenger(registrar),
|
||||
"modal_progress_hud_nsn",
|
||||
FL_METHOD_CODEC(codec));
|
||||
fl_method_channel_set_method_call_handler(channel, method_call_cb,
|
||||
g_object_ref(plugin),
|
||||
g_object_unref);
|
||||
|
||||
g_object_unref(plugin);
|
||||
}
|
||||
Reference in New Issue
Block a user