INTEGRATION: CWS impress1 (1.1.1.1.262); FILE MERGED
2003/09/16 13:35:48 af 1.1.1.1.262.1: #111996# Introduction of namespace sd. Use of sub-shells.
This commit is contained in:
parent
306947ff02
commit
eb41309946
3 changed files with 60 additions and 35 deletions
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: fuarea.hxx,v $
|
||||
*
|
||||
* $Revision: 1.1.1.1 $
|
||||
* $Revision: 1.2 $
|
||||
*
|
||||
* last change: $Author: hr $ $Date: 2000-09-18 16:48:38 $
|
||||
* last change: $Author: obo $ $Date: 2004-01-20 11:54:48 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -59,27 +59,34 @@
|
|||
*
|
||||
************************************************************************/
|
||||
|
||||
#ifndef SD_FU_AREA_HXX
|
||||
#define SD_FU_AREA_HXX
|
||||
|
||||
#ifndef _SD_FUAREA_HXX
|
||||
#define _SD_FUAREA_HXX
|
||||
|
||||
#ifndef _SD_FUPOOR_HXX
|
||||
#ifndef SD_FU_POOR_HXX
|
||||
#include "fupoor.hxx"
|
||||
#endif
|
||||
|
||||
class FuArea : public FuPoor
|
||||
namespace sd {
|
||||
|
||||
class FuArea
|
||||
: public FuPoor
|
||||
{
|
||||
public:
|
||||
public:
|
||||
TYPEINFO();
|
||||
|
||||
FuArea(SdViewShell* pViewSh, SdWindow* pWin, SdView* pView,
|
||||
SdDrawDocument* pDoc, SfxRequest& rReq);
|
||||
|
||||
virtual ~FuArea() {}
|
||||
FuArea (
|
||||
ViewShell* pViewSh,
|
||||
::sd::Window* pWin,
|
||||
::sd::View* pView,
|
||||
SdDrawDocument* pDoc,
|
||||
SfxRequest& rReq);
|
||||
virtual ~FuArea (void) {}
|
||||
|
||||
virtual void Activate() {}
|
||||
virtual void Deactivate() {}
|
||||
};
|
||||
|
||||
#endif // _SD_FUAREA_HXX
|
||||
} // end of namespace sd
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: fubullet.hxx,v $
|
||||
*
|
||||
* $Revision: 1.1.1.1 $
|
||||
* $Revision: 1.2 $
|
||||
*
|
||||
* last change: $Author: hr $ $Date: 2000-09-18 16:48:38 $
|
||||
* last change: $Author: obo $ $Date: 2004-01-20 11:55:09 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -59,22 +59,31 @@
|
|||
*
|
||||
************************************************************************/
|
||||
|
||||
#ifndef _SD_FUBULLET_HXX
|
||||
#define _SD_FUBULLET_HXX
|
||||
#ifndef SD_FU_BULLET_HXX
|
||||
#define SD_FU_BULLET_HXX
|
||||
|
||||
#ifndef _SD_FUPOOR_HXX
|
||||
#ifndef SD_FU_POOR_HXX
|
||||
#include "fupoor.hxx"
|
||||
#endif
|
||||
|
||||
class FuBullet : public FuPoor
|
||||
namespace sd {
|
||||
|
||||
class FuBullet
|
||||
: public FuPoor
|
||||
{
|
||||
public:
|
||||
public:
|
||||
TYPEINFO();
|
||||
|
||||
FuBullet( SdViewShell* pViewSh, SdWindow* pWin, SdView* pView,
|
||||
SdDrawDocument* pDoc, SfxRequest& rReq);
|
||||
virtual ~FuBullet() {}
|
||||
FuBullet (
|
||||
ViewShell* pViewSh,
|
||||
::sd::Window* pWin,
|
||||
::sd::View* pView,
|
||||
SdDrawDocument* pDoc,
|
||||
SfxRequest& rReq);
|
||||
virtual ~FuBullet (void) {}
|
||||
};
|
||||
|
||||
#endif // _SD_FUBULLET_HXX
|
||||
} // end of namespace sd
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: fuchar.hxx,v $
|
||||
*
|
||||
* $Revision: 1.1.1.1 $
|
||||
* $Revision: 1.2 $
|
||||
*
|
||||
* last change: $Author: hr $ $Date: 2000-09-18 16:48:38 $
|
||||
* last change: $Author: obo $ $Date: 2004-01-20 11:55:36 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -59,25 +59,34 @@
|
|||
*
|
||||
************************************************************************/
|
||||
|
||||
#ifndef _SD_FUCHAR_HXX
|
||||
#define _SD_FUCHAR_HXX
|
||||
#ifndef SD_FU_CHAR_HXX
|
||||
#define SD_FU_CHAR_HXX
|
||||
|
||||
#ifndef _SD_FUPOOR_HXX
|
||||
#ifndef SD_FU_POOR_HXX
|
||||
#include "fupoor.hxx"
|
||||
#endif
|
||||
|
||||
class FuChar : public FuPoor
|
||||
namespace sd {
|
||||
|
||||
class FuChar
|
||||
: public FuPoor
|
||||
{
|
||||
public:
|
||||
public:
|
||||
TYPEINFO();
|
||||
|
||||
FuChar(SdViewShell* pViewSh, SdWindow* pWin, SdView* pView,
|
||||
SdDrawDocument* pDoc, SfxRequest& rReq);
|
||||
~FuChar() {}
|
||||
FuChar (
|
||||
ViewShell* pViewSh,
|
||||
::sd::Window* pWin,
|
||||
::sd::View* pView,
|
||||
SdDrawDocument* pDoc,
|
||||
SfxRequest& rReq);
|
||||
virtual ~FuChar (void) {}
|
||||
|
||||
virtual void Activate() {} // Function aktivieren
|
||||
virtual void Deactivate() {} // Function deaktivieren
|
||||
};
|
||||
|
||||
#endif // _SD_FUCHAR_HXX
|
||||
} // end of namespace sd
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue