Branch libreoffice-5-0-4
[LibreOffice.git] / include / vcl / vclenum.hxx
blob3404d79c3bb8035ab7bcf3bf7114a85363c09523
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 #ifndef INCLUDED_VCL_VCLENUM_HXX
21 #define INCLUDED_VCL_VCLENUM_HXX
23 #include <rsc/rsc-vcl-shared-types.hxx>
24 #include <sal/types.h>
25 #include <tools/fontenum.hxx>
27 enum ExtTimeFieldFormat { EXTTIMEF_24H_SHORT, EXTTIMEF_24H_LONG,
28 EXTTIMEF_12H_SHORT, EXTTIMEF_12H_LONG,
29 EXTTIMEF_DURATION_SHORT, EXTTIMEF_DURATION_LONG };
31 enum ExtDateFieldFormat { XTDATEF_SYSTEM_SHORT, XTDATEF_SYSTEM_SHORT_YY, XTDATEF_SYSTEM_SHORT_YYYY,
32 XTDATEF_SYSTEM_LONG,
33 XTDATEF_SHORT_DDMMYY, XTDATEF_SHORT_MMDDYY, XTDATEF_SHORT_YYMMDD,
34 XTDATEF_SHORT_DDMMYYYY, XTDATEF_SHORT_MMDDYYYY, XTDATEF_SHORT_YYYYMMDD,
35 XTDATEF_SHORT_YYMMDD_DIN5008, XTDATEF_SHORT_YYYYMMDD_DIN5008, ExtDateFieldFormat_FORCE_EQUAL_SIZE=SAL_MAX_ENUM };
37 enum GradientStyle
39 GradientStyle_LINEAR = 0,
40 GradientStyle_AXIAL = 1,
41 GradientStyle_RADIAL = 2,
42 GradientStyle_ELLIPTICAL = 3,
43 GradientStyle_SQUARE = 4,
44 GradientStyle_RECT = 5,
45 GradientStyle_FORCE_EQUAL_SIZE = SAL_MAX_ENUM
48 // to avoid conflicts with enum's declared otherwise
49 #define HATCH_SINGLE HatchStyle_SINGLE
50 #define HATCH_DOUBLE HatchStyle_DOUBLE
51 #define HATCH_TRIPLE HatchStyle_TRIPLE
53 enum HatchStyle
55 HATCH_SINGLE = 0,
56 HATCH_DOUBLE = 1,
57 HATCH_TRIPLE = 2,
58 HatchStyle_FORCE_EQUAL_SIZE = SAL_MAX_ENUM
61 // to avoid conflicts with enum's declared otherwise
62 #define LINE_NONE LineStyle_NONE
63 #define LINE_SOLID LineStyle_SOLID
64 #define LINE_DASH LineStyle_DASH
66 enum LineStyle
68 LINE_NONE = 0,
69 LINE_SOLID = 1,
70 LINE_DASH = 2,
71 LineStyle_FORCE_EQUAL_SIZE = SAL_MAX_ENUM
74 enum RasterOp { ROP_OVERPAINT, ROP_XOR, ROP_0, ROP_1, ROP_INVERT };
76 enum FontAutoHint { AUTOHINT_DONTKNOW, AUTOHINT_FALSE, AUTOHINT_TRUE };
78 enum FontHinting { HINTING_DONTKNOW, HINTING_FALSE, HINTING_TRUE };
80 enum FontHintStyle { HINT_NONE, HINT_SLIGHT, HINT_MEDIUM, HINT_FULL };
82 typedef sal_uInt32 sal_UCS4; // TODO: this should be moved to rtl
84 enum OutDevSupportType { OutDevSupport_TransparentRect, OutDevSupport_B2DClip, OutDevSupport_B2DDraw };
86 struct ItalicMatrix
88 double xx, xy, yx, yy;
89 ItalicMatrix() : xx(1), xy(0), yx(0), yy(1) {}
92 inline bool operator ==(const ItalicMatrix& a, const ItalicMatrix& b)
94 return a.xx == b.xx && a.xy == b.xy && a.yx == b.yx && a.yy == b.yy;
97 inline bool operator !=(const ItalicMatrix& a, const ItalicMatrix& b)
99 return a.xx != b.xx || a.xy != b.xy || a.yx != b.yx || a.yy != b.yy;
102 enum VclAlign
104 VCL_ALIGN_FILL,
105 VCL_ALIGN_START,
106 VCL_ALIGN_END,
107 VCL_ALIGN_CENTER
110 enum VclPackType
112 VCL_PACK_START = 0,
113 VCL_PACK_END = 1
116 // Return Values from Dialog::Execute
117 //!!! bei Aenderungen /basic/source/runtime/methods.cxx msgbox anpassen
119 enum VclResponseType
121 RET_CANCEL = 0,
122 RET_OK = 1,
123 RET_YES = 2,
124 RET_NO = 3,
125 RET_RETRY = 4,
126 RET_IGNORE = 5,
127 RET_ACCEPT = 6,
128 RET_CLOSE = 7,
129 RET_APPLY = 8,
130 RET_NONE = 9,
131 RET_HELP = 10
134 #endif // INCLUDED_VCL_VCLENUM_HXX
136 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */