diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-08-28 05:32:53 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-08-28 05:35:22 +0800 |
commit | 76229dcb001dc7a72f35e89fbad4835d6529d728 (patch) | |
tree | a0cbe569272f0b5cc42c9cc319249b94ca22781d /modules/addressbook/apps_evolution_addressbook.schemas.in | |
parent | 0fda8cb5a28729724c678c4e379c12a79f1e820e (diff) | |
download | gsoc2013-evolution-76229dcb001dc7a72f35e89fbad4835d6529d728.tar gsoc2013-evolution-76229dcb001dc7a72f35e89fbad4835d6529d728.tar.gz gsoc2013-evolution-76229dcb001dc7a72f35e89fbad4835d6529d728.tar.bz2 gsoc2013-evolution-76229dcb001dc7a72f35e89fbad4835d6529d728.tar.lz gsoc2013-evolution-76229dcb001dc7a72f35e89fbad4835d6529d728.tar.xz gsoc2013-evolution-76229dcb001dc7a72f35e89fbad4835d6529d728.tar.zst gsoc2013-evolution-76229dcb001dc7a72f35e89fbad4835d6529d728.zip |
Add vertical view to Contacts.
Diffstat (limited to 'modules/addressbook/apps_evolution_addressbook.schemas.in')
-rw-r--r-- | modules/addressbook/apps_evolution_addressbook.schemas.in | 38 |
1 files changed, 36 insertions, 2 deletions
diff --git a/modules/addressbook/apps_evolution_addressbook.schemas.in b/modules/addressbook/apps_evolution_addressbook.schemas.in index 4a336409df..7ce3902c82 100644 --- a/modules/addressbook/apps_evolution_addressbook.schemas.in +++ b/modules/addressbook/apps_evolution_addressbook.schemas.in @@ -56,13 +56,47 @@ <!-- View state --> <schema> + <key>/schemas/apps/evolution/addressbook/display/layout</key> + <applyto>/apps/evolution/addressbook/display/layout</applyto> + <owner>evolution-addressbook</owner> + <type>int</type> + <default>0</default> + <locale name="C"> + <short>Contact layout style</short> + <long> + The layout style determines where to place the preview pane + in relation to the contact list. "0" (Classic View) places + the preview pane below the contact list. "1" (Vertical View) + places the preview pane next to the contact list. + </long> + </locale> + </schema> + + <schema> + <key>/schemas/apps/evolution/addressbook/display/hpane_position</key> + <applyto>/apps/evolution/addressbook/display/hpane_position</applyto> + <owner>evolution-addressbook</owner> + <type>int</type> + <default>200</default> + <locale name="C"> + <short>Contact preview pane position (horizontal)</short> + <long> + Position of the contact preview pane when oriented horizontally. + </long> + </locale> + </schema> + + <schema> <key>/schemas/apps/evolution/addressbook/display/vpane_position</key> <applyto>/apps/evolution/addressbook/display/vpane_position</applyto> <owner>evolution-addressbook</owner> <type>int</type> + <default>400</default> <locale name="C"> - <short>Vertical pane position</short> - <long>Position of the vertical pane, between the card and list views and the preview pane, in pixels.</long> + <short>Contact preview pane position (vertical)</short> + <long> + Position of the contact preview pane when oriented vertically. + </long> </locale> </schema> |