Convert Gestures plugin prefs to GSettings

Mon, 30 Oct 2023 21:55:21 -0500

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Mon, 30 Oct 2023 21:55:21 -0500
changeset 42451
b706b229d5f4
parent 42450
bd1327c022d4
child 42452
8b5a5b21d6da

Convert Gestures plugin prefs to GSettings

This does not actually make it compile, however.

Testing Done:
Compiled and checked that there were no new errors/warnings.

Reviewed at https://reviews.imfreedom.org/r/2751/

pidgin/plugins/gestures/gestures.c file | annotate | diff | comparison | revisions
pidgin/plugins/gestures/im.pidgin.Pidgin.plugin.Gestures.gschema.xml file | annotate | diff | comparison | revisions
pidgin/plugins/gestures/meson.build file | annotate | diff | comparison | revisions
--- a/pidgin/plugins/gestures/gestures.c	Mon Oct 30 12:28:23 2023 -0500
+++ b/pidgin/plugins/gestures/gestures.c	Mon Oct 30 21:55:21 2023 -0500
@@ -28,6 +28,7 @@
 #include "gstroke.h"
 
 #define GESTURES_PLUGIN_ID "gtk-x11-gestures"
+#define SETTINGS_SCHEMA_ID "im.pidgin.Pidgin.plugin.Gestures"
 
 static void
 stroke_close(GtkWidget *widget, void *data)
@@ -122,72 +123,16 @@
 		attach_signals(conv);
 }
 
-#if 0
 static void
-mouse_button_menu_cb(GtkComboBox *opt, gpointer data)
-{
-	int button = gtk_combo_box_get_active(opt);
-
-	gstroke_set_mouse_button(button + 2);
-}
-#endif
-
-static void
-toggle_draw_cb(GtkToggleButton *toggle, gpointer data)
-{
-	purple_prefs_set_bool("/plugins/gtk/X11/gestures/visual",
-		gtk_toggle_button_get_active(toggle));
-}
-
-static void
-visual_pref_cb(const char *name, PurplePrefType type, gconstpointer value,
-			   gpointer data)
-{
-	gstroke_set_draw_strokes((gboolean) GPOINTER_TO_INT(value) );
-}
-
-static GtkWidget *
-get_config_frame(PurplePlugin *plugin)
+settings_change_cb(GSettings *settings, char *key, G_GNUC_UNUSED gpointer data)
 {
-	GtkWidget *ret;
-	GtkWidget *vbox;
-	GtkWidget *toggle;
-#if 0
-	GtkWidget *opt;
-#endif
-
-	/* Outside container */
-	ret = gtk_box_new(GTK_ORIENTATION_VERTICAL, 18);
-	gtk_container_set_border_width(GTK_CONTAINER(ret), 12);
-
-	/* Configuration frame */
-	vbox = pidgin_make_frame(ret, _("Mouse Gestures Configuration"));
-
-#if 0
-	/* Mouse button drop-down menu */
-	opt = gtk_combo_box_new_text();
-
-	gtk_combo_box_append_text(_("Middle mouse button"));
-	gtk_combo_box_append_text(_("Right mouse button"));
-	g_signal_connect(G_OBJECT(opt), "changed",
-	                 G_CALLBACK(mouse_button_menu_cb), NULL);
-
-	gtk_box_pack_start(GTK_BOX(vbox), opt, FALSE, FALSE, 0);
-	gtk_combo_box_set_active(GTK_COMBO_BOX(opt),
-							gstroke_get_mouse_button() - 2);
-#endif
-
-	/* "Visual gesture display" checkbox */
-	toggle = gtk_check_button_new_with_mnemonic(_("_Visual gesture display"));
-	gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0);
-	gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle),
-			purple_prefs_get_bool("/plugins/gtk/X11/gestures/visual"));
-	g_signal_connect(G_OBJECT(toggle), "toggled",
-					 G_CALLBACK(toggle_draw_cb), NULL);
-
-	gtk_widget_set_visible(ret, TRUE);
-
-	return ret;
+	if(purple_strequal(key, "button")) {
+		gstroke_set_mouse_button(g_settings_get_enum(settings, key));
+	} else if(purple_strequal(key, "visual")) {
+		gstroke_set_draw_strokes(g_settings_get_boolean(settings, key));
+	} else {
+		g_warning("Got gestures settings change for unknown key: %s", key);
+	}
 }
 
 static GPluginPluginInfo *
@@ -217,7 +162,7 @@
 		"authors",              authors,
 		"website",              PURPLE_WEBSITE,
 		"abi-version",          PURPLE_ABI_VERSION,
-		"gtk-config-frame-cb",  get_config_frame,
+		"settings-schema",      SETTINGS_SCHEMA_ID,
 		NULL
 	);
 }
@@ -225,19 +170,19 @@
 static gboolean
 gestures_load(GPluginPlugin *plugin, GError **error)
 {
+	GSettings *settings = NULL;
 	PurpleConversation *conv;
 	PurpleConversationManager *manager;
 	GList *list;
 
-	purple_prefs_add_none("/plugins/gtk");
-	purple_prefs_add_none("/plugins/gtk/X11");
-	purple_prefs_add_none("/plugins/gtk/X11/gestures");
-	purple_prefs_add_bool("/plugins/gtk/X11/gestures/visual", FALSE);
+	settings = g_settings_new_with_backend(SETTINGS_SCHEMA_ID,
+	                                       purple_core_get_settings_backend());
 
-	purple_prefs_connect_callback(plugin,
-		"/plugins/gtk/X11/gestures/visual", visual_pref_cb, NULL);
-	gstroke_set_draw_strokes(purple_prefs_get_bool(
-		"/plugins/gtk/X11/gestures/visual"));
+	g_signal_connect(settings, "changed",
+	                 G_CALLBACK(settings_change_cb), NULL);
+	gstroke_set_mouse_button(g_settings_get_enum(settings, "button"));
+	gstroke_set_draw_strokes(g_settings_get_boolean(settings, "visual"));
+	g_object_unref(settings);
 
 	manager = purple_conversation_manager_get_default();
 	list = purple_conversation_manager_get_all(manager);
@@ -263,7 +208,8 @@
 }
 
 static gboolean
-gestures_unload(GPluginPlugin *plugin, gboolean shutdown, GError **error)
+gestures_unload(G_GNUC_UNUSED GPluginPlugin *plugin,
+                G_GNUC_UNUSED gboolean shutdown, G_GNUC_UNUSED GError **error)
 {
 	PurpleConversation *conv;
 	PurpleConversationManager *manager;
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/plugins/gestures/im.pidgin.Pidgin.plugin.Gestures.gschema.xml	Mon Oct 30 21:55:21 2023 -0500
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<schemalist>
+  <enum id="im.pidgin.Pidgin.plugin.Gestures.Button">
+    <value nick="Middle" value="2"/>
+    <value nick="Right" value="3"/>
+  </enum>
+
+  <schema path="/pidgin/plugins/gestures/" id="im.pidgin.Pidgin.plugin.Gestures">
+    <key name="button" enum="im.pidgin.Pidgin.plugin.Gestures.Button">
+      <default>"Middle"</default>
+      <summary>Mouse button</summary>
+      <description>
+        The mouse button to use for initiating gestures.
+      </description>
+    </key>
+
+    <key name="visual" type="b">
+      <default>false</default>
+      <summary>Visual gesture display</summary>
+      <description>
+        Whether to display gestures visually as they are drawn.
+      </description>
+    </key>
+  </schema>
+</schemalist>
--- a/pidgin/plugins/gestures/meson.build	Mon Oct 30 12:28:23 2023 -0500
+++ b/pidgin/plugins/gestures/meson.build	Mon Oct 30 21:55:21 2023 -0500
@@ -13,4 +13,14 @@
     build_by_default : false,  # FIXME: Port to GTK4
     install : false, install_dir : PIDGIN_PLUGINDIR)
 
+settings_schemas = [
+  'im.pidgin.Pidgin.plugin.Gestures.gschema.xml',
+]
+
+install_data(settings_schemas, install_dir: schemas_dir)
+gnome.post_install(glib_compile_schemas: true)
+
+# Compile the schemas in the current directory; this is only useful for testing
+gnome.compile_schemas(depend_files: files(settings_schemas))
+
 devenv.append('PIDGIN_PLUGIN_PATH', meson.current_build_dir())

mercurial