summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/text/textfield
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2009-01-21 15:28:14 +0000
committerVladimir Glazounov <vg@openoffice.org>2009-01-21 15:28:14 +0000
commitf554cbf974906bcaa6cc78ee5cef2e60ffdf15d0 (patch)
treeab743344f60b3b022acc99dac733ce0fefe0961c /offapi/com/sun/star/text/textfield
parentdde7a5a605a6f615bb05249e1be3d9d4c8c22e88 (diff)
CWS-TOOLING: integrate CWS fwk95
2009-01-15 13:24:14 +0100 cd r266366 : #i96390# Change method name to use UNO AWT style for mnemonics 2009-01-15 13:23:30 +0100 cd r266365 : #i96390# Change method name to use UNO AWT style for mnemonics 2009-01-12 17:25:13 +0100 cd r266174 : #i97983# Check pointer returned by dynamic_cast 2009-01-12 15:31:40 +0100 cd r266162 : #i97983# Create toolkit popup menus via service manager instead of implementation class 2008-12-11 15:04:34 +0100 cd r265305 : #i95863# Remove user defined properties 2008-12-11 14:56:45 +0100 cd r265302 : #i95606# Update documentation for textfields 2008-12-11 10:06:20 +0100 cd r265250 : #i96390# Fix warning on Solaris compiler 2008-12-09 17:27:32 +0100 cd r265119 : CWS-TOOLING: rebase CWS fwk95 to trunk@264807 (milestone: DEV300:m37) 2008-12-01 13:29:43 +0100 cd r264597 : #i96390# New interfaces and structures for complete UNO AWT menu API 2008-12-01 13:25:22 +0100 cd r264596 : #i96390# Added implementation of the new UNO AWT interfaces and structures for menus 2008-11-28 13:55:19 +0100 cd r264553 : #i96640# Fixed wrong property type for MenuBarCloser 2008-11-28 13:53:56 +0100 cd r264552 : #i96621# Fixed ambiguous usage of && and || 2008-11-18 16:05:45 +0100 cd r263781 : #i95316# Initialize SvtTabAppearanceCfg to enable system settings changed notiifcation code 2008-11-18 16:05:43 +0100 cd r263780 : #i96155# Fix wrong statement to check for enabled argument 2008-10-20 16:54:37 +0200 cd r262328 : #i10000# migrate CWS fwk95 to SVN.
Diffstat (limited to 'offapi/com/sun/star/text/textfield')
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Custom.idl73
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Description.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Info0.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Info1.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Info2.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Info3.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Keywords.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Revision.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Subject.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Title.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/makefile.mk4
11 files changed, 102 insertions, 11 deletions
diff --git a/offapi/com/sun/star/text/textfield/docinfo/Custom.idl b/offapi/com/sun/star/text/textfield/docinfo/Custom.idl
new file mode 100644
index 000000000000..55b6489500f1
--- /dev/null
+++ b/offapi/com/sun/star/text/textfield/docinfo/Custom.idl
@@ -0,0 +1,73 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2008 by Sun Microsystems, Inc.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: Custom.idl,v $
+ * $Revision: 1.1.2.1 $
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org 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 version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+#ifndef __com_sun_star_text_textfield_docinfo_Custom_idl__
+#define __com_sun_star_text_textfield_docinfo_Custom_idl_
+
+#include <com/sun/star/text/TextField.idl>
+
+//=============================================================================
+
+module com { module sun { module star {
+ module text { module textfield { module docinfo {
+
+//=============================================================================
+/** specifies service of a text field that refers to the content of a
+ user-defined field in the document information.
+
+ @since OOo 3.0
+
+ @see com::sun::star::text::TextField
+*/
+published service Custom
+{
+ service com::sun::star::text::TextField;
+
+ /** the name of the user-defined property that this field refers to.
+ */
+ [property] string Name;
+
+ /** contains the current content of the text field.
+ <p>This property is useful for import/export purposes.</p>
+ */
+ [property] string CurrentPresentation;
+
+ /** If this flag is set to <FALSE/>, the content is updated when
+ the document information changes.
+ */
+ [property] boolean IsFixed;
+};
+
+//=============================================================================
+
+}; }; }; }; }; };
+
+#endif
+
diff --git a/offapi/com/sun/star/text/textfield/docinfo/Description.idl b/offapi/com/sun/star/text/textfield/docinfo/Description.idl
index 01afcf7b6431..2aa9516a02b3 100644
--- a/offapi/com/sun/star/text/textfield/docinfo/Description.idl
+++ b/offapi/com/sun/star/text/textfield/docinfo/Description.idl
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: Description.idl,v $
- * $Revision: 1.4 $
+ * $Revision: 1.4.122.1 $
*
* This file is part of OpenOffice.org.
*
@@ -45,6 +45,8 @@ module com { module sun { module star {
*/
published service Description
{
+ service com::sun::star::text::TextField;
+
/** contains content information.
*/
[property] string Content;
diff --git a/offapi/com/sun/star/text/textfield/docinfo/Info0.idl b/offapi/com/sun/star/text/textfield/docinfo/Info0.idl
index 3071ff504b3d..a5d74bcf025e 100644
--- a/offapi/com/sun/star/text/textfield/docinfo/Info0.idl
+++ b/offapi/com/sun/star/text/textfield/docinfo/Info0.idl
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: Info0.idl,v $
- * $Revision: 1.4 $
+ * $Revision: 1.4.122.2 $
*
* This file is part of OpenOffice.org.
*
@@ -41,6 +41,8 @@ module com { module sun { module star {
//=============================================================================
/** specifies service of a text field that provides the Info0 field that is contained
in the document information.
+ @deprecated this service is no longer implemented as of OOo 3.0;
+ use com::sun::star::text::textfield::docinfo::Custom instead.
@see com::sun::star::text::TextField
*/
published service Info0
diff --git a/offapi/com/sun/star/text/textfield/docinfo/Info1.idl b/offapi/com/sun/star/text/textfield/docinfo/Info1.idl
index 197286d25346..4d68e7cfacc4 100644
--- a/offapi/com/sun/star/text/textfield/docinfo/Info1.idl
+++ b/offapi/com/sun/star/text/textfield/docinfo/Info1.idl
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: Info1.idl,v $
- * $Revision: 1.4 $
+ * $Revision: 1.4.122.2 $
*
* This file is part of OpenOffice.org.
*
@@ -41,6 +41,8 @@ module com { module sun { module star {
//=============================================================================
/** specifies service of a text field that provides the Info1 field that is contained
in the document information.
+ @deprecated this service is no longer implemented as of OOo 3.0;
+ use com::sun::star::text::textfield::docinfo::Custom instead.
@see com::sun::star::text::TextField
*/
published service Info1
diff --git a/offapi/com/sun/star/text/textfield/docinfo/Info2.idl b/offapi/com/sun/star/text/textfield/docinfo/Info2.idl
index cdc0ba84acf9..88aa2ea34156 100644
--- a/offapi/com/sun/star/text/textfield/docinfo/Info2.idl
+++ b/offapi/com/sun/star/text/textfield/docinfo/Info2.idl
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: Info2.idl,v $
- * $Revision: 1.4 $
+ * $Revision: 1.4.122.2 $
*
* This file is part of OpenOffice.org.
*
@@ -41,6 +41,8 @@ module com { module sun { module star {
//=============================================================================
/** specifies service of a text field that provides the Info2 field that is contained
in the document information.
+ @deprecated this service is no longer implemented as of OOo 3.0;
+ use com::sun::star::text::textfield::docinfo::Custom instead.
@see com::sun::star::text::TextField
*/
published service Info2
diff --git a/offapi/com/sun/star/text/textfield/docinfo/Info3.idl b/offapi/com/sun/star/text/textfield/docinfo/Info3.idl
index 8d9c10aced90..74150afed2cc 100644
--- a/offapi/com/sun/star/text/textfield/docinfo/Info3.idl
+++ b/offapi/com/sun/star/text/textfield/docinfo/Info3.idl
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: Info3.idl,v $
- * $Revision: 1.4 $
+ * $Revision: 1.4.122.2 $
*
* This file is part of OpenOffice.org.
*
@@ -41,6 +41,8 @@ module com { module sun { module star {
//=============================================================================
/** specifies service of a text field that provides the Info3 field that is contained
in the document information.
+ @deprecated this service is no longer implemented as of OOo 3.0;
+ use com::sun::star::text::textfield::docinfo::Custom instead.
@see com::sun::star::text::TextField
*/
published service Info3
diff --git a/offapi/com/sun/star/text/textfield/docinfo/Keywords.idl b/offapi/com/sun/star/text/textfield/docinfo/Keywords.idl
index 05c88fe2d9a9..1c348a225d65 100644
--- a/offapi/com/sun/star/text/textfield/docinfo/Keywords.idl
+++ b/offapi/com/sun/star/text/textfield/docinfo/Keywords.idl
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: Keywords.idl,v $
- * $Revision: 1.4 $
+ * $Revision: 1.4.122.1 $
*
* This file is part of OpenOffice.org.
*
@@ -45,6 +45,8 @@ module com { module sun { module star {
*/
published service Keywords
{
+ service com::sun::star::text::TextField;
+
/** contains content information.
*/
[property] string Content;
diff --git a/offapi/com/sun/star/text/textfield/docinfo/Revision.idl b/offapi/com/sun/star/text/textfield/docinfo/Revision.idl
index 71cc788df210..486ce905ccf1 100644
--- a/offapi/com/sun/star/text/textfield/docinfo/Revision.idl
+++ b/offapi/com/sun/star/text/textfield/docinfo/Revision.idl
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: Revision.idl,v $
- * $Revision: 1.4 $
+ * $Revision: 1.4.122.1 $
*
* This file is part of OpenOffice.org.
*
@@ -45,6 +45,8 @@ module com { module sun { module star {
*/
published service Revision
{
+ service com::sun::star::text::TextField;
+
/** contains content information.
*/
[property] string Content;
diff --git a/offapi/com/sun/star/text/textfield/docinfo/Subject.idl b/offapi/com/sun/star/text/textfield/docinfo/Subject.idl
index 44aa402c1a70..ba2d2830d123 100644
--- a/offapi/com/sun/star/text/textfield/docinfo/Subject.idl
+++ b/offapi/com/sun/star/text/textfield/docinfo/Subject.idl
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: Subject.idl,v $
- * $Revision: 1.4 $
+ * $Revision: 1.4.122.1 $
*
* This file is part of OpenOffice.org.
*
@@ -45,6 +45,8 @@ module com { module sun { module star {
*/
published service Subject
{
+ service com::sun::star::text::TextField;
+
/** contains content information.
*/
[property] string Content;
diff --git a/offapi/com/sun/star/text/textfield/docinfo/Title.idl b/offapi/com/sun/star/text/textfield/docinfo/Title.idl
index 5010a8d08b8c..4e203b561629 100644
--- a/offapi/com/sun/star/text/textfield/docinfo/Title.idl
+++ b/offapi/com/sun/star/text/textfield/docinfo/Title.idl
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: Title.idl,v $
- * $Revision: 1.4 $
+ * $Revision: 1.4.122.1 $
*
* This file is part of OpenOffice.org.
*
@@ -45,6 +45,8 @@ module com { module sun { module star {
*/
published service Title
{
+ service com::sun::star::text::TextField;
+
/** contains content information.
*/
[property] string Content;
diff --git a/offapi/com/sun/star/text/textfield/docinfo/makefile.mk b/offapi/com/sun/star/text/textfield/docinfo/makefile.mk
index d6afcea06153..3c7a877d845a 100644
--- a/offapi/com/sun/star/text/textfield/docinfo/makefile.mk
+++ b/offapi/com/sun/star/text/textfield/docinfo/makefile.mk
@@ -8,7 +8,7 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.5 $
+# $Revision: 1.5.122.1 $
#
# This file is part of OpenOffice.org.
#
@@ -46,7 +46,7 @@ IDLFILES=\
ChangeDateTime.idl\
CreateAuthor.idl\
CreateDateTime.idl\
- ChangeAuthor.idl\
+ Custom.idl\
Description.idl\
EditTime.idl\
Info0.idl\