diff options
author | Rob Snelders <programming@ertai.nl> | 2012-05-25 17:31:11 +0200 |
---|---|---|
committer | Thorsten Behrens <tbehrens@suse.com> | 2012-07-26 21:38:47 +0200 |
commit | 61679f9b7afa2f585d47bf08a3317ddc02f2fbca (patch) | |
tree | a690f3e5dd16728637d9210a9c10710297f90768 /officecfg | |
parent | e7dec2887e511a18a5f9927884c1a1df45fc35f0 (diff) |
fd0#35973 - [EasyHack] Remember the state of the sidebar pane in Impress
Change-Id: Ie287bc1c545bd8986ee3509181c878bdcd0d1942
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/registry/data/org/openoffice/Office/Impress.xcu | 22 | ||||
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Impress.xcs | 44 |
2 files changed, 65 insertions, 1 deletions
diff --git a/officecfg/registry/data/org/openoffice/Office/Impress.xcu b/officecfg/registry/data/org/openoffice/Office/Impress.xcu index 6101ceffada5..ff44549e801d 100644 --- a/officecfg/registry/data/org/openoffice/Office/Impress.xcu +++ b/officecfg/registry/data/org/openoffice/Office/Impress.xcu @@ -28,6 +28,28 @@ <!DOCTYPE oor:component-data SYSTEM "../../../../component-update.dtd"> <oor:component-data oor:name="Impress" oor:package="org.openoffice.Office" xmlns:install="http://openoffice.org/2004/installation" xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <node oor:name="MultiPaneGUI"> + <node oor:name="SlideSorterBar"> + <node oor:name="Visible"> + <prop oor:name="ImpressView"> + <value>true</value> + </prop> + <prop oor:name="OutlineView"> + <value>true</value> + </prop> + <prop oor:name="NotesView"> + <value>true</value> + </prop> + <prop oor:name="HandoutView"> + <value>false</value> + </prop> + <prop oor:name="SlideSorterView"> + <value>false</value> + </prop> + <prop oor:name="DrawView"> + <value>true</value> + </prop> + </node> + </node> <node oor:name="Framework"> <node oor:name="ResourceFactories"> <node oor:name="F0" oor:op="replace"> diff --git a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs index 094cee5a3530..cb8c31a92e62 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs @@ -1402,11 +1402,53 @@ </info> </set> </group> - <group oor:name="SlideSorter"> + <group oor:name="SlideSorterBar"> <info> <desc>Values related to the slide sorter.</desc> <label>Slide Sorter Options</label> </info> + <group oor:name="Visible"> + <info> + <desc>Options that control the visibility of the slide sorter.</desc> + <label>Slide Sorter Visibility</label> + </info> + <prop oor:name="ImpressView" oor:type="xs:boolean"> + <info> + <desc>Visibility of the Slide Sorter in the Impress view.</desc> + <label>Slide Sorter Visibility ImpressView</label> + </info> + </prop> + <prop oor:name="OutlineView" oor:type="xs:boolean"> + <info> + <desc>Visibility of the Slide Sorter in the Outline view.</desc> + <label>Slide Sorter Visibility OutlineView</label> + </info> + </prop> + <prop oor:name="NotesView" oor:type="xs:boolean"> + <info> + <desc>Visibility of the Slide Sorter in the Notes view.</desc> + <label>Slide Sorter Visibility NotesView</label> + </info> + </prop> + <prop oor:name="HandoutView" oor:type="xs:boolean"> + <info> + <desc>Visibility of the Slide Sorter in the HandOut view.</desc> + <label>Slide Sorter Visibility HandOutView</label> + </info> + </prop> + <prop oor:name="SlideSorterView" oor:type="xs:boolean"> + <info> + <desc>Visibility of the Slide Sorter in the SlideSorter view.</desc> + <label>Slide Sorter Visibility SlideSorterView</label> + </info> + </prop> + <prop oor:name="DrawView" oor:type="xs:boolean"> + <info> + <desc>Visibility of the Slide Sorter in the Draw view.</desc> + <label>Slide Sorter Visibility DrawView</label> + </info> + </prop> + </group> <group oor:name="PreviewCache"> <info> <desc>Values for tuning the preview cache of the slide sorter.</desc> |