xref: /trunk/main/offapi/com/sun/star/modules.idl (revision a893be29)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23#ifndef __com_sun_star_modules_idl__
24#define __com_sun_star_modules_idl__
25
26module com { module sun { module star {
27
28/// security and authenticates interfaces
29module auth {};
30
31/// Java AWT-like user interface toolkit interface specifications for UNO.
32module awt {};
33
34/** UNO Accessibility API
35
36    <p>This modules contains the basic interfaces of the UAA (UNO
37    Accessibility API).  Services that describe how these interfaces are
38    implemented can be found in other modules.  The services in this module
39    describe only what every accessible object has to support.</p>
40
41    <p>Making a class accessible starts by supporting the <type
42    scope="::com::sun::star::accessibility">XAccessible</type> interface.
43    This interface' only method returns the actual accessibility object, an
44    instance of <type
45    scope="::com::sun::star::accessibility">XAccessibleContext</type>.
46    These two interfaces may be implemented by the same class in which case
47    a call to <method scope="::com::sun::star::accessibility"
48    >XAccessible::getAccessible</method> returns the same object that is
49    called.  Alternatively the implementation of the <type
50    scope="::com::sun::star::accessibility">XAccessibleContext</type>
51    interface can be done by another class.  This makes it possible to put
52    all accessibility implementations into their own library which has only
53    to be loaded when necessary.</p>
54
55    <p>Note that all other interfaces have to be implemented by the same
56    class that implements the <type
57    scope="::com::sun::star::accessibility">XAccessibleContext</type>
58    interface.  Note also that there is no way back from an accessibility
59    object to the object from which it has been obtained by means of the
60    UAA.  If you need such a back-link you have to provide one on your
61    own.</p>
62*/
63module accessibility {};
64
65/// Charting diagram interfaces.
66module chart {};
67
68/** New implementation of Charting diagram interfaces.  This module
69    contains only a rather small public API.  In addition there is a
70    private API in the chart2 project.
71 */
72module chart2 {};
73
74/// Access to the tree of configuration data.
75module configuration {};
76
77/// Clipboard and Drag&amp;Drop interfaces.
78module datatransfer {};
79
80/// Office document related interfaces.
81module document {};
82
83/// Office document content related interfaces.
84module office {};
85
86/// Drawing and shape specific interfaces.
87module drawing {};
88
89/// Interfaces for managing forms and controls.
90module form {};
91
92/// Interfaces for mathematical formulas.
93module formula {};
94
95/// Desktop environment framework interfaces.
96module frame {};
97
98/// Interfaces and data types to deal with basic geometric entities
99module geometry {};
100
101/// Interfaces for graphic handling
102module graphic {};
103
104/// Interface for internationalization (deprecated draft).
105module i18n {};
106
107/// Interfaces to control installations.
108module installation {};
109
110/// lightweight directory access protocol (LDAP)
111module ldap {};
112
113/// Spell checker, hyphenation and thesaurus interfaces.
114module linguistic2 {};
115
116/// Interfaces for Email connectivity
117module mail {};
118
119/// Media type interfaces
120module media {};
121
122/// Interfaces for Mozilla integration.
123module mozilla {};
124
125/// Pretty Good Privacy (deprecated).
126module pgp {};
127
128/// Netscape-like plugin interfaces.
129module plugin {};
130
131/// Presentation specific interfaces.
132module presentation {};
133
134/// Interfaces and data structures for rendering
135module rendering {};
136
137/// Interfaces to access (UI) resource files.
138module resource {};
139
140/// Interfaces for scanner control.
141module scanner {};
142
143/// Basic interfaces for database access.
144module sdb {};
145
146/// Database component interfaces.
147module sdbc {};
148
149/// High-level database component interfaces.
150module sdbcx {};
151
152/// Interfaces to control the setup process.
153module setup {};
154
155/// Spreadsheet specific interfaces.
156module sheet {};
157
158/// Formatting and layout style and stylesheet interfaces.
159module style {};
160
161/// Interfaces for import/export of Scalable Vector Format.
162module svg {};
163
164/// Data synchronization interfaces (deprecated).
165module sync {};
166
167/// Data synchronization interfaces (deprecated).
168module sync2 {};
169
170/// Table specific interfaces (for text and spreadsheet).
171module table {};
172
173/// Task management interfaces.
174module task {};
175
176/// Test interfaces for core-reflection, introspection and marshalling.
177module test {};
178
179/// Text specific interfaces.
180module text {};
181
182/// Universal Content Broker interfaces.
183module ucb {};
184
185/// Dialogs and other UI elements.
186module ui {};
187
188/// Miscellaneous interfaces for sorting, connecting objects etc.
189module util {};
190
191/// Document view specific interfaces (e.g. selection access and printing).
192module view {};
193
194/// XML related interfaces.
195module xml {};
196
197/// Host operating system integration interfaces.
198module system {};
199
200/// Package file format interfaces.
201module packages {};
202
203/// image manupulation interfaces.
204module image {};
205
206/// interfaces for XForms (XML-based forms) implementation
207module xforms {};
208
209/// interfaces for report interfaces
210module report {};
211
212/** RDF (Resource Description Framework) and metadata interfaces.
213
214    <p>
215    This module provides interfaces for storing and accessing metadata
216    in <a href="http://www.w3.org/RDF/">Resource Description Framework</a>
217    format.
218    The API consists of two main parts: the RDF data model and the ODF
219    document integration.
220    </p>
221
222    <p>
223    The <a href="http://www.w3.org/TR/rdf-concepts/">RDF data model</a>
224    describes graphs of statements.
225    The nodes in the graph are of type <type scope="rdf">XNode</type>,
226    which has several subtypes: <type scope="rdf">XResource</type>,
227    <type scope="rdf">XBlankNode</type>,
228    <type scope="rdf">XURI</type> and <type scope="rdf">XLiteral</type>.
229    Statements are then triples of nodes, and have type
230    <type scope="rdf">Statement</type>.
231    </p>
232
233    <p>
234    The main part of the RDF data model is the
235    <type scope="rdf">XRepository</type>, which consists of a set of graphs.
236    The repository allows for importing/exporting graphs from/to files,
237    as well as querying the contents of the repository.
238    The type of the graphs is <type scope="rdf">XNamedGraph</type>.
239    </p>
240
241    <p>
242    Documents that support metadata implement the interfaces
243    <type scope="rdf">XRepositorySupplier</type> and
244    <type scope="rdf">XDocumentMetadataAccess</type>.
245    Furthermore, all elements of ODF documents that may have metadata attached
246    implement the interface <type scope="rdf">XMetadatable</type>.
247    </p>
248
249 */
250module rdf {};
251
252}; }; };
253
254#endif
255
256