diff options
author | Olivier Hallot <olivier.hallot@edx.srv.br> | 2013-08-17 20:41:26 -0300 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-08-18 12:46:39 +0000 |
commit | 87e21946fa9a81c403a146d03579691537c1352c (patch) | |
tree | 7fb4d0966004e588bf674f7ba04ad616878936e0 /cui/source/inc | |
parent | b96c5920902822c858b56f10b75141fe8e7fee51 (diff) |
Convert text animations tab page to widget UI
(src file will be deleted in a forthcomming patch)
Change-Id: Iabb77ae70e536afe0ba24b8922be98ea87441f3f
Reviewed-on: https://gerrit.libreoffice.org/5485
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui/source/inc')
-rw-r--r-- | cui/source/inc/textanim.hxx | 44 |
1 files changed, 20 insertions, 24 deletions
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; |