summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Specht <os@openoffice.org>2001-01-11 11:32:20 +0000
committerOliver Specht <os@openoffice.org>2001-01-11 11:32:20 +0000
commit943b477d733e571cad60a3397cbf699472bbb68b (patch)
tree6e62cccd0837caf6b3b0da72ebcb90fd60b8330a
parent7134a4c7f16f43d87742c4b8cd1cb523d0ac53ba (diff)
redline properties at tables and sections
-rw-r--r--sw/inc/cmdid.h6
-rw-r--r--sw/inc/unoprnms.hxx6
-rw-r--r--sw/inc/unoredline.hxx12
3 files changed, 18 insertions, 6 deletions
diff --git a/sw/inc/cmdid.h b/sw/inc/cmdid.h
index 91a9dc86c5d5..1951219f739b 100644
--- a/sw/inc/cmdid.h
+++ b/sw/inc/cmdid.h
@@ -2,9 +2,9 @@
*
* $RCSfile: cmdid.h,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: jp $ $Date: 2000-12-21 13:00:02 $
+ * last change: $Author: os $ $Date: 2001-01-11 12:32:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -875,6 +875,8 @@ Achtung: Ab sofort sind in diesem File keine C++-Kommentare (//) mehr
#define FN_SKIP_HIDDEN_TEXT (FN_EXTRA2 + 72)
#define FN_SKIP_PROTECTED_TEXT (FN_EXTRA2 + 73)
#define FN_UNO_Z_ORDER (FN_EXTRA2 + 74)
+#define FN_UNO_REDLINE_NODE_START (FN_EXTRA2 + 75)
+#define FN_UNO_REDLINE_NODE_END (FN_EXTRA2 + 76)
/*--------------------------------------------------------------------
Bereich: Fenster
--------------------------------------------------------------------*/
diff --git a/sw/inc/unoprnms.hxx b/sw/inc/unoprnms.hxx
index 265a845c7313..8b2a639d9b61 100644
--- a/sw/inc/unoprnms.hxx
+++ b/sw/inc/unoprnms.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: unoprnms.hxx,v $
*
- * $Revision: 1.30 $
+ * $Revision: 1.31 $
*
- * last change: $Author: dvo $ $Date: 2001-01-10 21:11:43 $
+ * last change: $Author: os $ $Date: 2001-01-11 12:32:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -643,6 +643,8 @@ extern const SwPropNameLen __FAR_DATA UNO_NAME_REDLINE_TYPE;
extern const SwPropNameLen __FAR_DATA UNO_NAME_REDLINE_SUCCESSOR_DATA;
extern const SwPropNameLen __FAR_DATA UNO_NAME_REDLINE_IDENTIFIER;
+extern const SwPropNameLen __FAR_DATA UNO_NAME_START_REDLINE;
+extern const SwPropNameLen __FAR_DATA UNO_NAME_END_REDLINE;
#endif
diff --git a/sw/inc/unoredline.hxx b/sw/inc/unoredline.hxx
index 0785f94c3364..0b8a33383983 100644
--- a/sw/inc/unoredline.hxx
+++ b/sw/inc/unoredline.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: unoredline.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: dvo $ $Date: 2001-01-10 21:11:43 $
+ * last change: $Author: os $ $Date: 2001-01-11 12:32:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -64,7 +64,11 @@
#ifndef _UNOPORT_HXX
#include <unoport.hxx>
#endif
+#ifndef _UNOOBJ_HXX
+#include <unoobj.hxx>
+#endif
+class SwRedline;
/* -----------------------------19.12.00 11:35--------------------------------
---------------------------------------------------------------------------*/
@@ -132,5 +136,9 @@ public:
//XPropertySet
virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue( const ::rtl::OUString& PropertyName ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
+ static ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > CreateRedlineProperties( const SwRedline& rRedline ) throw();
+
};
+
+
#endif