summaryrefslogtreecommitdiff
path: root/sw/inc/unoevent.hxx
diff options
context:
space:
mode:
authorDaniel Vogelheim <dvo@openoffice.org>2001-03-09 13:45:04 +0000
committerDaniel Vogelheim <dvo@openoffice.org>2001-03-09 13:45:04 +0000
commita09d8bfd94049e566fc649b8e850ee66052bd60f (patch)
treec1148c899a01ad45186188374c0da91153b8b51f /sw/inc/unoevent.hxx
parent151875243bb74207436ef9560b85cd27472324c5 (diff)
- added: event implementation for SvxMacroTableDtor
Diffstat (limited to 'sw/inc/unoevent.hxx')
-rw-r--r--sw/inc/unoevent.hxx28
1 files changed, 21 insertions, 7 deletions
diff --git a/sw/inc/unoevent.hxx b/sw/inc/unoevent.hxx
index 4def8083a66f..bfd21ff41446 100644
--- a/sw/inc/unoevent.hxx
+++ b/sw/inc/unoevent.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: unoevent.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: dvo $ $Date: 2001-02-14 13:11:12 $
+ * last change: $Author: dvo $ $Date: 2001-03-09 14:45:04 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -81,6 +81,7 @@
#include <svtools/macitem.hxx>
#endif
+class SvxMacroTableDtor;
class SvxMacroItem;
class SvxMacro;
class SwXFrame;
@@ -89,7 +90,6 @@ class SwXTextGraphicObject;
class SwXTextEmbeddedObject;
class SwXFrameStyle;
class SwFmtINetFmt;
-class SwXAutoTextEntry;
/**
* SwBaseEventDescriptor: Abstract class that implements the basics
@@ -350,16 +350,16 @@ class SwHyperlinkEventDescriptor : public SwDetachedEventDescriptor
{
const ::rtl::OUString sImplName;
+ //XServiceInfo
+ virtual rtl::OUString SAL_CALL getImplementationName(void)
+ throw( ::com::sun::star::uno::RuntimeException );
+
public:
SwHyperlinkEventDescriptor();
virtual ~SwHyperlinkEventDescriptor();
- //XServiceInfo
- virtual rtl::OUString SAL_CALL getImplementationName(void)
- throw( ::com::sun::star::uno::RuntimeException );
-
void copyMacrosFromINetFmt(const SwFmtINetFmt& aFmt);
void copyMacrosIntoINetFmt(SwFmtINetFmt& aFmt);
@@ -369,6 +369,20 @@ public:
};
+class SwMacroTableEventDescriptor : public SwDetachedEventDescriptor
+{
+public:
+
+ SwMacroTableEventDescriptor();
+ SwMacroTableEventDescriptor(const SvxMacroTableDtor& aFmt);
+
+ virtual ~SwMacroTableEventDescriptor();
+
+ void copyMacrosFromTable(const SvxMacroTableDtor& aFmt);
+ void copyMacrosIntoTable(SvxMacroTableDtor& aFmt);
+};
+
+
//
// classes that implement the connection to specific UNO objects
//