diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2021-05-23 15:40:08 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2021-06-08 14:50:33 +0200 |
commit | c4f615b359be56e88e4fbf9aaaf30affb29d57e2 (patch) | |
tree | 484f1caaf27bc3cefc0d1a7e0614342927117440 /include/editeng | |
parent | 064a13e94e9b38bc88381b5c497cf6c9ddbe93e4 (diff) |
editengine-columns: Create document model and dialog page
Change-Id: I056aad9474ca18134d1f1686a53618cc9ab3d525
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116038
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/editeng.hxx | 2 | ||||
-rw-r--r-- | include/editeng/outliner.hxx | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/editeng/editeng.hxx b/include/editeng/editeng.hxx index be5262a41d23..73a89992f62b 100644 --- a/include/editeng/editeng.hxx +++ b/include/editeng/editeng.hxx @@ -242,6 +242,8 @@ public: void SetRotation(TextRotation nRotation); TextRotation GetRotation() const; + void SetTextColumns(sal_Int16 nColumns, sal_Int32 nSpacing); + void SetFixedCellHeight( bool bUseFixedCellHeight ); void SetDefaultHorizontalTextDirection( EEHorizontalTextDirection eHTextDir ); diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx index 98dd7dc14b00..34de51fc904c 100644 --- a/include/editeng/outliner.hxx +++ b/include/editeng/outliner.hxx @@ -658,6 +658,8 @@ public: bool IsVertical() const; bool IsTopToBottom() const; + void SetTextColumns(sal_Int16 nColumns, sal_Int32 nSpacing); + void SetFixedCellHeight( bool bUseFixedCellHeight ); void SetDefaultHorizontalTextDirection( EEHorizontalTextDirection eHTextDir ); |