summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/fuconbez.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-01-20 10:56:47 +0000
committerOliver Bolte <obo@openoffice.org>2004-01-20 10:56:47 +0000
commit0159edfd9d4a3ef6034799b7044425567d722cd9 (patch)
treec14a51d86854ade01bceeab64452b95db13fb68a /sd/source/ui/inc/fuconbez.hxx
parent99162e8adf88c00860775684a2883ab3d949a5f2 (diff)
INTEGRATION: CWS impress1 (1.2.226); FILE MERGED
2003/09/16 13:35:50 af 1.2.226.1: #111996# Introduction of namespace sd. Use of sub-shells.
Diffstat (limited to 'sd/source/ui/inc/fuconbez.hxx')
-rw-r--r--sd/source/ui/inc/fuconbez.hxx48
1 files changed, 25 insertions, 23 deletions
diff --git a/sd/source/ui/inc/fuconbez.hxx b/sd/source/ui/inc/fuconbez.hxx
index 3ff048cf0a98..c459437b3b60 100644
--- a/sd/source/ui/inc/fuconbez.hxx
+++ b/sd/source/ui/inc/fuconbez.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fuconbez.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: aw $ $Date: 2002-02-15 17:02:42 $
+ * last change: $Author: obo $ $Date: 2004-01-20 11:56:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,39 +59,37 @@
*
************************************************************************/
-#ifndef _SD_FUCONBEZ_HXX
-#define _SD_FUCONBEZ_HXX
+#ifndef SD_FU_CONSTRUCT_BEZIER_HXX
+#define SD_FU_CONSTRUCT_BEZIER_HXX
-#ifndef _SD_FUCONSTR_HXX
+#ifndef SD_FU_CONSTRUCT_HXX
#include "fuconstr.hxx"
#endif
-class SdDrawViewShell;
-class SdWindow;
-class SdDrawView;
class SdDrawDocument;
+namespace sd {
+class DrawView;
+class DrawViewShell;
+class Window;
-/*************************************************************************
-|*
-|* Basisklasse fuer alle Funktionen
-|*
-\************************************************************************/
-class FuConstBezPoly : public FuConstruct
+class FuConstructBezierPolygon
+ : public FuConstruct
{
- protected:
- USHORT nEditMode;
-
- public:
+public:
TYPEINFO();
- FuConstBezPoly(SdViewShell* pViewSh, SdWindow* pWin, SdView* pView,
- SdDrawDocument* pDoc, SfxRequest& rReq);
+ FuConstructBezierPolygon (
+ ViewShell* pViewSh,
+ ::sd::Window* pWin,
+ ::sd::View* pView,
+ SdDrawDocument* pDoc,
+ SfxRequest& rReq);
+ virtual ~FuConstructBezierPolygon (void);
- virtual ~FuConstBezPoly();
- // Mouse- & Key-Events
+ // Mouse- & Key-Events
virtual BOOL KeyInput(const KeyEvent& rKEvt);
virtual BOOL MouseMove(const MouseEvent& rMEvt);
virtual BOOL MouseButtonUp(const MouseEvent& rMEvt);
@@ -107,8 +105,12 @@ class FuConstBezPoly : public FuConstruct
// #97016#
virtual SdrObject* CreateDefaultObject(const sal_uInt16 nID, const Rectangle& rRectangle);
+
+protected:
+ USHORT nEditMode;
};
+} // end of namespace sd
-#endif // _FUCONBEZ_HXX
+#endif