diff options
Diffstat (limited to 'sw/sdi')
-rw-r--r-- | sw/sdi/_viewsh.sdi | 8 | ||||
-rw-r--r-- | sw/sdi/swriter.sdi | 34 |
2 files changed, 42 insertions, 0 deletions
diff --git a/sw/sdi/_viewsh.sdi b/sw/sdi/_viewsh.sdi index 55072f98ec2a..4dbc2aecffcf 100644 --- a/sw/sdi/_viewsh.sdi +++ b/sw/sdi/_viewsh.sdi @@ -22,6 +22,14 @@ interface BaseTextEditView [ ExecMethod = Execute ; ] + FN_TO_PREV_PAGE + [ + ExecMethod = Execute ; + ] + FN_TO_NEXT_PAGE + [ + ExecMethod = Execute ; + ] FN_PAGEUP // status(final|play) [ ExecMethod = Execute ; diff --git a/sw/sdi/swriter.sdi b/sw/sdi/swriter.sdi index 851a086492d4..69dbc63205c0 100644 --- a/sw/sdi/swriter.sdi +++ b/sw/sdi/swriter.sdi @@ -4643,6 +4643,40 @@ SfxVoidItem PageDownSel FN_PAGEDOWN_SEL GroupId = SfxGroupId::Navigator; ] +SfxVoidItem GoToPrevPage FN_TO_PREV_PAGE +() +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = TRUE, + MenuConfig = TRUE, + ToolBoxConfig = TRUE, + GroupId = SfxGroupId::Navigator; +] + +SfxVoidItem GoToNextPage FN_TO_NEXT_PAGE +() +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = TRUE, + MenuConfig = TRUE, + ToolBoxConfig = TRUE, + GroupId = SfxGroupId::Navigator; +] + SfxUInt16Item PageOffsetDialog FN_CHANGE_PAGENUM (SfxUInt16Item nOffset FN_CHANGE_PAGENUM) [ |