Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / awt / MessageBoxButtons.idl
bloba893cf7828f6e92b95a2756249df348cb072ca52
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef __com_sun_star_awt_MessageBoxButtons_idl__
20 #define __com_sun_star_awt_MessageBoxButtons_idl__
22 module com { module sun { module star { module awt {
24 /** defines constants for the possible message box button
25 combinations.
28 constants MessageBoxButtons
30 /** specifies a message with "OK" button.
32 const long BUTTONS_OK = 1;
34 /** specifies a message box with "OK" and "CANCEL" button.
36 const long BUTTONS_OK_CANCEL = 2;
38 /** specifies a message box with "YES" and "NO" button.
40 const long BUTTONS_YES_NO = 3;
42 /** specifies a message box with "YES", "NO" and "CANCEL" button.
44 const long BUTTONS_YES_NO_CANCEL = 4;
46 /** specifies a message box with "RETRY" and "CANCEL" button.
48 const long BUTTONS_RETRY_CANCEL = 5;
50 /** specifies a message box with "ABORT", "IGNORE" and "RETRY" button.
52 const long BUTTONS_ABORT_IGNORE_RETRY = 6;
54 /** specifies that OK is the default button.
56 const long DEFAULT_BUTTON_OK = 0x10000;
58 /** specifies that CANCEL is the default button.
60 const long DEFAULT_BUTTON_CANCEL = 0x20000;
62 /** specifies that RETRY is the default button.
64 const long DEFAULT_BUTTON_RETRY = 0x30000;
66 /** specifies that YES is the default button.
68 const long DEFAULT_BUTTON_YES = 0x40000;
70 /** specifies that NO is the default button.
72 const long DEFAULT_BUTTON_NO = 0x50000;
74 /** specifies that IGNORE is the default button.
76 const long DEFAULT_BUTTON_IGNORE = 0x60000;
79 }; }; }; };
81 #endif
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */