diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2014-12-07 01:18:06 +0200 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2014-12-07 14:48:18 +0200 |
commit | 74ef8a4148f7d8fdf0d40481f879cdd13b27aafb (patch) | |
tree | 04b152a2e75d94854cd06bffa8dea5b8dd8fb806 /sw/sdi | |
parent | 6521e61c4e0e39ed285188f50e0856e56d86e3e5 (diff) |
Introduce ParaspaceIncrease/Decrease commands in Writer and Calc
Change-Id: Ia8933697fd7bd827bb69c0976f13112eb2131888
Diffstat (limited to 'sw/sdi')
-rw-r--r-- | sw/sdi/_annotsh.sdi | 11 | ||||
-rw-r--r-- | sw/sdi/_viewsh.sdi | 12 | ||||
-rw-r--r-- | sw/sdi/drwtxtsh.sdi | 12 |
3 files changed, 35 insertions, 0 deletions
diff --git a/sw/sdi/_annotsh.sdi b/sw/sdi/_annotsh.sdi index 15f03adf89d0..232388c69187 100644 --- a/sw/sdi/_annotsh.sdi +++ b/sw/sdi/_annotsh.sdi @@ -198,6 +198,17 @@ interface _Annotation StateMethod = GetState ; ] + SID_PARASPACE_INCREASE + [ + ExecMethod = Exec; + StateMethod = GetState; + ] + SID_PARASPACE_DECREASE + [ + ExecMethod = Exec; + StateMethod = GetState; + ] + FN_INSERT_STRING [ ExecMethod = Exec ; diff --git a/sw/sdi/_viewsh.sdi b/sw/sdi/_viewsh.sdi index 357894cd964e..5e35f90c7f54 100644 --- a/sw/sdi/_viewsh.sdi +++ b/sw/sdi/_viewsh.sdi @@ -427,6 +427,18 @@ interface BaseTextEditView StateMethod = StateTabWin ; ] + SID_PARASPACE_INCREASE + [ + ExecMethod = ExecTabWin; + StateMethod = StateTabWin; + ] + + SID_PARASPACE_DECREASE + [ + ExecMethod = ExecTabWin; + StateMethod = StateTabWin; + ] + SID_ATTR_PAGE_COLUMN [ ExecMethod = ExecTabWin ; diff --git a/sw/sdi/drwtxtsh.sdi b/sw/sdi/drwtxtsh.sdi index 20bba4f911fc..53ed9110ef09 100644 --- a/sw/sdi/drwtxtsh.sdi +++ b/sw/sdi/drwtxtsh.sdi @@ -211,6 +211,18 @@ interface TextDrawText StateMethod = GetState ; ] + SID_PARASPACE_INCREASE + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + + SID_PARASPACE_DECREASE + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_ATTR_PARA_LINESPACE // api: [ ExecMethod = Execute ; |