forked from pool/gnome-control-center
3c01e29ae8
- Update gnome-control-center-allow-extra-tools-in-shell.patch: + Fix leak of strings. + Add tools with category X-GNOME-DesktopSettings into the personal g-c-c category to enable itweb-settings. + Disable logspam in absence of optional components (bnc#866235 bsc#952008). - Specfile cleanup: + fix one mismatched patch tag; + abbreviate lengthy summary of one patch tag - Changelog format: + remove trailing spaces OBS-URL: https://build.opensuse.org/request/show/424514 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-control-center?expand=0&rev=327
144 lines
4.8 KiB
Diff
144 lines
4.8 KiB
Diff
From 8469e4ac57f3b5d3efbf533ba23512612997ffff Mon Sep 17 00:00:00 2001
|
|
From: Felix Zhang <fezhang@suse.com>
|
|
Date: Fri, 2 Sep 2016 14:55:12 +0800
|
|
Subject: [PATCH] allow extra tools in shell
|
|
|
|
---
|
|
shell/cc-panel-loader.c | 28 ++++++++++++++++++++++++++--
|
|
shell/cc-window.c | 41 +++++++++++++++++++++++++++++++++++++++++
|
|
2 files changed, 67 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/shell/cc-panel-loader.c b/shell/cc-panel-loader.c
|
|
index de9c5df..e24fc6e 100644
|
|
--- a/shell/cc-panel-loader.c
|
|
+++ b/shell/cc-panel-loader.c
|
|
@@ -102,6 +102,12 @@ static struct {
|
|
#ifdef BUILD_WACOM
|
|
PANEL_TYPE("wacom", cc_wacom_panel_get_type ),
|
|
#endif
|
|
+ PANEL_TYPE("ca.desrt.dconf-editor", NULL ),
|
|
+ PANEL_TYPE("gnome-tweak-tool", NULL ),
|
|
+ PANEL_TYPE("gpk-prefs", NULL ),
|
|
+ PANEL_TYPE("itweb-settings", NULL ),
|
|
+ PANEL_TYPE("tracker-preferences", NULL ),
|
|
+ PANEL_TYPE("YaST", NULL ),
|
|
};
|
|
|
|
GList *
|
|
@@ -133,7 +139,8 @@ parse_categories (GDesktopAppInfo *app)
|
|
{
|
|
if (strcmp (split[i], "HardwareSettings") == 0)
|
|
retval = CC_CATEGORY_HARDWARE;
|
|
- else if (strcmp (split[i], "X-GNOME-PersonalSettings") == 0)
|
|
+ else if ((strcmp (split[i], "X-GNOME-PersonalSettings") == 0)
|
|
+ || (strcmp (split[i], "X-GNOME-DesktopSettings") == 0))
|
|
retval = CC_CATEGORY_PERSONAL;
|
|
else if (strcmp (split[i], "X-GNOME-SystemSettings") == 0)
|
|
retval = CC_CATEGORY_SYSTEM;
|
|
@@ -158,17 +165,33 @@ cc_panel_loader_fill_model (CcShellModel *model)
|
|
{
|
|
GDesktopAppInfo *app;
|
|
char *desktop_name;
|
|
+ char *name;
|
|
int category;
|
|
|
|
+#ifndef CC_PANEL_LOADER_NO_GTYPES
|
|
+ if (all_panels[i].get_type == NULL)
|
|
+ {
|
|
+ desktop_name = g_strconcat (all_panels[i].name,
|
|
+ ".desktop", NULL);
|
|
+ name = g_strconcat ("suse-",all_panels[i].name, NULL);
|
|
+ }
|
|
+ else
|
|
+#endif
|
|
+ {
|
|
desktop_name = g_strconcat ("gnome-", all_panels[i].name,
|
|
"-panel.desktop", NULL);
|
|
+ name = g_strconcat (all_panels[i].name, NULL);
|
|
+ }
|
|
app = g_desktop_app_info_new (desktop_name);
|
|
g_free (desktop_name);
|
|
|
|
if (app == NULL)
|
|
{
|
|
+ if (!g_str_has_prefix(name, "suse-"))
|
|
+ {
|
|
g_warning ("Ignoring broken panel %s (missing desktop file)",
|
|
all_panels[i].name);
|
|
+ }
|
|
continue;
|
|
}
|
|
|
|
@@ -176,7 +199,8 @@ cc_panel_loader_fill_model (CcShellModel *model)
|
|
if (G_UNLIKELY (category < 0))
|
|
continue;
|
|
|
|
- cc_shell_model_add_item (model, category, G_APP_INFO (app), all_panels[i].name);
|
|
+ cc_shell_model_add_item (model, category, G_APP_INFO (app), name);
|
|
+ g_free (name);
|
|
g_object_unref (app);
|
|
}
|
|
}
|
|
diff --git a/shell/cc-window.c b/shell/cc-window.c
|
|
index 7c85f5c..d10ba9e 100644
|
|
--- a/shell/cc-window.c
|
|
+++ b/shell/cc-window.c
|
|
@@ -140,6 +140,41 @@ get_icon_name_from_g_icon (GIcon *gicon)
|
|
return NULL;
|
|
}
|
|
|
|
+static void
|
|
+suse_activate_desktop (const gchar *id)
|
|
+{
|
|
+ GDesktopAppInfo *appinfo;
|
|
+ const gchar *desktop_file;
|
|
+ GdkScreen *screen;
|
|
+ GdkDisplay *display;
|
|
+ GdkAppLaunchContext *context;
|
|
+ GError *error;
|
|
+
|
|
+ desktop_file = g_strconcat ("/usr/share/applications/", id,
|
|
+ ".desktop", NULL);
|
|
+ appinfo = g_desktop_app_info_new_from_filename (desktop_file);
|
|
+ if (appinfo == NULL)
|
|
+ return;
|
|
+
|
|
+ screen = gdk_screen_get_default();
|
|
+ display = gdk_screen_get_display (screen);
|
|
+ context = gdk_display_get_app_launch_context (display);
|
|
+ gdk_app_launch_context_set_screen (context, screen);
|
|
+ gdk_app_launch_context_set_timestamp (context, gtk_get_current_event_time ());
|
|
+
|
|
+ error = NULL;
|
|
+ g_app_info_launch_uris (G_APP_INFO (appinfo), NULL,
|
|
+ (GAppLaunchContext *) context,
|
|
+ &error);
|
|
+ if (error) {
|
|
+ g_printerr ("Could not launch '%s': %s\n", id, error->message);
|
|
+ g_clear_error (&error);
|
|
+ }
|
|
+
|
|
+ g_object_unref (context);
|
|
+ g_object_unref (appinfo);
|
|
+}
|
|
+
|
|
static gboolean
|
|
activate_panel (CcWindow *self,
|
|
const gchar *id,
|
|
@@ -153,6 +188,12 @@ activate_panel (CcWindow *self,
|
|
|
|
if (!id)
|
|
return FALSE;
|
|
+ if (g_str_has_prefix(id, "suse-"))
|
|
+ {
|
|
+ /* we strip suse- prefix from the id we got to retrieve .desktop on disk */
|
|
+ suse_activate_desktop (id+strlen("suse-"));
|
|
+ return FALSE;
|
|
+ }
|
|
|
|
priv->current_panel = GTK_WIDGET (cc_panel_loader_load_by_name (CC_SHELL (self), id, parameters));
|
|
cc_shell_set_active_panel (CC_SHELL (self), CC_PANEL (priv->current_panel));
|
|
--
|
|
2.6.6
|
|
|