diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-10-03 02:07:04 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-10-03 03:22:07 +0800 |
commit | ec089b4a4129458f7140254607306eec0ef4aebf (patch) | |
tree | 7418aa00b5e9c66b8176ba5e5b69c1b2a7108841 /mail/evolution-mail.schemas.in | |
parent | 45b6f58f0a2d3e9e567694febf58882b9f74a257 (diff) | |
download | gsoc2013-evolution-ec089b4a4129458f7140254607306eec0ef4aebf.tar.gz gsoc2013-evolution-ec089b4a4129458f7140254607306eec0ef4aebf.tar.zst gsoc2013-evolution-ec089b4a4129458f7140254607306eec0ef4aebf.zip |
Rewrite the folder subscription editor.
Redesign the "Folder Subscriptions" dialog and use Camel's async API
instead of the MailMsg infrastructure to simplify the implementation.
Diffstat (limited to 'mail/evolution-mail.schemas.in')
-rw-r--r-- | mail/evolution-mail.schemas.in | 42 |
1 files changed, 32 insertions, 10 deletions
diff --git a/mail/evolution-mail.schemas.in b/mail/evolution-mail.schemas.in index 2cc0fb06e4..737dcfa76a 100644 --- a/mail/evolution-mail.schemas.in +++ b/mail/evolution-mail.schemas.in @@ -871,26 +871,48 @@ <!-- Subscribe dialog --> <schema> - <key>/schemas/apps/evolution/mail/subscribe_window/width</key> - <applyto>/apps/evolution/mail/subscribe_window/width</applyto> + <key>/schemas/apps/evolution/mail/subscription_editor_height</key> + <applyto>/apps/evolution/mail/subscription_editor_height</applyto> <owner>evolution-mail</owner> <type>int</type> - <default>600</default> + <default>400</default> <locale name="C"> - <short>Subscribe dialog default width</short> - <long>Default width of the subscribe dialog.</long> + <short>"Folder Subscriptions" window height</short> + <long> + Initial height of the "Folder Subscriptions" window. + The value updates as the user resizes the window vertically. + </long> </locale> </schema> <schema> - <key>/schemas/apps/evolution/mail/subscribe_window/height</key> - <applyto>/apps/evolution/mail/subscribe_window/height</applyto> + <key>/schemas/apps/evolution/mail/subscription_editor_maximized</key> + <applyto>/apps/evolution/mail/subscription_editor_maximized</applyto> + <type>bool</type> + <locale name="C"> + <short>"Folder Subscriptions" window maximize state</short> + <long> + Initial maximize state of the "Folder Subscriptions" window. + The value updates when the user maximizes or unmaximizes the + window. Note, this particular value is not used by Evolution + since the "Folder Subscriptions" window cannot be maximized. + This key exists only as an implementation detail. + </long> + </locale> + </schema> + + <schema> + <key>/schemas/apps/evolution/mail/subscription_editor_width</key> + <applyto>/apps/evolution/mail/subscription_editor_width</applyto> <owner>evolution-mail</owner> <type>int</type> - <default>400</default> + <default>600</default> <locale name="C"> - <short>Subscribe dialog default height</short> - <long>Default height of the subscribe dialog.</long> + <short>"Folder Subscriptions" window width</short> + <long> + Initial width of the "Folder Subscriptions" window. + The value updates as the user resizes the window horizontally. + </long> </locale> </schema> |