diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2019-08-26 20:07:12 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2019-08-30 03:58:03 +0200 |
commit | 0285492a45e9cc19c26e14dcdf297bcc491da4d2 (patch) | |
tree | 99be93079240d29990b59b7f50c30777d67e4efa /svx/source/inc | |
parent | 5735a2ce6941264e90f6b0593c54f661291d4987 (diff) |
tdf#126959 impress table border resize handle support
This adds support to edit the resize handles for the impress.
It includes:
- sending the positions of handles when table object is
selected or changed
- a implementaton of SID_TABLE_CHANGE_CURRENT_BORDER_POSITION
to perform the changing of the border positions of a table
Change-Id: I6f60822c5cd9afc3be5c48ea7b775f1860bfa5a7
Reviewed-on: https://gerrit.libreoffice.org/78201
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'svx/source/inc')
-rw-r--r-- | svx/source/inc/tablemodel.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/svx/source/inc/tablemodel.hxx b/svx/source/inc/tablemodel.hxx index 78aabc51f692..0dba1c058866 100644 --- a/svx/source/inc/tablemodel.hxx +++ b/svx/source/inc/tablemodel.hxx @@ -85,6 +85,9 @@ public: /// Get the width of all columns in this table. std::vector<sal_Int32> getColumnWidths(); + /// Get the height of all rows in this table. + std::vector<sal_Int32> getRowHeights(); + void dumpAsXml(xmlTextWriterPtr pWriter) const; // ICellRange |