summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
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: */