diff options
author | Federico Mena Quintero <federico@novell.com> | 2010-04-08 06:56:42 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@novell.com> | 2010-04-09 06:48:12 +0800 |
commit | f2d0cc79bd9acaf31777e1d41ff68ad0e1c104a1 (patch) | |
tree | cdc99bc64ca498e6443ac77f04019eac1a16c3b1 /mail | |
parent | 56068f561c81df5b65a4fede47f319843faac8d6 (diff) | |
download | gsoc2013-evolution-f2d0cc79bd9acaf31777e1d41ff68ad0e1c104a1.tar.gz gsoc2013-evolution-f2d0cc79bd9acaf31777e1d41ff68ad0e1c104a1.tar.zst gsoc2013-evolution-f2d0cc79bd9acaf31777e1d41ff68ad0e1c104a1.zip |
Schemas with widgets to hide for the mailer and composer preferences
These get read when creating the preferences widgets, and the
widgets whose names are mentioned in the GConf values will
get hidden when in Express mode.
Signed-off-by: Federico Mena Quintero <federico@novell.com>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/evolution-mail.schemas.in | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/mail/evolution-mail.schemas.in b/mail/evolution-mail.schemas.in index 09d875a361..5e7ac53666 100644 --- a/mail/evolution-mail.schemas.in +++ b/mail/evolution-mail.schemas.in @@ -1528,5 +1528,43 @@ </locale> </schema> + <!-- Widgets to hide in Express mode --> + + <schema> + <key>/schemas/apps/evolution/mail/express_preferences_hidden</key> + <applyto>/apps/evolution/mail/express_preferences_hidden</applyto> + <owner>evolution-mail</owner> + <type>list</type> + <list_type>string</list_type> + <default>[hboxReadTimeout,hboxMailSizeLimit,hboxShrinkAddresses,magic_spacebar_checkbox,hboxEnableSearchFolders]</default> + <locale name="C"> + <short>List of controls to hide when in Express mode</short> + <long> + List of names for the controls in the user interface, + which should be hidden when Evolution is running in Express + mode. + This pertains to the mailer preferences in mail-config.ui. + </long> + </locale> + </schema> + + <schema> + <key>/schemas/apps/evolution/mail/composer/express_preferences_hidden</key> + <applyto>/apps/evolution/mail/composer/express_preferences_hidden</applyto> + <owner>evolution-mail</owner> + <type>list</type> + <list_type>string</list_type> + <default>[chkOutlookFilenames,vboxTopPosting,chkPromptEmptySubject]</default> + <locale name="C"> + <short>List of controls to hide when in Express mode</short> + <long> + List of names for the controls in the user interface, + which should be hidden when Evolution is running in Express + mode. + This pertains to the mailer preferences in mail-config.ui. + </long> + </locale> + </schema> + </schemalist> </gconfschemafile> |