summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2022-10-19 08:44:38 +0200
committerMiklos Vajna <vmiklos@collabora.com>2022-10-19 11:48:48 +0200
commitadd110bad816fadeb96e7af0d4689389c04c263e (patch)
treeee6ad45846aae0bb0dd492f500e6ec4650ba186d /sw/source/uibase/inc
parentffc23650d988051bf9fe43edeb4e16096907b080 (diff)
sw content controls, alias and tag: add UI
- add 2 new weld::Entry instances to edit these strings + matching labels - extend the grid to have 2 columns, as previously only a checkbox was there for all content controls, which only needed a single column, but now we want label + entry pairs in later rows - cover this with a UITest Change-Id: Ia5cfb90725d3b5b40eccf15ec7c7823e0e6d6751 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141522 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/uibase/inc')
-rw-r--r--sw/source/uibase/inc/contentcontroldlg.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/source/uibase/inc/contentcontroldlg.hxx b/sw/source/uibase/inc/contentcontroldlg.hxx
index 7654e3d6befb..df4830e7cd9f 100644
--- a/sw/source/uibase/inc/contentcontroldlg.hxx
+++ b/sw/source/uibase/inc/contentcontroldlg.hxx
@@ -37,6 +37,8 @@ class SwContentControlDlg final : public SfxDialogController
std::vector<SwContentControlListItem> m_aSavedListItems;
std::unique_ptr<weld::CheckButton> m_xShowingPlaceHolderCB;
+ std::unique_ptr<weld::Entry> m_xAlias;
+ std::unique_ptr<weld::Entry> m_xTag;
std::unique_ptr<weld::Frame> m_xCheckboxFrame;
std::unique_ptr<weld::Entry> m_xCheckedState;
std::unique_ptr<weld::Button> m_xCheckedStateBtn;