summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2013-01-29 15:59:29 +0100
committerMiklos Vajna <vmiklos@suse.cz>2013-01-30 13:03:19 +0100
commitd7efffebd9651dd866349915360ade64b97d7301 (patch)
tree8d4266f0c51e0fa8a1c30d7cc869508db237adb4 /offapi
parent64020cebd676e6ff2b16da5af667b41afa04004d (diff)
Document com.sun.star.text.GradientTable
Introduced in commit 81a46fc86a530f028a5bd2f5e52fe0372d50ee38. Change-Id: I2e54c214916ce1793e07a4a7d42a6cf7e39f3424
Diffstat (limited to 'offapi')
-rw-r--r--offapi/UnoApi_offapi.mk1
-rw-r--r--offapi/com/sun/star/text/GradientTable.idl33
2 files changed, 34 insertions, 0 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk
index eda41014c68d..72a590e4aaf3 100644
--- a/offapi/UnoApi_offapi.mk
+++ b/offapi/UnoApi_offapi.mk
@@ -1277,6 +1277,7 @@ $(eval $(call gb_UnoApi_add_idlfiles_noheader,offapi,offapi/com/sun/star/text,\
GenericTextDocument \
GlobalDocument \
GlobalSettings \
+ GradientTable \
IllustrationsIndex \
InContentMetadata \
LineNumberingProperties \
diff --git a/offapi/com/sun/star/text/GradientTable.idl b/offapi/com/sun/star/text/GradientTable.idl
new file mode 100644
index 000000000000..b7f433f939fa
--- /dev/null
+++ b/offapi/com/sun/star/text/GradientTable.idl
@@ -0,0 +1,33 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+#ifndef __com_sun_star_text_GradientTable_idl__
+#define __com_sun_star_text_GradientTable_idl__
+
+#include <com/sun/star/container/XNameContainer.idl>
+
+
+ module com { module sun { module star { module text {
+
+
+/** this is a container for <type scope="com::sun::star::awt">Gradient</type>s, used for Writer TextFrames
+*/
+service GradientTable
+{
+ /** this container lets you access the <type scope="com::sun::star::awt">Gradient</type>s that
+ are indexed with a name inside Writer.
+ */
+ interface com::sun::star::container::XNameContainer;
+};
+
+
+}; }; }; };
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */