blob: a43b3e97518578e60cebae48b93e14010b0f9498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
#ifndef INCLUDED_VCL_INC_QUARTZ_CGHELPER_HXX
#define INCLUDED_VCL_INC_QUARTZ_CGHELPER_HXX
#include <premac.h>
#include <CoreGraphics/CoreGraphics.h>
#include <postmac.h>
#include <quartz/utils.h>
class CGLayerHolder
{
private:
CGLayerRef mpLayer;
// Layer's scaling factor
float mfScale;
public:
CGLayerHolder()
: mpLayer(nullptr)
, mfScale(1.0)
{
}
CGLayerHolder(CGLayerRef pLayer, float fScale = 1.0)
: mpLayer(pLayer)
, mfScale(fScale)
{
}
// Just the size of the layer in pixels
CGSize getSizePixels() const
{
CGSize aSize;
if (mpLayer)
{
aSize = CGLayerGetSize(mpLayer);
}
return aSize;
}
// Size in points is size in pixels divided by the scaling factor
CGSize getSizePoints() const
{
CGSize aSize;
if (mpLayer)
{
const CGSize aLayerSize = getSizePixels();
aSize.width = aLayerSize.width / mfScale;
aSize.height = aLayerSize.height / mfScale;
}
return aSize;
}
CGLayerRef get() const { return mpLayer; }
bool isSet() const { return mpLayer != nullptr; }
void set(CGLayerRef const& pLayer) { mpLayer = pLayer; }
float getScale() const { return mfScale; }
void setScale(float fScale) { mfScale = fScale; }
};
class CGContextHolder
{
private:
CGContextRef mpContext;
public:
CGContextHolder()
: mpContext(nullptr)
{
}
CGContextHolder(CGContextRef pContext)
: mpContext(pContext)
{
}
CGContextRef get() const { return mpContext; }
bool isSet() const { return mpContext != nullptr; }
void set(CGContextRef const& pContext) { mpContext = pContext; }
void saveState() { CGContextSaveGState(mpContext); }
void restoreState() { CGContextRestoreGState(mpContext); }
};
#endif // INCLUDED_VCL_INC_QUARTZ_CGHELPER_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|