LibreOffice Module vcl (master) 1
salgtype.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#ifndef INCLUDED_VCL_SALGTYPE_HXX
21#define INCLUDED_VCL_SALGTYPE_HXX
22
24#include <tools/color.hxx>
25#include <tools/gen.hxx>
26#include <ostream>
27
28enum class DeviceFormat {
29 NONE = -1,
30 WITHOUT_ALPHA = 0,
31 WITH_ALPHA = 1,
32#ifdef IOS
33 GRAYSCALE = 8
34#endif
35 };
36
38{
47
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)
52 {
53 }
54};
55
56template <typename charT, typename traits>
57inline std::basic_ostream<charT, traits>& operator<<(std::basic_ostream<charT, traits>& stream,
58 const SalTwoRect& rPosAry)
59{
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;
67}
68
69enum class SalROPColor {
70 N0, N1, Invert
71};
72
73enum class SalInvert {
74 NONE = 0x00,
75 N50 = 0x01,
76 TrackFrame = 0x02
77};
78namespace o3tl
79{
80 template<> struct typed_flags<SalInvert> : is_typed_flags<SalInvert, 0x03> {};
81}
82
83#endif // INCLUDED_VCL_SALGTYPE_HXX
84
85/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Reference< XOutputStream > stream
NONE
long Long
std::basic_ostream< charT, traits > & operator<<(std::basic_ostream< charT, traits > &stream, const SalTwoRect &rPosAry)
Definition: salgtype.hxx:57
DeviceFormat
Definition: salgtype.hxx:28
SalROPColor
Definition: salgtype.hxx:69
SalInvert
Definition: salgtype.hxx:73
SalTwoRect(tools::Long nSrcX, tools::Long nSrcY, tools::Long nSrcWidth, tools::Long nSrcHeight, tools::Long nDestX, tools::Long nDestY, tools::Long nDestWidth, tools::Long nDestHeight)
Definition: salgtype.hxx:48
tools::Long mnDestY
Definition: salgtype.hxx:44
tools::Long mnSrcX
Definition: salgtype.hxx:39
tools::Long mnDestWidth
Definition: salgtype.hxx:45
tools::Long mnSrcHeight
Definition: salgtype.hxx:42
tools::Long mnSrcWidth
Definition: salgtype.hxx:41
tools::Long mnSrcY
Definition: salgtype.hxx:40
tools::Long mnDestHeight
Definition: salgtype.hxx:46
tools::Long mnDestX
Definition: salgtype.hxx:43