diff options
author | Philippe Jung <phil.jung@free.fr> | 2015-06-10 16:09:23 +0200 |
---|---|---|
committer | Philippe Jung <phil.jung@free.fr> | 2015-06-16 15:08:24 +0000 |
commit | d18afcc9125f427c0e6693900d24f894068d7e56 (patch) | |
tree | b3e7e9dd50d08f2d79fedf5d822b0a5c89c1b6ca /sd/uiconfig | |
parent | 4fb65441709d02946f4b24da7839dba7ecffff1e (diff) |
tdf#91909 Uno commands for slide navigation and sorting
The following change adds the following uno commands to
draw and impress. Commands are in standard toolbar and
not visible by default.
NextPage: go to the next page
PreviousPage: go to the previous page
FirstPage: go to the first page
LastPage: go the the last page
MovePageUp: Moves the current selection above the page
preceding the selection.
MovePageDown: Moves the current selection below the page
following the selection.
MovePageTop: Moves the selection to the top.
MovePageBottom: Moves the current selection to the bottom.
Change-Id: I2dbd923f14fd9901fb513c58b51bc7ab91ad0a83
Reviewed-on: https://gerrit.libreoffice.org/16211
Reviewed-by: Philippe Jung <phil.jung@free.fr>
Tested-by: Philippe Jung <phil.jung@free.fr>
Diffstat (limited to 'sd/uiconfig')
-rw-r--r-- | sd/uiconfig/sdraw/toolbar/standardbar.xml | 10 | ||||
-rw-r--r-- | sd/uiconfig/simpress/toolbar/standardbar.xml | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/sd/uiconfig/sdraw/toolbar/standardbar.xml b/sd/uiconfig/sdraw/toolbar/standardbar.xml index 5a6de30926da..4b424b4dd200 100644 --- a/sd/uiconfig/sdraw/toolbar/standardbar.xml +++ b/sd/uiconfig/sdraw/toolbar/standardbar.xml @@ -73,4 +73,14 @@ <toolbar:toolbarseparator/> <toolbar:toolbaritem xlink:href=".uno:HelpIndex" toolbar:visible="false"/> <toolbar:toolbaritem xlink:href=".uno:ExtendedHelp" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:FirstPage" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:PreviousPage" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:NextPage" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:LastPage" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:MovePageFirst" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:MovePageUp" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:MovePageDown" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:MovePageLast" toolbar:visible="false"/> </toolbar:toolbar> diff --git a/sd/uiconfig/simpress/toolbar/standardbar.xml b/sd/uiconfig/simpress/toolbar/standardbar.xml index d4d2edc0a0a4..8dbc6ee20cd2 100644 --- a/sd/uiconfig/simpress/toolbar/standardbar.xml +++ b/sd/uiconfig/simpress/toolbar/standardbar.xml @@ -63,4 +63,14 @@ <toolbar:toolbarseparator/> <toolbar:toolbaritem xlink:href=".uno:Presentation" toolbar:helpid="10157"/> <toolbar:toolbaritem xlink:href=".uno:PresentationCurrentSlide"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:FirstPage" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:PreviousPage" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:NextPage" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:LastPage" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:MovePageFirst" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:MovePageUp" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:MovePageDown" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:MovePageLast" toolbar:visible="false"/> </toolbar:toolbar> |