1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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
,
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
};
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
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
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
};
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
;
116 // Return Values from Dialog::Execute
117 //!!! bei Aenderungen /basic/source/runtime/methods.cxx msgbox anpassen
134 #endif // INCLUDED_VCL_VCLENUM_HXX
136 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */