diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-06-25 00:59:33 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-25 06:29:22 +0800 |
commit | f0d3f3afdfa314e1e8cd7d8da790878008a46aad (patch) | |
tree | 7116e2a18c7bd50633b2f8de42b5377af1e8172a /modules/addressbook/apps_evolution_addressbook.schemas.in | |
parent | 94302ea73cde0b470faad653f752406f19f202d7 (diff) | |
download | gsoc2013-evolution-f0d3f3afdfa314e1e8cd7d8da790878008a46aad.tar.gz gsoc2013-evolution-f0d3f3afdfa314e1e8cd7d8da790878008a46aad.tar.zst gsoc2013-evolution-f0d3f3afdfa314e1e8cd7d8da790878008a46aad.zip |
Radically reorganize source code.
- Collect all shell modules into a new top-level 'modules' directory:
$(top_srcdir)/modules/addressbook
$(top_srcdir)/modules/calendar
$(top_srcdir)/modules/mail
Nothing is allowed to link to these, not plugins nor other modules.
THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X.
- Mimic the libevolution-mail-shared library from master (except drop
the "shared" suffix) and have libevolution-mail-importers and all
mail-related plugins link to it.
- Discard the a11y subdirectories and have the files live alongside
their counterpart widgets.
Diffstat (limited to 'modules/addressbook/apps_evolution_addressbook.schemas.in')
-rw-r--r-- | modules/addressbook/apps_evolution_addressbook.schemas.in | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/modules/addressbook/apps_evolution_addressbook.schemas.in b/modules/addressbook/apps_evolution_addressbook.schemas.in new file mode 100644 index 0000000000..4a336409df --- /dev/null +++ b/modules/addressbook/apps_evolution_addressbook.schemas.in @@ -0,0 +1,82 @@ +<gconfschemafile> + <schemalist> + + <!-- Completion uris --> + + <schema> + <key>/schemas/apps/evolution/addressbook/completion/uris</key> + <applyto>/apps/evolution/addressbook/completion/uris</applyto> + <owner>evolution-addressbook</owner> + <type>string</type> + <default></default> + <locale name="C"> + <short>EFolderList XML for the list of completion URIs</short> + <long>EFolderList XML for the list of completion URIs.</long> + </locale> + </schema> + + <schema> + <key>/schemas/apps/evolution/addressbook/completion/minimum_query_length</key> + <applyto>/apps/evolution/addressbook/completion/minimum_query_length</applyto> + <owner>evolution-addressbook</owner> + <type>int</type> + <default>3</default> + <locale name="C"> + <short>Autocomplete length</short> + <long>The number of characters that must be typed before Evolution will attempt to autocomplete.</long> + </locale> + </schema> + + <schema> + <key>/schemas/apps/evolution/addressbook/completion/show_address</key> + <applyto>/apps/evolution/addressbook/completion/show_address</applyto> + <owner>evolution-addressbook</owner> + <type>bool</type> + <default>false</default> + <locale name="C"> + <short>Show autocompleted name with an address</short> + <long>Whether force showing the mail address with the name of the autocompleted contact in the entry.</long> + </locale> + </schema> + + <!-- Select names last used uri --> + + <schema> + <key>/schemas/apps/evolution/addressbook/select_names/last_used_uri</key> + <applyto>/apps/evolution/addressbook/select_names/last_used_uri</applyto> + <owner>evolution-addressbook</owner> + <type>string</type> + <default></default> + <locale name="C"> + <short>URI for the folder last used in the select names dialog</short> + <long>URI for the folder last used in the select names dialog.</long> + </locale> + </schema> + + <!-- View state --> + + <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> + <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> + </locale> + </schema> + + <schema> + <key>/schemas/apps/evolution/addressbook/display/show_preview</key> + <applyto>/apps/evolution/addressbook/display/show_preview</applyto> + <owner>evolution-addressbook</owner> + <type>bool</type> + <default>true</default> + <locale name="C"> + <short>Show preview pane</short> + <long>Whether to show the preview pane.</long> + </locale> + </schema> + + </schemalist> +</gconfschemafile> |