diff options
author | rbuj <[email protected]> | 2019-06-10 23:40:19 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-06-13 21:53:50 +0200 |
commit | 16b899df41603d6750a02f00253f61d3f22e9a77 (patch) | |
tree | 3e564f47073ac59da0ca82fbe06d5a2ca3e0d9ae /capplets/default-applications/mate-da-capplet.h | |
parent | 561c7aceb09746dd74ee5ed0ffd2b1c4cbc78e83 (diff) | |
download | mate-control-center-16b899df41603d6750a02f00253f61d3f22e9a77.tar.bz2 mate-control-center-16b899df41603d6750a02f00253f61d3f22e9a77.tar.xz |
default-applications: Add a widget for a default messenger application
Requires https://github.com/mate-desktop/mate-desktop/pull/393
Diffstat (limited to 'capplets/default-applications/mate-da-capplet.h')
-rw-r--r-- | capplets/default-applications/mate-da-capplet.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/capplets/default-applications/mate-da-capplet.h b/capplets/default-applications/mate-da-capplet.h index a6bb03ca..4fa517b0 100644 --- a/capplets/default-applications/mate-da-capplet.h +++ b/capplets/default-applications/mate-da-capplet.h @@ -38,6 +38,9 @@ #define CALCULATOR_SCHEMA "org.mate.applications-calculator" #define CALCULATOR_KEY "exec" +#define MESSENGER_SCHEMA "org.mate.applications-messenger" +#define MESSENGER_KEY "exec" + typedef struct _MateDACapplet { GtkBuilder* builder; @@ -59,6 +62,7 @@ typedef struct _MateDACapplet { GtkWidget* word_combo_box; GtkWidget* spreadsheet_combo_box; GtkWidget* calculator_combo_box; + GtkWidget* messenger_combo_box; /* Visual Accessibility */ GtkWidget* visual_startup_checkbutton; @@ -81,12 +85,14 @@ typedef struct _MateDACapplet { GList* word_editors; GList* spreadsheet_editors; GList* calculators; + GList* messengers; /* Settings objects */ GSettings* terminal_settings; GSettings* visual_settings; GSettings* mobility_settings; GSettings* calculator_settings; + GSettings* messenger_settings; } MateDACapplet; #endif |