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 .
22 #include <tools/color.hxx>
23 #include <tools/gen.hxx>
24 #include <tools/fontenum.hxx>
25 #include <i18nlangtag/lang.h>
26 #include <o3tl/typed_flags_set.hxx>
28 #include <vcl/rendercontext/RasterOp.hxx>
29 #include <vcl/font.hxx>
30 #include <vcl/mapmod.hxx>
31 #include <vcl/region.hxx>
38 // Flags for OutputDevice::Push() and State
49 TEXTFILLCOLOR
= 0x0080,
52 TEXTLINECOLOR
= 0x0400,
53 TEXTLAYOUTMODE
= 0x0800,
54 TEXTLANGUAGE
= 0x1000,
55 OVERLINECOLOR
= 0x2000,
62 template <> struct typed_flags
<vcl::PushFlags
> : is_typed_flags
<vcl::PushFlags
, 0xFFFF>
66 #define PUSH_ALLFONT \
67 (vcl::PushFlags::TEXTCOLOR | vcl::PushFlags::TEXTFILLCOLOR | vcl::PushFlags::TEXTLINECOLOR \
68 | vcl::PushFlags::OVERLINECOLOR | vcl::PushFlags::TEXTALIGN | vcl::PushFlags::TEXTLAYOUTMODE \
69 | vcl::PushFlags::TEXTLANGUAGE | vcl::PushFlags::FONT)
73 // Layout flags for Complex Text Layout
74 // These are flag values, i.e they can be combined
75 enum class ComplexTextLayoutFlags
80 TextOriginLeft
= 0x0004,
81 TextOriginRight
= 0x0008
88 struct typed_flags
<vcl::text::ComplexTextLayoutFlags
>
89 : is_typed_flags
<vcl::text::ComplexTextLayoutFlags
, 0x000f>
99 State(State
&&) = default;
101 std::unique_ptr
<vcl::Region
> mpClipRegion
;
102 std::optional
<MapMode
> mpMapMode
;
103 std::optional
<vcl::Font
> mpFont
;
104 std::optional
<Point
> mpRefPoint
;
105 std::optional
<Color
> mpLineColor
;
106 std::optional
<Color
> mpFillColor
;
107 std::optional
<Color
> mpTextColor
;
108 std::optional
<Color
> mpTextFillColor
;
109 std::optional
<Color
> mpTextLineColor
;
110 std::optional
<Color
> mpOverlineColor
;
111 TextAlign meTextAlign
= ALIGN_TOP
;
112 RasterOp meRasterOp
= RasterOp::OverPaint
;
113 text::ComplexTextLayoutFlags mnTextLayoutMode
= text::ComplexTextLayoutFlags::Default
;
114 LanguageType meTextLanguage
= LANGUAGE_SYSTEM
;
115 PushFlags mnFlags
= PushFlags::NONE
;
116 bool mbMapActive
= false;
120 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */