xref: /aoo41x/main/offapi/com/sun/star/ui/UIElement.idl (revision cdf0e10c)
1*cdf0e10cSrcweir/*************************************************************************
2*cdf0e10cSrcweir *
3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir *
5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir *
7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir *
9*cdf0e10cSrcweir * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir *
11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir *
15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir *
21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir *
26*cdf0e10cSrcweir ************************************************************************/
27*cdf0e10cSrcweir
28*cdf0e10cSrcweir#ifndef __com_sun_star_ui_UIElement_idl__
29*cdf0e10cSrcweir#define __com_sun_star_ui_UIElement_idl__
30*cdf0e10cSrcweir
31*cdf0e10cSrcweir#ifndef __com_sun_star_ui_XUIElement_idl__
32*cdf0e10cSrcweir#include <com/sun/star/ui/XUIElement.idl>
33*cdf0e10cSrcweir#endif
34*cdf0e10cSrcweir
35*cdf0e10cSrcweir#ifndef __com_sun_star_beans_XPropertySet_idl__
36*cdf0e10cSrcweir#include <com/sun/star/beans/XPropertySet.idl>
37*cdf0e10cSrcweir#endif
38*cdf0e10cSrcweir
39*cdf0e10cSrcweir#ifndef __com_sun_star_lang_XInitialization_idl__
40*cdf0e10cSrcweir#include <com/sun/star/lang/XInitialization.idl>
41*cdf0e10cSrcweir#endif
42*cdf0e10cSrcweir
43*cdf0e10cSrcweir#ifndef __com_sun_star_lang_XComponent_idl__
44*cdf0e10cSrcweir#include <com/sun/star/lang/XComponent.idl>
45*cdf0e10cSrcweir#endif
46*cdf0e10cSrcweir
47*cdf0e10cSrcweir#ifndef __com_sun_star_util_XUpdatable_idl__
48*cdf0e10cSrcweir#include <com/sun/star/util/XUpdatable.idl>
49*cdf0e10cSrcweir#endif
50*cdf0e10cSrcweir
51*cdf0e10cSrcweir//=============================================================================
52*cdf0e10cSrcweir
53*cdf0e10cSrcweirmodule com { module sun { module star { module ui {
54*cdf0e10cSrcweir
55*cdf0e10cSrcweir//=============================================================================
56*cdf0e10cSrcweir
57*cdf0e10cSrcweir/** specifies a user interface element.
58*cdf0e10cSrcweir
59*cdf0e10cSrcweir    <p>
60*cdf0e10cSrcweir    A user interface element consists of a unique identifier and a type specifier. It
61*cdf0e10cSrcweir    provides an interface to retrieve a special purpose interface which depends on
62*cdf0e10cSrcweir    the specific user interface element type. Every user interface must be initialized
63*cdf0e10cSrcweir    before it can be used.
64*cdf0e10cSrcweir    </p>
65*cdf0e10cSrcweir
66*cdf0e10cSrcweir    @since OOo 2.0
67*cdf0e10cSrcweir*/
68*cdf0e10cSrcweir
69*cdf0e10cSrcweirservice UIElement
70*cdf0e10cSrcweir{
71*cdf0e10cSrcweir    /** provides a function to retrieve a special purpose interface which depends on
72*cdf0e10cSrcweir        the specific user interface element type.
73*cdf0e10cSrcweir    */
74*cdf0e10cSrcweir    interface ::com::sun::star::ui::XUIElement;
75*cdf0e10cSrcweir
76*cdf0e10cSrcweir    /** interface to initialize a user interface element instance.
77*cdf0e10cSrcweir
78*cdf0e10cSrcweir        A user interface element must be initialized using
79*cdf0e10cSrcweir        <member scope=com::sun::star::lang>XInitialization::initialize</member> before
80*cdf0e10cSrcweir        it can be used. The following property must be provided:
81*cdf0e10cSrcweir        <ul>
82*cdf0e10cSrcweir            <li><b>ResourceURL</b>specifies a string property which is the unique identifier of
83*cdf0e10cSrcweir            the user interface element.</li>
84*cdf0e10cSrcweir        </ul>
85*cdf0e10cSrcweir
86*cdf0e10cSrcweir        A user interface element factory creates and initializes every user interface element
87*cdf0e10cSrcweir        correctly.
88*cdf0e10cSrcweir
89*cdf0e10cSrcweir        @see com::sun::star::ui::UIElementFactoryManager;
90*cdf0e10cSrcweir        @see com::sun::star::ui::UIElementFactory
91*cdf0e10cSrcweir    */
92*cdf0e10cSrcweir    [optional] interface ::com::sun::star::lang::XInitialization;
93*cdf0e10cSrcweir
94*cdf0e10cSrcweir    /** used to notify an implementation that it needs to update its visual representation.
95*cdf0e10cSrcweir
96*cdf0e10cSrcweir        <p>
97*cdf0e10cSrcweir        A user interface element implementation should check if it has to update its visual
98*cdf0e10cSrcweir        representation. It is up to the implementation if it ignores notifications.
99*cdf0e10cSrcweir        </p>
100*cdf0e10cSrcweir    */
101*cdf0e10cSrcweir    [optional] interface com::sun::star::util::XUpdatable;
102*cdf0e10cSrcweir
103*cdf0e10cSrcweir    /** controls the life-time of the object.
104*cdf0e10cSrcweir    */
105*cdf0e10cSrcweir    interface ::com::sun::star::lang::XComponent;
106*cdf0e10cSrcweir};
107*cdf0e10cSrcweir
108*cdf0e10cSrcweir}; }; }; };
109*cdf0e10cSrcweir
110*cdf0e10cSrcweir//=============================================================================
111*cdf0e10cSrcweir
112*cdf0e10cSrcweir#endif
113