From 87e21946fa9a81c403a146d03579691537c1352c Mon Sep 17 00:00:00 2001 From: Olivier Hallot Date: Sat, 17 Aug 2013 20:41:26 -0300 Subject: Convert text animations tab page to widget UI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (src file will be deleted in a forthcomming patch) Change-Id: Iabb77ae70e536afe0ba24b8922be98ea87441f3f Reviewed-on: https://gerrit.libreoffice.org/5485 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- cui/source/inc/textanim.hxx | 44 ++++++++++++++++++++------------------------ 1 file changed, 20 insertions(+), 24 deletions(-) (limited to 'cui/source/inc') diff --git a/cui/source/inc/textanim.hxx b/cui/source/inc/textanim.hxx index 317bf0568b4c..e70f20b78726 100644 --- a/cui/source/inc/textanim.hxx +++ b/cui/source/inc/textanim.hxx @@ -37,30 +37,26 @@ class SdrView; class SvxTextAnimationPage : public SfxTabPage { private: - FixedLine aFlEffect; - FixedText aFtEffects; - ListBox aLbEffect; - FixedText aFtDirection; - ImageButton aBtnUp; - ImageButton aBtnLeft; - ImageButton aBtnRight; - ImageButton aBtnDown; - - FixedLine aFlProperties; - TriStateBox aTsbStartInside; - TriStateBox aTsbStopInside; - - FixedText aFtCount; - TriStateBox aTsbEndless; - NumericField aNumFldCount; - - FixedText aFtAmount; - TriStateBox aTsbPixel; - MetricField aMtrFldAmount; - - FixedText aFtDelay; - TriStateBox aTsbAuto; - MetricField aMtrFldDelay; + ListBox* m_pLbEffect; + VclBox* m_pBoxDirection; + PushButton* m_pBtnUp; + PushButton* m_pBtnLeft; + PushButton* m_pBtnRight; + PushButton* m_pBtnDown; + + VclFrame* m_pFlProperties; + TriStateBox* m_pTsbStartInside; + TriStateBox* m_pTsbStopInside; + + VclBox* m_pBoxCount; + TriStateBox* m_pTsbEndless; + NumericField* m_pNumFldCount; + + TriStateBox* m_pTsbPixel; + MetricField* m_pMtrFldAmount; + + TriStateBox* m_pTsbAuto; + MetricField* m_pMtrFldDelay; const SfxItemSet& rOutAttrs; SdrTextAniKind eAniKind; -- cgit