161161268SAriel Constenla-Haile/**************************************************************
261161268SAriel Constenla-Haile *
361161268SAriel Constenla-Haile * Licensed to the Apache Software Foundation (ASF) under one
461161268SAriel Constenla-Haile * or more contributor license agreements.  See the NOTICE file
561161268SAriel Constenla-Haile * distributed with this work for additional information
661161268SAriel Constenla-Haile * regarding copyright ownership.  The ASF licenses this file
761161268SAriel Constenla-Haile * to you under the Apache License, Version 2.0 (the
861161268SAriel Constenla-Haile * "License"); you may not use this file except in compliance
961161268SAriel Constenla-Haile * with the License.  You may obtain a copy of the License at
1061161268SAriel Constenla-Haile *
1161161268SAriel Constenla-Haile *   http://www.apache.org/licenses/LICENSE-2.0
1261161268SAriel Constenla-Haile *
1361161268SAriel Constenla-Haile * Unless required by applicable law or agreed to in writing,
1461161268SAriel Constenla-Haile * software distributed under the License is distributed on an
1561161268SAriel Constenla-Haile * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1661161268SAriel Constenla-Haile * KIND, either express or implied.  See the License for the
1761161268SAriel Constenla-Haile * specific language governing permissions and limitations
1861161268SAriel Constenla-Haile * under the License.
1961161268SAriel Constenla-Haile *
2061161268SAriel Constenla-Haile *************************************************************/
2161161268SAriel Constenla-Haile
22*a942a490SAriel Constenla-Haile#ifndef __com_sun_star_awt_MessageBoxType_idl__
23*a942a490SAriel Constenla-Haile#define __com_sun_star_awt_MessageBoxType_idl__
2461161268SAriel Constenla-Haile
2561161268SAriel Constenla-Hailemodule com {  module sun {  module star {  module awt {
2661161268SAriel Constenla-Haile
2761161268SAriel Constenla-Haile/** specifies the type of a <type>XMessageBox</type>.
2861161268SAriel Constenla-Haile */
2961161268SAriel Constenla-Hailepublished enum MessageBoxType
3061161268SAriel Constenla-Haile{
3161161268SAriel Constenla-Haile    /** A normal message box.
3261161268SAriel Constenla-Haile     */
3361161268SAriel Constenla-Haile    MESSAGEBOX,
3461161268SAriel Constenla-Haile
3561161268SAriel Constenla-Haile    /** A message box to inform the user about a certain event
3661161268SAriel Constenla-Haile     */
3761161268SAriel Constenla-Haile    INFOBOX,
3861161268SAriel Constenla-Haile
3961161268SAriel Constenla-Haile    /** A message to warn the user about a certain problem.
4061161268SAriel Constenla-Haile     */
4161161268SAriel Constenla-Haile    WARNINGBOX,
4261161268SAriel Constenla-Haile
4361161268SAriel Constenla-Haile    /** A message box to provide an error message to the user.
4461161268SAriel Constenla-Haile     */
4561161268SAriel Constenla-Haile    ERRORBOX,
4661161268SAriel Constenla-Haile
4761161268SAriel Constenla-Haile    /** A message box to query information from the user.
4861161268SAriel Constenla-Haile     */
4961161268SAriel Constenla-Haile    QUERYBOX
5061161268SAriel Constenla-Haile};
5161161268SAriel Constenla-Haile
5261161268SAriel Constenla-Haile}; }; }; };
5361161268SAriel Constenla-Haile
5461161268SAriel Constenla-Haile#endif
55