summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/morphdlg.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-01-20 11:18:51 +0000
committerOliver Bolte <obo@openoffice.org>2004-01-20 11:18:51 +0000
commitf4b964f76c70fbe89f10307b4a5b3daecc933849 (patch)
treedc8909ab3958e4afd527a4cb81b887fdd5e72ad9 /sd/source/ui/inc/morphdlg.hxx
parent368b03b5b1699d90fd7825928a16bff942be06a4 (diff)
INTEGRATION: CWS impress1 (1.2.248); FILE MERGED
2003/09/16 13:42:34 af 1.2.248.1: #111996# Introduction of namespace sd. Use of sub-shells.
Diffstat (limited to 'sd/source/ui/inc/morphdlg.hxx')
-rw-r--r--sd/source/ui/inc/morphdlg.hxx38
1 files changed, 21 insertions, 17 deletions
diff --git a/sd/source/ui/inc/morphdlg.hxx b/sd/source/ui/inc/morphdlg.hxx
index 9b55e1b242ff..f6008becd82e 100644
--- a/sd/source/ui/inc/morphdlg.hxx
+++ b/sd/source/ui/inc/morphdlg.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: morphdlg.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: thb $ $Date: 2001-06-15 18:16:52 $
+ * last change: $Author: obo $ $Date: 2004-01-20 12:18:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,9 +59,8 @@
*
************************************************************************/
-
-#ifndef _SD_MORPHDLG_HXX
-#define _SD_MORPHDLG_HXX
+#ifndef SD_MORPH_DLG_HXX
+#define SD_MORPH_DLG_HXX
#ifndef _SV_BUTTON_HXX //autogen
#include <vcl/imagebtn.hxx>
@@ -81,6 +80,7 @@
class SdrObject;
+namespace sd {
/******************************************************************************
|*
@@ -88,8 +88,22 @@ class SdrObject;
|*
\******************************************************************************/
-class SdMorphDlg : public ModalDialog
+class MorphDlg
+ : public ModalDialog
{
+public:
+ MorphDlg (
+ ::Window* pParent,
+ const SdrObject* pObj1,
+ const SdrObject* pObj2);
+ virtual ~MorphDlg (void);
+
+ void SaveSettings() const;
+ USHORT GetFadeSteps() const { return (USHORT) aMtfSteps.GetValue(); }
+ BOOL IsAttributeFade() const { return aCbxAttributes.IsChecked(); }
+ BOOL IsOrientationFade() const { return aCbxOrientation.IsChecked(); }
+
+private:
FixedLine aGrpPreset;
FixedText aFtSteps;
MetricField aMtfSteps;
@@ -102,20 +116,10 @@ class SdMorphDlg : public ModalDialog
SdrObject* pSdrObj2;
void LoadSettings();
-
-
-public:
-
- SdMorphDlg( Window* pParent, const SdrObject* pObj1, const SdrObject* pObj2 );
- ~SdMorphDlg();
-
- void SaveSettings() const;
- USHORT GetFadeSteps() const { return (USHORT) aMtfSteps.GetValue(); }
- BOOL IsAttributeFade() const { return aCbxAttributes.IsChecked(); }
- BOOL IsOrientationFade() const { return aCbxOrientation.IsChecked(); }
};
#endif
+} // end of namespace sd