summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2007-07-25 07:19:39 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2007-07-25 07:19:39 +0000
commit19c431a0b35e5b1b77a7b2654627ce905028b10f (patch)
treef260110fc14442d27c4e9973db38de453561eda3 /offapi
parentea9ab28360fb6a900945f456f18765fe065032d3 (diff)
INTEGRATION: CWS chart07 (1.1.2); FILE ADDED
2007/06/25 12:48:01 bm 1.1.2.1: #i74653# new interfaces for Undo
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/chart2/XUndoSupplier.idl65
1 files changed, 65 insertions, 0 deletions
diff --git a/offapi/com/sun/star/chart2/XUndoSupplier.idl b/offapi/com/sun/star/chart2/XUndoSupplier.idl
new file mode 100644
index 000000000..9d2e590c3
--- /dev/null
+++ b/offapi/com/sun/star/chart2/XUndoSupplier.idl
@@ -0,0 +1,65 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XUndoSupplier.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: rt $ $Date: 2007-07-25 08:19:39 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2005 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ ************************************************************************/
+#ifndef com_sun_star_chart2_XUndoSupplier_idl
+#define com_sun_star_chart2_XUndoSupplier_idl
+
+#include <com/sun/star/chart2/XUndoManager.idl>
+
+module com
+{
+module sun
+{
+module star
+{
+module chart2
+{
+
+/** An interface for providing an UndoManager based on frame::XModel
+ objects.
+ */
+interface XUndoSupplier : ::com::sun::star::uno::XInterface
+{
+ /** @return an undo manager that allows doing undo and redo of a
+ frame::XModel based object
+ */
+ XUndoManager getUndoManager();
+};
+
+} ; // chart2
+} ; // com
+} ; // sun
+} ; // star
+
+#endif