summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/task/InteractionHandler.idl
blob: 9a90e2b7dc61b2e57c09cf3bbe1cb4a66bf7b1ec (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*************************************************************************
 *
 *  $RCSfile: InteractionHandler.idl,v $
 *
 *  $Revision: 1.4 $
 *
 *  last change: $Author: sb $ $Date: 2001-08-29 09:52:00 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/

#ifndef __com_sun_star_task_PropertyMatcherFactory_idl__
#define __com_sun_star_task_PropertyMatcherFactory_idl__

module com { module sun { module star {
    module lang { interface XInitialization; };
    module task { interface XInteractionHandler; };
}; }; };

module com { module sun { module star { module task {

//============================================================================
/** An interaction request handler that lets the user handle a number of well
    known requests via GUI dialogs (and the
    <type>com::sun::star::task::PasswordContainer</type> service).

    <P>The well known requests handled by this service include
    <type>com::sun::star::java::WrongJavaVersionException</type>*,
    <type>com::sun::star::sync2::BadPartnershipException</type>*,
    <type>com::sun::star::task::PasswordRequest</type>,
    <type>com::sun::star::ucb::AuthenticationRequest</type>,
    <type>com::sun::star::ucb::HandleCookiesRequest</type>,
    <type>com::sun::star::ucb::InteractiveAugmentedIOException</type>*,
    <type>com::sun::star::ucb::InteractiveCHAOSException</type>*,
    <type>com::sun::star::ucb::InteractiveFileIOException</type>*,
    <type>com::sun::star::ucb::InteractiveIOException</type>*,
    <type>com::sun::star::ucb::InteractiveNetworkConnectException</type>*,
    <type>com::sun::star::ucb::InteractiveNetworkException</type>*,
    <type>com::sun::star::ucb::InteractiveNetworkGeneralException</type>*,
    <type>com::sun::star::ucb::InteractiveNetworkOffLineException</type>*,
    <type>com::sun::star::ucb::InteractiveNetworkReadException</type>*,
    <type>com::sun::star::ucb::InteractiveNetworkResolveNameException</type>*,
    <type>com::sun::star::ucb::InteractiveNetworkWriteException</type>*, and
    <type>com::sun::star::ucb::InteractiveWrongMediumException</type>*.  The
    requests marked with an asterisk are only handled if (a) their
    continuations match certain restrictions (see below), and (b) the
    necessary resource strings are available (this can be exploited by
    applications that carry only a subset of all resource files with
    them).</P>

    <P>The continuation restrictions are as follows:  Let C be the subset of
    the provided continuations that are of type
    <type>com::sun::star::task::XInteractionApprove</type>,
    <type>com::star::task::XInteractionDisapprove</type>,
    <type>com::star::task::XInteractionRetry</type>, or
    <type>com::star::task::XInteractionAbort</type> (or of a derived type).
    All other continuations are ignored for these requests.  The request is
    only handled if the set C is any of the following:
    <UL>
        <IL>Abort</IL>
        <IL>Retry, Abort</IL>
        <IL>Approve</IL>
        <IL>Approve, Abort</IL>
        <IL>Approve, Disapprove</IL>
        <IL>Approve, Disapprove, Abort</IL>
    </UL></P>

    <P>A <type>com::sun::star::ucb::InteractiveAugmentedIOException</type>
    carries with it a sequence of arguments, which should be
    <type>com::sun::star::beans::PropertyValue</type>s.  The following details
    which properties are interpreted by the interaction handler, depending on
    the request's <type>com::sun::star::ucb::IOErrorCode</type>:
    <DL>
        <DT><code>"Uri"</code></DT>
        <DD>All error codes except <const>DIFFERENT_DEVICES</const>.  The URI
        of the involved resource (a <atom>string</atom>).</DD>

        <DT><code>"ResourceName"</code></DT>
        <DD>All error codes except <const>DIFFERENT_DEVICES</const>.  A name
        for the involved resource (a <atom>string</atom>) that might be more
        meaningful to the user than the URI.  For example, a
        (platform-dependent) path notation for file system resources.</DD>

        <DT><code>"ResourceType"</code></DT>
        <DD><const>DEVICE_NOT_READY</const> and <const>NOT_EXISTING</const>
        only.  An identifier for the type of resource involved (a
        <atom>string</atom>).  Currently understood values are
        <code>"volume"</code> (e.g., a file system volume) and
        <code>"folder"</code> (i.e., a resource that contains other
        resources).</DD>

        <DT><code>"Removable"</code></DT>
        <DD><const>NOT_EXISTING</const> only.  A flag indicating whether the
        resource resides on a storage medium that can be removed by the user
        (a <atom>boolean</atom>).</DD>

        <DT><code>"Folder"</code></DT>
        <DD><const>CANT_CREATE</const>only.  The name of the foler in which a
        resource cannot be created (a <atom>string</atom>).</DD>

        <DT><code>"Volume"</code> and <code>"OtherVolume"</code></DT>
        <DD><const>DIFFERENT_DEVICES</const> only.  The names of the two
        volumes involved (two <atom>string</atom>s).</DD>
    </DL></P>
 */
service InteractionHandler
{
    //------------------------------------------------------------------------
    /** Handle an interaction request.
     */
    interface com::sun::star::task::XInteractionHandler;

    //------------------------------------------------------------------------
    /** Initialize the interaction handler.

        <p>The arguments must be a sequence of
        <type>com::sun::star::beans::PropertyValue</type>s.  The currently
        supported properties are:
        <ul>
        <li><code>"Parent"</code> of type
            <type>com::sun::star::awt::XWindow</type> denotes the parent
            window for any GUI dialogs the interaction handler pops up; it is
            strongly recommended that this property is supplied;</li>
        <li><code>"Context"</code> of type <atom>string</atom> is a textual
            description of the current context (used, e.g., as a first line of
            text in error boxes); this property is optional.</li>
        </ul></p>
     */
    interface com::sun::star::lang::XInitialization;
};

}; }; }; };

#endif