bump product version to 7.6.3.2-android
[LibreOffice.git] / include / vcl / salgtype.hxx
blob65213d4f7af5f8cb4d5bc51109c2873d1dcdc34e
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_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>
26 #include <ostream>
28 enum class DeviceFormat {
29 NONE = -1,
30 WITHOUT_ALPHA = 0,
31 WITH_ALPHA = 1,
32 #ifdef IOS
33 GRAYSCALE = 8
34 #endif
37 struct SalTwoRect
39 tools::Long mnSrcX;
40 tools::Long mnSrcY;
41 tools::Long mnSrcWidth;
42 tools::Long mnSrcHeight;
43 tools::Long mnDestX;
44 tools::Long mnDestY;
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;
66 return stream;
69 enum class SalROPColor {
70 N0, N1, Invert
73 enum class SalInvert {
74 NONE = 0x00,
75 N50 = 0x01,
76 TrackFrame = 0x02
78 namespace o3tl
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: */