1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XInsertObjectDialog.idl,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_embed_XInsertObjectDialog_idl__
31 #define __com_sun_star_embed_XInsertObjectDialog_idl__
33 #ifndef __com_sun_star_uno_XInterface_idl__
34 #include
<com
/sun
/star
/uno
/XInterface.idl
>
37 #ifndef __com_sun_star_embed_XStorage_idl__
38 #include
<com
/sun
/star
/embed
/XStorage.idl
>
41 #ifndef __com_sun_star_embed_InsertedObjectInfo_idl__
42 #include
<com
/sun
/star
/embed
/InsertedObjectInfo.idl
>
45 #ifndef __com_sun_star_io_IOException_idl__
46 #include
<com
/sun
/star
/io
/IOException.idl
>
49 #ifndef __com_sun_star_embed_WrongStateException_idl__
50 #include
<com
/sun
/star
/embed
/WrongStateException.idl
>
53 #ifndef __com_sun_star_lang_IllegalArgumentException_idl__
54 #include
<com
/sun
/star
/lang
/IllegalArgumentException.idl
>
57 #ifndef __com_sun_star_beans_PropertyValue_idl__
58 #include
<com
/sun
/star
/beans
/PropertyValue.idl
>
61 //=============================================================================
63 module com
{ module sun
{ module star
{ module embed
{
65 //=============================================================================
66 /** allows to create and initialize a new embedded object using GUI dialog.
68 interface XInsertObjectDialog
: com
::sun
::star
::uno
::XInterface
70 //-------------------------------------------------------------------------
71 /** creates a new object using GUI dialog.
74 The dialog allows for user to do a number of choices that are container
75 related. This infomation will be returned in the
76 <type>InsertedObjectInfo</type> object.
80 a parent storage the entry should be created/opened in
86 optional parameters for the object persistence initialization
87 see also <type scope="com::sun::star::embed">EmbeddedObjectDescriptor</type>
90 the structure containing the object and container related options
92 @thrown ::com::sun::star::lang::IllegalArgumentException
93 one of arguments is illegal
95 @throws com::sun::star::io::IOException
96 in case of io problems during opening\creation
98 @throws com::sun::star::uno::Exception
99 in case of other problems
101 InsertedObjectInfo createInstanceByDialog
(
102 [in] ::com
::sun
::star
::embed
::XStorage xStorage
,
103 [in] string sEntName
,
104 [in] sequence
< ::com
::sun
::star
::beans
::PropertyValue
> lObjArgs
)
105 raises
( ::com
::sun
::star
::lang
::IllegalArgumentException
,
106 ::com
::sun
::star
::io
::IOException
,
107 ::com
::sun
::star
::uno
::Exception
);
110 //=============================================================================