diff options
author | Robert Tari <robert@tari.in> | 2023-05-07 03:32:55 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-06-06 09:02:39 +0200 |
commit | cf32ce6be9b43a02d6ef36af877ba59562878ba4 (patch) | |
tree | 2370c92ae457865fade5768ed8fbf576885e3bcd | |
parent | 514cd38938c38c45788f19bfcef4341c5a856833 (diff) | |
download | ayatana-indicator-session-cf32ce6be9b43a02d6ef36af877ba59562878ba4.tar.gz ayatana-indicator-session-cf32ce6be9b43a02d6ef36af877ba59562878ba4.tar.bz2 ayatana-indicator-session-cf32ce6be9b43a02d6ef36af877ba59562878ba4.zip |
Add custom label to admin section
-rw-r--r-- | data/org.ayatana.indicator.session.gschema.xml | 16 | ||||
-rw-r--r-- | src/service.c | 29 | ||||
-rw-r--r-- | tests/org.ayatana.indicator.session.gschema.xml | 16 |
3 files changed, 58 insertions, 3 deletions
diff --git a/data/org.ayatana.indicator.session.gschema.xml b/data/org.ayatana.indicator.session.gschema.xml index dd35390..807c631 100644 --- a/data/org.ayatana.indicator.session.gschema.xml +++ b/data/org.ayatana.indicator.session.gschema.xml @@ -55,6 +55,20 @@ <summary>Show bug report item</summary> <description>Show the bug report menu item.</description> </key> + <key name="show-custom-item" type="b"> + <default>false</default> + <summary>Show custom item</summary> + <description>Show the custom menu item.</description> + </key> + <key name="custom-item-label" type="s"> + <default>""</default> + <summary>Custom item label</summary> + <description>The label of the custom menu item.</description> + </key> + <key name="custom-item-uri" type="s"> + <default>""</default> + <summary>Custom item URI</summary> + <description>The location the custom menu item should open.</description> + </key> </schema> - </schemalist> diff --git a/src/service.c b/src/service.c index 6f4e294..d05f2cb 100644 --- a/src/service.c +++ b/src/service.c @@ -381,6 +381,22 @@ create_admin_section (IndicatorSessionService * self) priv_t * p = self->priv; menu = g_menu_new (); + gboolean bShowCustom = g_settings_get_boolean (self->priv->indicator_settings, "show-custom-item"); + + if (bShowCustom) + { + gchar *sLabel = g_settings_get_string (self->priv->indicator_settings, "custom-item-label"); + gchar *sUri = g_settings_get_string (self->priv->indicator_settings, "custom-item-uri"); + + if (*sLabel != '\0' && *sUri != '\0') + { + g_menu_append (menu, sLabel, "indicator.custom"); + } + + g_free (sUri); + g_free (sLabel); + } + gboolean bShowDeviceInfo = g_settings_get_boolean (self->priv->indicator_settings, "show-device-info"); if (bShowDeviceInfo) @@ -1039,6 +1055,13 @@ on_user_activated (GSimpleAction * a G_GNUC_UNUSED, username); } +static void on_custom_activated (GSimpleAction *pAction G_GNUC_UNUSED, GVariant *pParam G_GNUC_UNUSED, gpointer pUserData) +{ + IndicatorSessionService *self = INDICATOR_SESSION_SERVICE (pUserData); + gchar *sUri = g_settings_get_string (self->priv->indicator_settings, "custom-item-uri"); + ayatana_common_utils_open_url (sUri); +} + static void init_gactions (IndicatorSessionService * self) { @@ -1059,7 +1082,8 @@ init_gactions (IndicatorSessionService * self) { "switch-to-screensaver", on_screensaver_activated }, { "switch-to-greeter", on_greeter_activated }, { "suspend", on_suspend_activated }, - { "power-off", on_power_off_activated } + { "power-off", on_power_off_activated }, + { "custom", on_custom_activated } }; p->actions = g_simple_action_group_new (); @@ -1422,6 +1446,9 @@ indicator_session_service_init (IndicatorSessionService * self) g_signal_connect_swapped (gp, "changed::show-desktop-help", G_CALLBACK (rebuild_admin_section_soon), self); g_signal_connect_swapped (gp, "changed::show-distro-help", G_CALLBACK (rebuild_admin_section_soon), self); g_signal_connect_swapped (gp, "changed::show-bug-report", G_CALLBACK (rebuild_admin_section_soon), self); + g_signal_connect_swapped (gp, "changed::show-custom-item", G_CALLBACK (rebuild_admin_section_soon), self); + g_signal_connect_swapped (gp, "changed::custom-item-label", G_CALLBACK (rebuild_admin_section_soon), self); + g_signal_connect_swapped (gp, "changed::custom-item-uri", G_CALLBACK (rebuild_admin_section_soon), self); /* watch for changes to the lock keybinding */ gp = p->keybinding_settings; diff --git a/tests/org.ayatana.indicator.session.gschema.xml b/tests/org.ayatana.indicator.session.gschema.xml index b6bacd8..2e1c01f 100644 --- a/tests/org.ayatana.indicator.session.gschema.xml +++ b/tests/org.ayatana.indicator.session.gschema.xml @@ -51,6 +51,20 @@ <summary>Show bug report item</summary> <description>Show the bug report menu item.</description> </key> + <key name="show-custom-item" type="b"> + <default>false</default> + <summary>Show custom item</summary> + <description>Show the custom menu item.</description> + </key> + <key name="custom-item-label" type="s"> + <default>""</default> + <summary>Custom item label</summary> + <description>The label of the custom menu item.</description> + </key> + <key name="custom-item-uri" type="s"> + <default>""</default> + <summary>Custom item URI</summary> + <description>The location the custom menu item should open.</description> + </key> </schema> - </schemalist> |