diff options
author | Tamás Zolnai <tamas.zolnai@collabora.com> | 2019-11-02 11:35:33 +0100 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2019-11-02 13:25:35 +0100 |
commit | 5e113259f8382c2d045193abd79267529a6a5f6b (patch) | |
tree | 49e76489cf93056b575118e3100cf9f838ce27c9 /sw/sdi | |
parent | 83658678e69ba83979c659e37fd3c950942139f9 (diff) |
Table panel: Implement functionality of Row Height spinbutton
Change-Id: Ic3e3ce31fdc74c9cb4c41e1243f10f5977d5bb0c
Reviewed-on: https://gerrit.libreoffice.org/81894
Tested-by: Jenkins
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'sw/sdi')
-rw-r--r-- | sw/sdi/_tabsh.sdi | 7 | ||||
-rw-r--r-- | sw/sdi/swriter.sdi | 18 |
2 files changed, 25 insertions, 0 deletions
diff --git a/sw/sdi/_tabsh.sdi b/sw/sdi/_tabsh.sdi index 9cb65cd4d276..948d6e5476f6 100644 --- a/sw/sdi/_tabsh.sdi +++ b/sw/sdi/_tabsh.sdi @@ -437,5 +437,12 @@ interface BaseTextTable StateMethod = GetState ; DisableFlags="SfxDisableFlags::SwOnProtectedCursor"; ] + + SID_ATTR_TABLE_ROW_HEIGHT + [ + ExecMethod = Execute ; + StateMethod = GetState ; + DisableFlags="SfxDisableFlags::SwOnProtectedCursor"; + ] } diff --git a/sw/sdi/swriter.sdi b/sw/sdi/swriter.sdi index 8316bd9c8bd5..bdae66ae91d5 100644 --- a/sw/sdi/swriter.sdi +++ b/sw/sdi/swriter.sdi @@ -7790,3 +7790,21 @@ SfxVoidItem DatePickerFormField FN_INSERT_DATE_FORMFIELD ToolBoxConfig = TRUE, GroupId = SfxGroupId::Controls; ] + +SfxUInt32Item TableRowHeight SID_ATTR_TABLE_ROW_HEIGHT + +[ + AutoUpdate = TRUE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + + AccelConfig = TRUE, + MenuConfig = TRUE, + ToolBoxConfig = TRUE, + GroupId = SfxGroupId::Table; +] |