1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
28 #ifndef __com_sun_star_sdb_DatasourceAdministrationDialog_idl__
29 #define __com_sun_star_sdb_DatasourceAdministrationDialog_idl__
31 #ifndef __com_sun_star_ui_dialogs_XExecutableDialog_idl__
32 #include
<com
/sun
/star
/ui
/dialogs
/XExecutableDialog.idl
>
35 #ifndef __com_sun_star_awt_XWindow_idl__
36 #include
<com
/sun
/star
/awt
/XWindow.idl
>
39 #ifndef __com_sun_star_lang_XInitialization_idl__
40 #include
<com
/sun
/star
/lang
/XInitialization.idl
>
43 #ifndef __com_sun_star_beans_XPropertySet_idl__
44 #include
<com
/sun
/star
/beans
/XPropertySet.idl
>
47 //=============================================================================
49 module com
{ module sun
{ module star
{ module sdb
{
52 /** provides a user interface for administrating the system wide registered data sources.
54 Here, <em>system wide registered</em> means registered on the (one and only) instance
56 <type scope="com::sun::star::sdb">
62 published service DatasourceAdministrationDialog
64 /** the title of the (dialog) window
66 [property
] string Title
;
68 /** parent window to use for the administration dialog
70 This property can't be set while the dialog is being displayed.
73 [property
] com
::sun
::star
::awt
::XWindow ParentWindow
;
75 /** allows access to the properties of the object
77 interface com
::sun
::star
::beans
::XPropertySet
;
79 /** allows starting execution of the administration dialog
81 interface com
::sun
::star
::ui
::dialogs
::XExecutableDialog
;
83 /** allows initializing the dialog
85 You do not need to call the initialize method directly, instead you may use the createInstanceWithArguments
87 <type scope="com::sun::star::lang">XMultiServiceFactory</type>
92 You specify a parameter by passing one (or more)
93 <type scope="com::sun::star::beans">PropertyValue</type>
94 object(s) to the initialize method, where the <em>Name</em> field contains a string describing which aspect
95 you want to affect, and the <em>Value</em> field containing a value.
97 Imagine the initialization values as if you use setPropertyValue of the
98 <type scope="com::sun::star::beans">XPropertySet</type>
101 allowed parameters are
103 <li><b>Title</b><br/>
104 String describing the initial title of the dialog.
105 If not specified, a default title is used.
107 <li><b>ParentWindow</b><br/>
108 <type scope="com::sun::star::awt">XWindow</type>
109 describing the parent window to use for the dialog.
111 <li><b>InitialSelection</b><br/>
112 String or XDataSource describing which data source should be selected initially.
113 This String name must be known to the
114 <type scope="com::sun::star::sdb">
122 interface com
::sun
::star
::lang
::XInitialization
;
125 //=============================================================================