summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/UnoControlRoadmapModel.idl
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-05-19 13:05:07 +0000
committerKurt Zenker <kz@openoffice.org>2004-05-19 13:05:07 +0000
commit55b7c11857efd22fd5bf27e8be6d3996a300f645 (patch)
tree0550868e4e46a0b05bd4ef618fd43d6056d9e8a8 /offapi/com/sun/star/awt/UnoControlRoadmapModel.idl
parent3dd852678583341137c220d3935c4c58e78b07a6 (diff)
INTEGRATION: CWS qwizards1 (1.1.2); FILE ADDED
2003/11/18 15:11:49 bc 1.1.2.2: #111603# XItemEventBroadcaster added 2003/11/10 11:57:20 bc 1.1.2.1: #111603# services and interfaces for RoadmapControl added
Diffstat (limited to 'offapi/com/sun/star/awt/UnoControlRoadmapModel.idl')
-rw-r--r--offapi/com/sun/star/awt/UnoControlRoadmapModel.idl185
1 files changed, 185 insertions, 0 deletions
diff --git a/offapi/com/sun/star/awt/UnoControlRoadmapModel.idl b/offapi/com/sun/star/awt/UnoControlRoadmapModel.idl
new file mode 100644
index 000000000..dad26eb82
--- /dev/null
+++ b/offapi/com/sun/star/awt/UnoControlRoadmapModel.idl
@@ -0,0 +1,185 @@
+/*************************************************************************
+ *
+ * $RCSfile: UnoControlRoadmapModel.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: kz $ $Date: 2004-05-19 14:05:07 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 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
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+#ifndef __com_sun_star_awt_UnoControlRoadmapModel_idl__
+#define __com_sun_star_awt_UnoControlRoadmapModel_idl__
+
+
+#ifndef __com_sun_star_awt_UnoControlModel_idl__
+#include <com/sun/star/awt/UnoControlModel.idl>
+#endif
+
+#ifndef __com_sun_star_container_XIndexContainer_idl__
+#include <com/sun/star/container/XIndexContainer.idl>
+#endif
+
+#ifndef __com_sun_star_beans_XPropertyChangeListener_idl__
+#include <com/sun/star/beans/XPropertyChangeListener.idl>
+#endif
+
+
+
+
+//=============================================================================
+
+ module com { module sun { module star { module awt {
+
+//=============================================================================
+
+/** specifies the standard model of an <type>UnoControlContainer</type>.
+ */
+service UnoControlRoadmapModel
+{
+ service com::sun::star::awt::UnoControlModel;
+
+ /** The control serves as an indexed container typically for RoadmapItems
+ * as specified in com::sun::star::awt:RoadmapItem. The RoadmapItems are
+ * held in a sequence.
+ * When inserting such items their ID is set equal to the Index of their
+ * insertion by default.
+ * After removing items the CurrentItem property is - when beyound the upper sequence
+ * boundaries - set equal to last index of the RoadmapItem Array.
+ */
+ interface com::sun::star::container::XIndexContainer;
+
+ //-------------------------------------------------------------------------
+
+
+ /** specifies the background color (RGB) of the control.
+ * The Default value is white
+ */
+ [property] long BackgroundColor;
+
+ //-------------------------------------------------------------------------
+
+ /** determines whether a control is interactive or not.
+ */
+ [property] boolean Interactive;
+
+ //-------------------------------------------------------------------------
+
+ /** determines whether the control container is complete or not. If it is
+ * false than a non - interactive RoadmapItem is appended
+ */
+ [property] boolean Complete;
+
+
+ //-------------------------------------------------------------------------
+
+ /** specifies an URL to an image to use for the control.
+ * The image is placed in the lower right corner of the control
+ */
+ [property] string ImageURL;
+
+
+ //-------------------------------------------------------------------------
+
+ /** specifies the border style of the control.
+
+ <pre>
+ 0: No border
+ 1: 3D border
+ 2: simple border
+ </pre>
+ */
+ [property] short Border;
+
+ //-------------------------------------------------------------------------
+
+ /** specifies whether the control will be printed with the document.
+ */
+ [property] boolean Printable;
+
+ //-------------------------------------------------------------------------
+
+ /** specifies the text displayed in the control.
+ */
+ [property] string Text;
+
+ //-------------------------------------------------------------------------
+
+ /** refers to the ID of the currently selected item. Initially this property is set to '-1'
+ * which is equal to 'undefined"
+ * If the Roadmap Item that the CurrentItemID refers to is removed the property
+ * 'CurrentItemID' is set to -1
+ */
+ [property] short CurrentItemID;
+
+
+ //-------------------------------------------------------------------------
+
+ /** specifies the help text of the control.
+ */
+ [property] string HelpText;
+
+
+ //-------------------------------------------------------------------------
+
+ /** specifies the help URL of the control.
+ */
+ [property] string HelpURL;
+
+};
+
+//=============================================================================
+
+}; }; }; };
+
+#endif