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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/* -*- 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/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "x11cairotextrender.hxx"
#include "unx/saldata.hxx"
#include "unx/saldisp.hxx"
#include "unx/salvd.h"
#include "gcach_xpeer.hxx"
#include <cairo.h>
#include <cairo-ft.h>
#include <cairo-xlib.h>
#include <cairo-xlib-xrender.h>
struct BOX
{
short x1, x2, y1, y2;
};
struct _XRegion
{
long size;
long numRects;
BOX *rects;
BOX extents;
};
X11CairoTextRender::X11CairoTextRender(bool bPrinter, X11SalGraphics& rParent):
CairoTextRender(bPrinter),
mrParent(rParent)
{
}
GlyphCache& X11CairoTextRender::getPlatformGlyphCache()
{
return X11GlyphCache::GetInstance();
}
cairo_surface_t* X11CairoTextRender::getCairoSurface()
{
// find a XRenderPictFormat compatible with the Drawable
XRenderPictFormat* pVisualFormat = mrParent.GetXRenderFormat();
Display* pDisplay = mrParent.GetXDisplay();
cairo_surface_t* surface = NULL;
if (pVisualFormat)
{
surface = cairo_xlib_surface_create_with_xrender_format (
pDisplay, mrParent.hDrawable_,
ScreenOfDisplay(pDisplay, mrParent.m_nXScreen.getXScreen()),
pVisualFormat, SAL_MAX_INT16, SAL_MAX_INT16);
}
else
{
surface = cairo_xlib_surface_create(pDisplay, mrParent.hDrawable_,
mrParent.GetVisual().visual, SAL_MAX_INT16, SAL_MAX_INT16);
}
return surface;
}
void X11CairoTextRender::clipRegion(cairo_t* cr)
{
Region pClipRegion = mrParent.mpClipRegion;
if( pClipRegion && !XEmptyRegion( pClipRegion ) )
{
for (long i = 0; i < pClipRegion->numRects; ++i)
{
cairo_rectangle(cr,
pClipRegion->rects[i].x1,
pClipRegion->rects[i].y1,
pClipRegion->rects[i].x2 - pClipRegion->rects[i].x1,
pClipRegion->rects[i].y2 - pClipRegion->rects[i].y1);
}
cairo_clip(cr);
}
}
size_t X11CairoTextRender::GetWidth() const
{
if( mrParent.m_pFrame )
return mrParent.m_pFrame->maGeometry.nWidth;
else if( mrParent.m_pVDev )
{
long nWidth = 0;
long nHeight = 0;
mrParent.m_pVDev->GetSize( nWidth, nHeight );
return nWidth;
}
return 1;
}
size_t X11CairoTextRender::GetHeight() const
{
if( mrParent.m_pFrame )
return mrParent.m_pFrame->maGeometry.nHeight;
else if( mrParent.m_pVDev )
{
long nWidth = 0;
long nHeight = 0;
mrParent.m_pVDev->GetSize( nWidth, nHeight );
return nHeight;
}
return 1;
}
void X11CairoTextRender::drawSurface(cairo_t* /*cr*/)
{
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|