diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-03-13 13:47:38 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-03-13 14:52:18 +0000 |
commit | c3d3b0220b322072c0fd731fe685587a46eef2d2 (patch) | |
tree | 3865c3df2d3cfd16f917012a8958bacbe2f61782 /sfx2/inc | |
parent | f453065a1be4f9031ef86a9f40231d400543b695 (diff) |
convert manage style page to .ui
Change-Id: I42d08439c7aaf90ba2090012757c2ece88ba023c
Diffstat (limited to 'sfx2/inc')
-rw-r--r-- | sfx2/inc/sfx2/mgetempl.hxx | 36 |
1 files changed, 11 insertions, 25 deletions
diff --git a/sfx2/inc/sfx2/mgetempl.hxx b/sfx2/inc/sfx2/mgetempl.hxx index 6fce1f496d24..553c5bd745f3 100644 --- a/sfx2/inc/sfx2/mgetempl.hxx +++ b/sfx2/inc/sfx2/mgetempl.hxx @@ -22,13 +22,9 @@ #include <vcl/edit.hxx> #include <vcl/fixed.hxx> #include <vcl/lstbox.hxx> -#include <svtools/stdctrl.hxx> -#include <svtools/svmedit.hxx> - +#include <vcl/vclmedit.hxx> #include <sfx2/tabdlg.hxx> -#include <svtools/svmedit2.hxx> - /* expected: SID_TEMPLATE_NAME : In: StringItem, Name of Template SID_TEMPLATE_FAMILY : In: Family of Template @@ -38,29 +34,23 @@ class SfxStyleFamilies; class SfxStyleFamilyItem; class SfxStyleSheetBase; -#ifdef _SFXDLG_HXX -#define FixedInfo FixedText -#endif - class SfxManageStyleSheetPage : public SfxTabPage { - FixedText aNameFt; - Edit aNameEd; - ExtMultiLineEdit aNameMLE; + VclMultiLineEdit* m_pNameRo; + Edit* m_pNameRw; - CheckBox aAutoCB; + CheckBox* m_pAutoCB; - FixedText aFollowFt; - ListBox aFollowLb; + FixedText* m_pFollowFt; + ListBox* m_pFollowLb; - FixedText aBaseFt; - ListBox aBaseLb; + FixedText* m_pBaseFt; + ListBox* m_pBaseLb; - FixedText aFilterFt; - ListBox aFilterLb; + FixedText* m_pFilterFt; + ListBox* m_pFilterLb; - FixedLine aDescGb; - FixedInfo aDescFt; + FixedText *m_pDescFt; SfxStyleSheetBase *pStyle; SfxStyleFamilies *pFamilies; @@ -98,10 +88,6 @@ protected: virtual int DeactivatePage(SfxItemSet * = 0); }; -#ifdef FixedInfo -#undef FixedInfo -#endif - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |