summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XDialog2.idl
blob: fbc5313aeb474efe260622ef0f6621cd4d5252e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef __com_sun_star_awt_XDialog2_idl__
#define __com_sun_star_awt_XDialog2_idl__

#ifndef __com_sun_star_awt_XDialog_idl__
#include <com/sun/star/awt/XDialog.idl>
#endif


//=============================================================================

module com {  module sun {  module star {  module awt {

//=============================================================================

/** Makes it possible to end a dialog and set a help id.

    @since OOo 3.0
 */
interface XDialog2: com::sun::star::awt::XDialog
{
    /** hides the dialog and then causes <member>XDialog::execute</member>
        to return with the given result value.
     */
    void endDialog ( [in] long Result );
    /** sets the help id so that the standard help button action will
        show the appropriate help page.
    */
    void setHelpId ( [in] string Id );
};

//=============================================================================

}; }; }; };

#endif