1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
/*
* Copyright (C) 2024 Tether Operations Limited
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Author: Arun Mani J <arunmani@peartree.to>
*/
#define G_LOG_DOMAIN "phosh-custom-quick-settings"
/**
* A widget to test custom quick settings
*
* BUILDIR $ ./tools/run-tool ./tools/custom-quick-settings
*/
#include "phosh-config.h"
#include <handy.h>
#include "plugin-loader.h"
#include "quick-setting.h"
#include "quick-settings-box.h"
static void
css_setup (void)
{
g_autoptr (GtkCssProvider) provider = NULL;
g_autoptr (GFile) file = NULL;
g_autoptr (GError) error = NULL;
provider = gtk_css_provider_new ();
file = g_file_new_for_uri ("resource:///mobi/phosh/stylesheet/adwaita-dark.css");
if (!gtk_css_provider_load_from_file (provider, file, &error)) {
g_warning ("Failed to load CSS file: %s", error->message);
return;
}
gtk_style_context_add_provider_for_screen (gdk_screen_get_default (),
GTK_STYLE_PROVIDER (provider),
GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
}
static GStrv
get_plugin_dirs (GStrv plugins)
{
g_autoptr (GPtrArray) dirs = g_ptr_array_new_with_free_func (g_free);
for (int i = 0; i < g_strv_length (plugins); i++) {
char *dir = g_strdup_printf (BUILD_DIR "/plugins/%s", plugins[i]);
g_ptr_array_add (dirs, dir);
}
g_ptr_array_add (dirs, NULL);
return (GStrv) g_ptr_array_steal (dirs, NULL);
}
static GtkWidget *
setup_plugins (GStrv plugin_dirs, GStrv plugins, const char *const *enabled)
{
GtkWidget *box;
g_autoptr (PhoshPluginLoader) loader = NULL;
box = phosh_quick_settings_box_new (3, 12);
loader = phosh_plugin_loader_new (plugin_dirs, PHOSH_EXTENSION_POINT_QUICK_SETTING_WIDGET);
for (int i = 0; i < g_strv_length (plugins); i++) {
char *plugin = plugins[i];
GtkWidget* widget;
if (!g_strv_contains (enabled, plugin))
continue;
widget = phosh_plugin_loader_load_plugin (loader, plugin);
if (widget == NULL) {
g_warning ("Unable to load plugin: %s", plugin);
} else {
g_print ("Adding custom quick setting '%s'\n", plugin);
gtk_container_add (GTK_CONTAINER (box), widget);
}
}
return box;
}
int
main (int argc, char *argv[])
{
GtkWidget *win;
GtkWidget *box;
g_autoptr (GOptionContext) opt_context = NULL;
g_autoptr (GError) err = NULL;
g_autoptr (GStrvBuilder) plugins_builder = g_strv_builder_new ();
g_auto (GStrv) plugins = g_strsplit (PLUGINS, " ", -1);
g_auto (GStrv) plugin_dirs = NULL;
g_auto (GStrv) enabled = NULL;
const GOptionEntry options [] = {
{ NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL }
};
opt_context = g_option_context_new ("- spawn your quick setting");
g_option_context_add_main_entries (opt_context, options, NULL);
g_option_context_add_group (opt_context, gtk_get_option_group (FALSE));
if (!g_option_context_parse (opt_context, &argc, &argv, &err)) {
g_warning ("%s", err->message);
return 1;
}
gtk_init (&argc, &argv);
hdy_init ();
css_setup ();
if (argc < 2) {
g_print ("Pass at least one plugin name\n");
return 1;
}
for (int i = 1; i < argc; i++)
g_strv_builder_add (plugins_builder, argv[i]);
enabled = g_strv_builder_end (plugins_builder);
g_object_set (gtk_settings_get_default (),
"gtk-application-prefer-dark-theme", TRUE,
NULL);
win = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_window_set_title (GTK_WINDOW (win), "Custom Quick Settings");
g_signal_connect (win, "delete-event", G_CALLBACK (gtk_main_quit), NULL);
gtk_widget_set_visible (win, TRUE);
plugin_dirs = get_plugin_dirs (plugins);
box = setup_plugins (plugin_dirs, plugins, (const char * const *)enabled);
gtk_widget_set_visible (box, TRUE);
gtk_container_add (GTK_CONTAINER (win), box);
gtk_main ();
return 0;
}
|