1*61161268SAriel Constenla-Haile/**************************************************************
2*61161268SAriel Constenla-Haile *
3*61161268SAriel Constenla-Haile * Licensed to the Apache Software Foundation (ASF) under one
4*61161268SAriel Constenla-Haile * or more contributor license agreements.  See the NOTICE file
5*61161268SAriel Constenla-Haile * distributed with this work for additional information
6*61161268SAriel Constenla-Haile * regarding copyright ownership.  The ASF licenses this file
7*61161268SAriel Constenla-Haile * to you under the Apache License, Version 2.0 (the
8*61161268SAriel Constenla-Haile * "License"); you may not use this file except in compliance
9*61161268SAriel Constenla-Haile * with the License.  You may obtain a copy of the License at
10*61161268SAriel Constenla-Haile *
11*61161268SAriel Constenla-Haile *   http://www.apache.org/licenses/LICENSE-2.0
12*61161268SAriel Constenla-Haile *
13*61161268SAriel Constenla-Haile * Unless required by applicable law or agreed to in writing,
14*61161268SAriel Constenla-Haile * software distributed under the License is distributed on an
15*61161268SAriel Constenla-Haile * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*61161268SAriel Constenla-Haile * KIND, either express or implied.  See the License for the
17*61161268SAriel Constenla-Haile * specific language governing permissions and limitations
18*61161268SAriel Constenla-Haile * under the License.
19*61161268SAriel Constenla-Haile *
20*61161268SAriel Constenla-Haile *************************************************************/
21*61161268SAriel Constenla-Haile
22*61161268SAriel Constenla-Haile#ifndef __com_sun_star_awt_MessageBoxCommand_idl__
23*61161268SAriel Constenla-Haile#define __com_sun_star_awt_MessageBoxCommand_idl__
24*61161268SAriel Constenla-Haile
25*61161268SAriel Constenla-Hailemodule com {  module sun {  module star {  module awt {
26*61161268SAriel Constenla-Haile
27*61161268SAriel Constenla-Haile/** specifies the type of a <type>XMessageBox</type>.
28*61161268SAriel Constenla-Haile */
29*61161268SAriel Constenla-Hailepublished enum MessageBoxType
30*61161268SAriel Constenla-Haile{
31*61161268SAriel Constenla-Haile    /** A normal message box.
32*61161268SAriel Constenla-Haile     */
33*61161268SAriel Constenla-Haile    MESSAGEBOX,
34*61161268SAriel Constenla-Haile
35*61161268SAriel Constenla-Haile    /** A message box to inform the user about a certain event
36*61161268SAriel Constenla-Haile     */
37*61161268SAriel Constenla-Haile    INFOBOX,
38*61161268SAriel Constenla-Haile
39*61161268SAriel Constenla-Haile    /** A message to warn the user about a certain problem.
40*61161268SAriel Constenla-Haile     */
41*61161268SAriel Constenla-Haile    WARNINGBOX,
42*61161268SAriel Constenla-Haile
43*61161268SAriel Constenla-Haile    /** A message box to provide an error message to the user.
44*61161268SAriel Constenla-Haile     */
45*61161268SAriel Constenla-Haile    ERRORBOX,
46*61161268SAriel Constenla-Haile
47*61161268SAriel Constenla-Haile    /** A message box to query information from the user.
48*61161268SAriel Constenla-Haile     */
49*61161268SAriel Constenla-Haile    QUERYBOX
50*61161268SAriel Constenla-Haile};
51*61161268SAriel Constenla-Haile
52*61161268SAriel Constenla-Haile}; }; }; };
53*61161268SAriel Constenla-Haile
54*61161268SAriel Constenla-Haile#endif
55