fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / udkapi / com / sun / star / script / XStarBasicLibraryInfo.idl
blob55a210013b3f9ebd1f7ed4e6d5c3457d1730e87c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef __com_sun_star_script_XStarBasicLibraryInfo_idl__
20 #define __com_sun_star_script_XStarBasicLibraryInfo_idl__
22 #include <com/sun/star/container/XNameContainer.idl>
25 module com { module sun { module star { module script {
28 /** Interface representing a library and provides access to its modules
30 @deprecated
32 published interface XStarBasicLibraryInfo: com::sun::star::uno::XInterface
34 /** returns the library's name
36 string getName();
38 /** returns
39 the module container giving access to the modules stored in the library.
40 The container has to be returned in any case, no matter if the library is
41 stored embedded, external, or linked.
43 @see getExternalSourceURL
44 @see getLinkTargetURL
46 com::sun::star::container::XNameContainer getModuleContainer();
48 /** returns
49 the dialog container giving access to the dialogs stored in the library.
50 The container has to be returned in any case, no matter if the library is
51 stored embedded, external, or linked.
53 @see getExternalSourceURL
54 @see getLinkTargetURL
56 com::sun::star::container::XNameContainer getDialogContainer();
58 /** returns
59 the password, if the library is protected with one,
60 an empty string otherwise.
62 string getPassword();
64 /** returns an
65 URL describing the location where the library is stored if the library
66 is stored separately (for example not in the main XML file but in a
67 special library format file), an empty string otherwise.
68 This information can be useful to optimize the access to the library,
69 e.g., for loading on demand.
71 string getExternalSourceURL();
73 /** returns an
74 URL describing the location of the library linked to.
76 <p>HINT: This method can be removed when there is a generic interface
77 for linking. Then the implementation will simply support this
78 "XLinked" interface and it can be checked by queryInterface().</p>
80 string getLinkTargetURL();
85 }; }; }; };
87 #endif
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */