diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-10-04 18:00:35 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-10-04 18:00:35 +0000 |
commit | d0120e34f1a99438a7659d733e2070a9813d7131 (patch) | |
tree | b1911062d68446387f22ac97bc3f1f3e04985234 /sw/inc/swcli.hxx | |
parent | 97f140238b692f6f67c74bc47b5854cb0bc850a0 (diff) |
INTEGRATION: CWS mav09 (1.1.670); FILE MERGED
2004/07/15 12:26:45 mba 1.1.670.3: #i27773#: cleaning up todos: scaling in inplace mode, update chart after resizing and some more
2004/06/14 14:45:41 mba 1.1.670.2: #i27773#: new handling for resizing of active objects
2004/05/18 16:43:06 mba 1.1.670.1: RESYNC to m39
Diffstat (limited to 'sw/inc/swcli.hxx')
-rw-r--r-- | sw/inc/swcli.hxx | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/sw/inc/swcli.hxx b/sw/inc/swcli.hxx index 12bf6b9a7e06..c47a9c76244c 100644 --- a/sw/inc/swcli.hxx +++ b/sw/inc/swcli.hxx @@ -2,9 +2,9 @@ * * $RCSfile: swcli.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: mib $ $Date: 2002-08-09 08:41:13 $ + * last change: $Author: kz $ $Date: 2004-10-04 19:00:35 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -61,8 +61,14 @@ #ifndef _SWCLI_HXX #define _SWCLI_HXX +#ifndef _COM_SUN_STAR_EMBED_XEMBEDDEDOBJECT_HPP_ +#include <com/sun/star/embed/XEmbeddedObject.hpp> +#endif + +#include <svtools/embedhlp.hxx> + #ifndef _SFX_CLIENTSH_HXX //autogen -#include <sfx2/clientsh.hxx> +#include <sfx2/ipclient.hxx> #endif class SwView; @@ -72,15 +78,14 @@ class SwOleClient : public SfxInPlaceClient { BOOL bInDoVerb; BOOL bOldCheckForOLEInCaption; -protected: - virtual void RequestObjAreaPixel( const Rectangle & rObjRect ); - virtual void ViewChanged( USHORT nAspect ); - -public: - SwOleClient( SwView *pView, SwEditWin *pWin ); + virtual void ObjectAreaChanged(); + virtual void RequestNewObjectArea( Rectangle& ); + virtual void ViewChanged(); virtual void MakeVisible(); - virtual void MakeViewData(); + +public: + SwOleClient( SwView *pView, SwEditWin *pWin, const svt::EmbeddedObjectRef& ); void SetInDoVerb( BOOL bFlag ) { bInDoVerb = bFlag; } BOOL IsInDoVerb() const { return bInDoVerb; } |