tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / offapi / com / sun / star / awt / MessageBoxButtons.idl
blob9d3dfa84c87a2078c2de0bb3bd7a14d122414feb
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 .
20 module com { module sun { module star { module awt {
22 /** defines constants for the possible message box button
23 combinations.
26 constants MessageBoxButtons
28 /** specifies a message with "OK" button.
30 const long BUTTONS_OK = 1;
32 /** specifies a message box with "OK" and "CANCEL" button.
34 const long BUTTONS_OK_CANCEL = 2;
36 /** specifies a message box with "YES" and "NO" button.
38 const long BUTTONS_YES_NO = 3;
40 /** specifies a message box with "YES", "NO" and "CANCEL" button.
42 const long BUTTONS_YES_NO_CANCEL = 4;
44 /** specifies a message box with "RETRY" and "CANCEL" button.
46 const long BUTTONS_RETRY_CANCEL = 5;
48 /** specifies a message box with "ABORT", "IGNORE" and "RETRY" button.
50 const long BUTTONS_ABORT_IGNORE_RETRY = 6;
52 /** specifies that OK is the default button.
54 const long DEFAULT_BUTTON_OK = 0x10000;
56 /** specifies that CANCEL is the default button.
58 const long DEFAULT_BUTTON_CANCEL = 0x20000;
60 /** specifies that RETRY is the default button.
62 const long DEFAULT_BUTTON_RETRY = 0x30000;
64 /** specifies that YES is the default button.
66 const long DEFAULT_BUTTON_YES = 0x40000;
68 /** specifies that NO is the default button.
70 const long DEFAULT_BUTTON_NO = 0x50000;
72 /** specifies that IGNORE is the default button.
74 const long DEFAULT_BUTTON_IGNORE = 0x60000;
77 }; }; }; };
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */