summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/fupage.hxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2005-12-14 16:14:29 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2005-12-14 16:14:29 +0000
commit0a65c25e05597a8807de750a0eab5ef7fe452bfd (patch)
tree8073529caf49e8de86bfdbf77efb285f8d26598d /sd/source/ui/inc/fupage.hxx
parent9f474d6b63231adcf2eea36c6d39edc42251b233 (diff)
INTEGRATION: CWS impressfunctions (1.4.40); FILE MERGED
2005/10/28 10:56:52 cl 1.4.40.1: #125341# reworked FuPoor classes to use refcounting
Diffstat (limited to 'sd/source/ui/inc/fupage.hxx')
-rw-r--r--sd/source/ui/inc/fupage.hxx23
1 files changed, 14 insertions, 9 deletions
diff --git a/sd/source/ui/inc/fupage.hxx b/sd/source/ui/inc/fupage.hxx
index fc3085c1593d..247b437fea8b 100644
--- a/sd/source/ui/inc/fupage.hxx
+++ b/sd/source/ui/inc/fupage.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: fupage.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 05:37:08 $
+ * last change: $Author: rt $ $Date: 2005-12-14 17:14:29 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -53,13 +53,8 @@ class FuPage
public:
TYPEINFO();
- FuPage (
- ViewShell* pViewSh,
- ::sd::Window* pWin,
- ::sd::View* pView,
- SdDrawDocument* pDoc,
- SfxRequest& rReq );
- virtual ~FuPage (void);
+ static FunctionReference Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq );
+ virtual void DoExecute( SfxRequest& rReq );
virtual void Activate(); // Function aktivieren
virtual void Deactivate(); // Function deaktivieren
@@ -67,7 +62,17 @@ class FuPage
const SfxItemSet* ExecuteDialog( Window* pParent );
void ApplyItemSet( const SfxItemSet* pArgs );
+protected:
+ virtual ~FuPage (void);
+
private:
+ FuPage (
+ ViewShell* pViewSh,
+ ::sd::Window* pWin,
+ ::sd::View* pView,
+ SdDrawDocument* pDoc,
+ SfxRequest& rReq );
+
SfxRequest& mrReq;
const SfxItemSet* mpArgs;
SdBackgroundObjUndoAction* mpBackgroundObjUndoAction;