LibreOffice
LibreOffice 24.2 SDK API Reference
MessageBoxButtons.idl
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
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/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
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 .
18  */
19 
20 module com { module sun { module star { module awt {
21 
26 constants MessageBoxButtons
27 {
30  const long BUTTONS_OK = 1;
31 
34  const long BUTTONS_OK_CANCEL = 2;
35 
38  const long BUTTONS_YES_NO = 3;
39 
42  const long BUTTONS_YES_NO_CANCEL = 4;
43 
46  const long BUTTONS_RETRY_CANCEL = 5;
47 
51 
54  const long DEFAULT_BUTTON_OK = 0x10000;
55 
58  const long DEFAULT_BUTTON_CANCEL = 0x20000;
59 
62  const long DEFAULT_BUTTON_RETRY = 0x30000;
63 
66  const long DEFAULT_BUTTON_YES = 0x40000;
67 
70  const long DEFAULT_BUTTON_NO = 0x50000;
71 
74  const long DEFAULT_BUTTON_IGNORE = 0x60000;
75 };
76 
77 }; }; }; };
78 
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const long BUTTONS_OK
specifies a message with "OK" button.
Definition: MessageBoxButtons.idl:30
const long DEFAULT_BUTTON_NO
specifies that NO is the default button.
Definition: MessageBoxButtons.idl:70
const long DEFAULT_BUTTON_OK
specifies that OK is the default button.
Definition: MessageBoxButtons.idl:54
const long BUTTONS_YES_NO_CANCEL
specifies a message box with "YES", "NO" and "CANCEL" button.
Definition: MessageBoxButtons.idl:42
Definition: Ambiguous.idl:20
const long DEFAULT_BUTTON_IGNORE
specifies that IGNORE is the default button.
Definition: MessageBoxButtons.idl:74
const long BUTTONS_YES_NO
specifies a message box with "YES" and "NO" button.
Definition: MessageBoxButtons.idl:38
const long DEFAULT_BUTTON_YES
specifies that YES is the default button.
Definition: MessageBoxButtons.idl:66
const long BUTTONS_ABORT_IGNORE_RETRY
specifies a message box with "ABORT", "IGNORE" and "RETRY" button.
Definition: MessageBoxButtons.idl:50
const long DEFAULT_BUTTON_RETRY
specifies that RETRY is the default button.
Definition: MessageBoxButtons.idl:62
const long DEFAULT_BUTTON_CANCEL
specifies that CANCEL is the default button.
Definition: MessageBoxButtons.idl:58
const long BUTTONS_OK_CANCEL
specifies a message box with "OK" and "CANCEL" button.
Definition: MessageBoxButtons.idl:34
const long BUTTONS_RETRY_CANCEL
specifies a message box with "RETRY" and "CANCEL" button.
Definition: MessageBoxButtons.idl:46