vcl: flatten BlendFrameCache.cxx
[LibreOffice.git] / oovbaapi / ooo / vba / VbMsgBoxStyle.idl
blobe269c5be4d890fb188fc55f3997663987cde0fc6
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 module ooo { module vba {
3 constants VbMsgBoxStyle {
4 const long vbAbortRetryIgnore = 2;
5 const long vbApplicationModal = 0;
6 const long vbCritical = 16;
7 const long vbDefaultButton1 = 0;
8 const long vbDefaultButton2 = 256;
9 const long vbDefaultButton3 = 512;
10 const long vbDefaultButton4 = 768;
11 const long vbExclamation = 48;
12 const long vbInformation = 64;
13 const long vbMsgBoxHelpButton = 16384;
14 const long vbMsgBoxRight = 524288;
15 const long vbMsgBoxRtlReading = 1048576;
16 const long vbMsgBoxSetForeground = 65536;
17 const long vbOKCancel = 1;
18 const long vbOKOnly = 0;
19 const long vbQuestion = 32;
20 const long vbRetryCancel = 5;
21 const long vbSystemModal = 4096;
22 const long vbYesNo = 4;
23 const long vbYesNoCancel = 3;
25 }; };
27 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */