2017-08-31 09:41:33 +02:00
|
|
|
diff --git a/shell/cc-panel-loader.c b/shell/cc-panel-loader.c
|
|
|
|
index fc235fe..816cd1c 100644
|
|
|
|
--- a/shell/cc-panel-loader.c
|
|
|
|
+++ b/shell/cc-panel-loader.c
|
|
|
|
@@ -106,6 +106,12 @@ static struct {
|
2014-06-13 21:25:58 +02:00
|
|
|
#ifdef BUILD_WACOM
|
2016-09-02 19:12:16 +02:00
|
|
|
PANEL_TYPE("wacom", cc_wacom_panel_get_type ),
|
2014-06-13 21:25:58 +02:00
|
|
|
#endif
|
2016-09-02 19:12:16 +02:00
|
|
|
+ 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 ),
|
2014-06-13 21:25:58 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
GList *
|
2017-08-31 09:41:33 +02:00
|
|
|
@@ -139,7 +145,8 @@ parse_categories (GDesktopAppInfo *app)
|
|
|
|
retval = CC_CATEGORY_HIDDEN;
|
|
|
|
else if (g_strv_contains (const_strv (split), "HardwareSettings"))
|
2016-09-08 23:25:14 +02:00
|
|
|
retval = CC_CATEGORY_HARDWARE;
|
|
|
|
- else if (g_strv_contains (const_strv (split), "X-GNOME-PersonalSettings"))
|
|
|
|
+ else if (g_strv_contains (const_strv (split), "X-GNOME-PersonalSettings")
|
|
|
|
+ || g_strv_contains (const_strv (split), "X-GNOME-DesktopSettings"))
|
|
|
|
retval = CC_CATEGORY_PERSONAL;
|
|
|
|
else if (g_strv_contains (const_strv (split), "X-GNOME-SystemSettings"))
|
|
|
|
retval = CC_CATEGORY_SYSTEM;
|
2017-08-31 09:41:33 +02:00
|
|
|
@@ -148,7 +155,8 @@ parse_categories (GDesktopAppInfo *app)
|
|
|
|
retval = CC_CATEGORY_HIDDEN;
|
|
|
|
else if (g_strv_contains (const_strv (split), "X-GNOME-ConnectivitySettings"))
|
|
|
|
retval = CC_CATEGORY_CONNECTIVITY;
|
|
|
|
- else if (g_strv_contains (const_strv (split), "X-GNOME-PersonalizationSettings"))
|
|
|
|
+ else if (g_strv_contains (const_strv (split), "X-GNOME-PersonalizationSettings")
|
|
|
|
+ || g_strv_contains (const_strv (split), "X-GNOME-DesktopSettings"))
|
|
|
|
retval = CC_CATEGORY_PERSONALIZATION;
|
|
|
|
else if (g_strv_contains (const_strv (split), "X-GNOME-AccountSettings"))
|
|
|
|
retval = CC_CATEGORY_ACCOUNT;
|
|
|
|
@@ -181,15 +189,31 @@ cc_panel_loader_fill_model (CcShellModel *model)
|
2014-08-07 18:55:15 +02:00
|
|
|
{
|
2017-08-31 09:41:33 +02:00
|
|
|
g_autoptr (GDesktopAppInfo) app;
|
|
|
|
g_autofree gchar *desktop_name = NULL;
|
|
|
|
+ g_autofree gchar *name = NULL;
|
|
|
|
gint category;
|
2014-06-13 21:25:58 +02:00
|
|
|
|
2014-08-07 18:55:15 +02:00
|
|
|
+#ifndef CC_PANEL_LOADER_NO_GTYPES
|
2016-09-02 19:12:16 +02:00
|
|
|
+ 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);
|
2014-08-23 13:52:28 +02:00
|
|
|
+ }
|
2014-06-13 21:25:58 +02:00
|
|
|
+ else
|
2014-08-07 18:55:15 +02:00
|
|
|
+#endif
|
|
|
|
+ {
|
|
|
|
desktop_name = g_strconcat ("gnome-", all_panels[i].name,
|
|
|
|
"-panel.desktop", NULL);
|
2014-10-12 13:20:39 +02:00
|
|
|
+ name = g_strconcat (all_panels[i].name, NULL);
|
2014-08-07 18:55:15 +02:00
|
|
|
+ }
|
2014-06-13 21:25:58 +02:00
|
|
|
app = g_desktop_app_info_new (desktop_name);
|
|
|
|
|
2017-08-31 09:41:33 +02:00
|
|
|
if (!app)
|
2016-09-02 19:12:16 +02:00
|
|
|
{
|
|
|
|
+ if (!g_str_has_prefix(name, "suse-"))
|
|
|
|
+ {
|
2017-08-31 09:41:33 +02:00
|
|
|
g_warning ("Ignoring broken panel %s (missing desktop file)", all_panels[i].name);
|
2016-09-02 19:12:16 +02:00
|
|
|
+ }
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-08-31 09:41:33 +02:00
|
|
|
@@ -201,7 +225,7 @@ cc_panel_loader_fill_model (CcShellModel *model)
|
|
|
|
* that are only visible in the new Shell.
|
|
|
|
*/
|
|
|
|
if (category != CC_CATEGORY_HIDDEN)
|
|
|
|
- cc_shell_model_add_item (model, category, G_APP_INFO (app), all_panels[i].name);
|
2014-08-07 18:55:15 +02:00
|
|
|
+ cc_shell_model_add_item (model, category, G_APP_INFO (app), name);
|
|
|
|
}
|
|
|
|
}
|
2017-08-31 09:41:33 +02:00
|
|
|
|
|
|
|
diff --git a/shell/cc-window.c b/shell/cc-window.c
|
|
|
|
index 9f29c55..3be0d4e 100644
|
|
|
|
--- a/shell/cc-window.c
|
|
|
|
+++ b/shell/cc-window.c
|
|
|
|
@@ -114,6 +114,41 @@ get_icon_name_from_g_icon (GIcon *gicon)
|
2014-06-13 21:25:58 +02:00
|
|
|
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);
|
2014-08-07 18:55:15 +02:00
|
|
|
+ if (appinfo == NULL)
|
|
|
|
+ return;
|
2014-06-13 21:25:58 +02:00
|
|
|
+
|
|
|
|
+ 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,
|
2017-08-31 09:41:33 +02:00
|
|
|
@@ -126,6 +161,12 @@ activate_panel (CcWindow *self,
|
2014-08-07 18:55:15 +02:00
|
|
|
|
2014-06-13 21:25:58 +02:00
|
|
|
if (!id)
|
|
|
|
return FALSE;
|
2014-08-07 18:55:15 +02:00
|
|
|
+ if (g_str_has_prefix(id, "suse-"))
|
2014-06-13 21:25:58 +02:00
|
|
|
+ {
|
2014-08-07 18:55:15 +02:00
|
|
|
+ /* we strip suse- prefix from the id we got to retrieve .desktop on disk */
|
|
|
|
+ suse_activate_desktop (id+strlen("suse-"));
|
2014-06-13 21:25:58 +02:00
|
|
|
+ return FALSE;
|
|
|
|
+ }
|
2014-08-07 18:55:15 +02:00
|
|
|
|
2016-09-08 23:25:14 +02:00
|
|
|
self->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 (self->current_panel));
|