From 00a3143b31b4f60cafcf5dcd94f4891bb920671a Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 3 Dec 2013 10:25:09 +0000 Subject: convert the last tabpage in sd to .ui Change-Id: I49eb93ec73d0783ab62eab5ce469526dd069e0b0 --- sd/source/ui/inc/tpaction.hxx | 40 ++++++++++++++++++---------------------- 1 file changed, 18 insertions(+), 22 deletions(-) (limited to 'sd/source/ui/inc/tpaction.hxx') diff --git a/sd/source/ui/inc/tpaction.hxx b/sd/source/ui/inc/tpaction.hxx index 92f314f6fc4f..17675fd3f7a4 100644 --- a/sd/source/ui/inc/tpaction.hxx +++ b/sd/source/ui/inc/tpaction.hxx @@ -23,8 +23,8 @@ #include #include -#include #include +#include #include #include #include @@ -40,15 +40,12 @@ class SdDrawDocument; /** * Effect-SingleTab-Dialog */ -class SdActionDlg : public SfxNoLayoutSingleTabDialog +class SdActionDlg : public SfxSingleTabDialog { private: const SfxItemSet& rOutAttrs; - public: - - SdActionDlg( Window* pParent, const SfxItemSet* pAttr, ::sd::View* pView ); - ~SdActionDlg() {}; + SdActionDlg(Window* pParent, const SfxItemSet* pAttr, ::sd::View* pView); }; /** @@ -57,22 +54,21 @@ public: class SdTPAction : public SfxTabPage { private: - FixedText aFtAction; // always visible - ListBox aLbAction; - - FixedText aFtTree; // jump destination controls - SdPageObjsTLB aLbTree; - SdPageObjsTLB aLbTreeDocument; - ListBox aLbOLEAction; - - FixedLine aFlSeparator; - Edit aEdtSound; - Edit aEdtBookmark; - Edit aEdtDocument; - Edit aEdtProgram; - Edit aEdtMacro; - PushButton aBtnSearch; - PushButton aBtnSeek; + ListBox* m_pLbAction; + + FixedText* m_pFtTree; // jump destination controls + SdPageObjsTLB* m_pLbTree; + SdPageObjsTLB* m_pLbTreeDocument; + ListBox* m_pLbOLEAction; + + VclFrame* m_pFrame; + Edit* m_pEdtSound; + Edit* m_pEdtBookmark; + Edit* m_pEdtDocument; + Edit* m_pEdtProgram; + Edit* m_pEdtMacro; + PushButton* m_pBtnSearch; + PushButton* m_pBtnSeek; const SfxItemSet& rOutAttrs; const ::sd::View* mpView; -- cgit