summaryrefslogtreecommitdiffstats
path: root/cui/source/inc/tabstpge.hxx
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@edx.srv.br>2013-06-30 23:48:19 -0300
committerCaolán McNamara <caolanm@redhat.com>2013-07-03 11:47:50 +0000
commitc98e1b127be779cbe9b388afa043f8d3c8798183 (patch)
tree3ac0c9a1acb500958e362bd38089074e46aaf86e /cui/source/inc/tabstpge.hxx
parentarrange a way to describe non-dropdown MetricBoxes (diff)
downloadcore-c98e1b127be779cbe9b388afa043f8d3c8798183.tar.gz
core-c98e1b127be779cbe9b388afa043f8d3c8798183.zip
Convert tab stop page to widget UI
Conflicts: cui/UIConfig_cui.mk Change-Id: Idd4401966933da1e4de3e3f31f74e2908dd7d705 Reviewed-on: https://gerrit.libreoffice.org/4644 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui/source/inc/tabstpge.hxx')
-rw-r--r--cui/source/inc/tabstpge.hxx56
1 files changed, 25 insertions, 31 deletions
diff --git a/cui/source/inc/tabstpge.hxx b/cui/source/inc/tabstpge.hxx
index e34c872b6af9..8ffa90345e7e 100644
--- a/cui/source/inc/tabstpge.hxx
+++ b/cui/source/inc/tabstpge.hxx
@@ -68,44 +68,38 @@ private:
SvxTabulatorTabPage( Window* pParent, const SfxItemSet& rSet );
// tabulators and positions
- FixedLine aTabLabel;
- MetricBox aTabBox;
- FixedLine aTabLabelVert;
-
- FixedLine aTabTypeLabel;
+ MetricBox* m_pTabBox;
// TabType
- RadioButton aLeftTab;
- RadioButton aRightTab;
- RadioButton aCenterTab;
- RadioButton aDezTab;
-
- TabWin_Impl* pLeftWin;
- TabWin_Impl* pRightWin;
- TabWin_Impl* pCenterWin;
- TabWin_Impl* pDezWin;
-
- FixedText aDezCharLabel;
- Edit aDezChar;
-
- FixedLine aFillLabel;
-
- RadioButton aNoFillChar;
- RadioButton aFillPoints;
- RadioButton aFillDashLine ;
- RadioButton aFillSolidLine;
- RadioButton aFillSpecial;
- Edit aFillChar;
-
- PushButton aNewBtn;
- PushButton aDelAllBtn;
- PushButton aDelBtn;
+ RadioButton* m_pLeftTab;
+ RadioButton* m_pRightTab;
+ RadioButton* m_pCenterTab;
+ RadioButton* m_pDezTab;
+
+ TabWin_Impl* m_pLeftWin;
+ TabWin_Impl* m_pRightWin;
+ TabWin_Impl* m_pCenterWin;
+ TabWin_Impl* m_pDezWin;
+
+ FixedText* m_pDezCharLabel;
+ Edit* m_pDezChar;
+
+ RadioButton* m_pNoFillChar;
+ RadioButton* m_pFillPoints;
+ RadioButton* m_pFillDashLine ;
+ RadioButton* m_pFillSolidLine;
+ RadioButton* m_pFillSpecial;
+ Edit* m_pFillChar;
+
+ PushButton* m_pNewBtn;
+ PushButton* m_pDelAllBtn;
+ PushButton* m_pDelBtn;
// local variables, internal functions
SvxTabStop aAktTab;
SvxTabStopItem aNewTabs;
long nDefDist;
FieldUnit eDefUnit;
- sal_Bool bCheck;
+ sal_Bool bCheck;
void InitTabPos_Impl( sal_uInt16 nPos = 0 );
void SetFillAndTabType_Impl();