summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XDialog2.idl
blob: 3e238cc910b715664150aac988f400a5768943a9 (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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#ifndef __com_sun_star_awt_XDialog2_idl__
#define __com_sun_star_awt_XDialog2_idl__

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



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


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

    @since OOo 3.0
 */
published 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

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */