summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/DrawViewShell.hxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2007-04-03 15:02:30 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2007-04-03 15:02:30 +0000
commit6a9b034106d01bc6346ecde2ed3a2da740a5c1d6 (patch)
tree9539690674437d067b0581ffd1b1a59a2e6cb59e /sd/source/ui/inc/DrawViewShell.hxx
parentf898056d676f92a935a763ed8e9d0dce72512a97 (diff)
INTEGRATION: CWS components1 (1.19.40); FILE MERGED
2007/01/29 17:22:51 af 1.19.40.5: #i68075# New RelocateToParentWindow() method. 2007/01/25 15:03:50 af 1.19.40.4: RESYNC: (1.20-1.21); FILE MERGED 2006/11/21 16:19:56 af 1.19.40.3: RESYNC: (1.19-1.20); FILE MERGED 2006/09/15 09:33:58 af 1.19.40.2: #i68075# Removed arguments from Resize(). 2006/08/22 11:10:45 af 1.19.40.1: #i68075# Added implementation of the Shutdown() method.
Diffstat (limited to 'sd/source/ui/inc/DrawViewShell.hxx')
-rw-r--r--sd/source/ui/inc/DrawViewShell.hxx17
1 files changed, 11 insertions, 6 deletions
diff --git a/sd/source/ui/inc/DrawViewShell.hxx b/sd/source/ui/inc/DrawViewShell.hxx
index 81fff024e63b..47263ace3813 100644
--- a/sd/source/ui/inc/DrawViewShell.hxx
+++ b/sd/source/ui/inc/DrawViewShell.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: DrawViewShell.hxx,v $
*
- * $Revision: 1.21 $
+ * $Revision: 1.22 $
*
- * last change: $Author: kz $ $Date: 2006-12-12 17:33:07 $
+ * last change: $Author: rt $ $Date: 2007-04-03 16:02:30 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -128,7 +128,9 @@ public:
virtual void Init (bool bIsMainViewShell);
- virtual void Paint(const Rectangle& rRect, ::sd::Window* pWin);
+ virtual void Shutdown (void);
+
+ virtual void Paint(const Rectangle& rRect, ::sd::Window* pWin);
/** Set the position and size of the area which contains the GUI
elements like rulers, sliders, and buttons as well as the document
@@ -165,9 +167,7 @@ public:
virtual void MouseButtonDown(const MouseEvent& rMEvt, ::sd::Window* pWin);
virtual void Command(const CommandEvent& rCEvt, ::sd::Window* pWin);
- virtual void Resize (const Point& rPos, const Size& rSize);
- // virtual void OuterResizePixel(const Point& rPos, const Size& rSize);
- // virtual void InnerResizePixel(const Point& rPos, const Size& rSize);
+ virtual void Resize (void);
void ShowMousePosInfo(const Rectangle& rRect, ::sd::Window* pWin);
@@ -389,6 +389,11 @@ public:
DrawView* GetDrawView() const { return mpDrawView; }
+ /** Relocation to a new parent window is not supported for DrawViewShell
+ objects so this method always returns <FALSE/>.
+ */
+ virtual bool RelocateToParentWindow (::Window* pParentWindow);
+
protected:
DrawView* mpDrawView;
SdPage* mpActualPage;