diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-10-13 13:16:31 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-10-13 14:16:54 +0100 |
commit | b859d84e471fdb70b61607d2d919a7907d074bd0 (patch) | |
tree | e379df9933a981feb588f9f53ed16d8197192204 /cui/source/inc | |
parent | ec66ad595393312525937b628297cb3494776e1f (diff) |
implement dialog control over enhanced shape control points
use case is a desire to enable viewing and setting rounded rectangle radiuses
to an exact known value
Change-Id: I7e6a4db0699076950adf5869a61825159766c46a
Diffstat (limited to 'cui/source/inc')
-rw-r--r-- | cui/source/inc/transfrm.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cui/source/inc/transfrm.hxx b/cui/source/inc/transfrm.hxx index e5892be1c21f..f79897f94e28 100644 --- a/cui/source/inc/transfrm.hxx +++ b/cui/source/inc/transfrm.hxx @@ -237,6 +237,12 @@ private: VclPtr<VclFrame> m_pFlAngle; VclPtr<MetricField> m_pMtrAngle; + VclPtr<VclFrame> m_aControlGroups[2]; + VclPtr<VclContainer> m_aControlGroupX[2]; + VclPtr<MetricField> m_aControlX[2]; + VclPtr<VclContainer> m_aControlGroupY[2]; + VclPtr<MetricField> m_aControlY[2]; + const SfxItemSet& rOutAttrs; const SdrView* pView; |