summaryrefslogtreecommitdiffstats
path: root/cui/source/inc/transfrm.hxx
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@edx.srv.br>2013-08-18 20:20:23 -0300
committerCaolán McNamara <caolanm@redhat.com>2013-08-19 10:05:31 +0000
commitb232299c3128fa0d0ebc727a4faaf8dd4ef831c1 (patch)
treeff1a67dd9924dbbbfc40b1ea82b64bba4e877a75 /cui/source/inc/transfrm.hxx
parentUpdated core (diff)
downloadcore-b232299c3128fa0d0ebc727a4faaf8dd4ef831c1.tar.gz
core-b232299c3128fa0d0ebc727a4faaf8dd4ef831c1.zip
Convert position & size tab page to widget UI
Conflicts: cui/source/inc/helpid.hrc Change-Id: I5265e74e88654136b4eeeabf7cfcae24dec08e38 Reviewed-on: https://gerrit.libreoffice.org/5504 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui/source/inc/transfrm.hxx')
-rw-r--r--cui/source/inc/transfrm.hxx40
1 files changed, 17 insertions, 23 deletions
diff --git a/cui/source/inc/transfrm.hxx b/cui/source/inc/transfrm.hxx
index c1417d67325f..bc474fca950c 100644
--- a/cui/source/inc/transfrm.hxx
+++ b/cui/source/inc/transfrm.hxx
@@ -78,35 +78,29 @@ class SvxPositionSizeTabPage : public SvxTabPage
private:
// position
- FixedLine maFlPosition;
- FixedText maFtPosX;
- MetricField maMtrPosX;
- FixedText maFtPosY;
- MetricField maMtrPosY;
- FixedText maFtPosReference;
- SvxRectCtl maCtlPos;
+ VclFrame* m_pFlPosition;
+ MetricField* m_pMtrPosX;
+ MetricField* m_pMtrPosY;
+ SvxRectCtl* m_pCtlPos;
// size
- FixedLine maFlSize;
- FixedText maFtWidth;
- MetricField maMtrWidth;
- FixedText maFtHeight;
- MetricField maMtrHeight;
- CheckBox maCbxScale;
- FixedText maFtSizeReference;
- SvxRectCtl maCtlSize;
+ VclFrame* m_pFlSize;
+ FixedText* m_pFtWidth;
+ MetricField* m_pMtrWidth;
+ FixedText* m_pFtHeight;
+ MetricField* m_pMtrHeight;
+ CheckBox* m_pCbxScale;
+ SvxRectCtl* m_pCtlSize;
// protect
- FixedLine maFlProtect;
- TriStateBox maTsbPosProtect;
- TriStateBox maTsbSizeProtect;
+ VclFrame* m_pFlProtect;
+ TriStateBox* m_pTsbPosProtect;
+ TriStateBox* m_pTsbSizeProtect;
// adjust
- FixedLine maFlAdjust;
- TriStateBox maTsbAutoGrowWidth;
- TriStateBox maTsbAutoGrowHeight;
-
- FixedLine maFlDivider;
+ VclFrame* m_pFlAdjust;
+ TriStateBox* m_pTsbAutoGrowWidth;
+ TriStateBox* m_pTsbAutoGrowHeight;
private:
const SfxItemSet& mrOutAttrs;