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_SALGTYPE_HXX
21 #define INCLUDED_VCL_SALGTYPE_HXX
23 #include <o3tl/typed_flags_set.hxx>
24 #include <tools/color.hxx>
25 #include <tools/gen.hxx>
28 enum class DeviceFormat
{
41 tools::Long mnSrcWidth
;
42 tools::Long mnSrcHeight
;
45 tools::Long mnDestWidth
;
46 tools::Long mnDestHeight
;
48 SalTwoRect(tools::Long nSrcX
, tools::Long nSrcY
, tools::Long nSrcWidth
, tools::Long nSrcHeight
,
49 tools::Long nDestX
, tools::Long nDestY
, tools::Long nDestWidth
, tools::Long nDestHeight
)
50 : mnSrcX(nSrcX
), mnSrcY(nSrcY
), mnSrcWidth(nSrcWidth
), mnSrcHeight(nSrcHeight
)
51 , mnDestX(nDestX
), mnDestY(nDestY
), mnDestWidth(nDestWidth
), mnDestHeight(nDestHeight
)
56 template <typename charT
, typename traits
>
57 inline std::basic_ostream
<charT
, traits
>& operator<<(std::basic_ostream
<charT
, traits
>& stream
,
58 const SalTwoRect
& rPosAry
)
60 tools::Rectangle
aSrcRect(rPosAry
.mnSrcX
, rPosAry
.mnSrcY
, rPosAry
.mnSrcX
+ rPosAry
.mnSrcWidth
,
61 rPosAry
.mnSrcY
+ rPosAry
.mnSrcHeight
);
62 tools::Rectangle
aDestRect(rPosAry
.mnDestX
, rPosAry
.mnDestY
,
63 rPosAry
.mnDestX
+ rPosAry
.mnDestWidth
,
64 rPosAry
.mnDestY
+ rPosAry
.mnDestHeight
);
65 stream
<< aSrcRect
<< " => " << aDestRect
;
69 enum class SalROPColor
{
73 enum class SalInvert
{
80 template<> struct typed_flags
<SalInvert
> : is_typed_flags
<SalInvert
, 0x03> {};
83 #endif // INCLUDED_VCL_SALGTYPE_HXX
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */