summaryrefslogtreecommitdiffstats
path: root/vcl/headless/svpcairotextrender.cxx
blob: c64bafae0969f53bb6174e338dea0889cf2a9cc5 (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
/* -*- 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/.
 */

#include <headless/svpcairotextrender.hxx>
#include <headless/svpgdi.hxx>
#include <cairo.h>

SvpCairoTextRender::SvpCairoTextRender(SvpSalGraphics& rParent)
    : mrParent(rParent)
{
}

cairo_t* SvpCairoTextRender::getCairoContext() { return mrParent.getCairoContext(); }

void SvpCairoTextRender::getSurfaceOffset(double& nDX, double& nDY)
{
    nDX = 0;
    nDY = 0;
}

void SvpCairoTextRender::clipRegion(cairo_t* cr) { mrParent.clipRegion(cr); }

void SvpCairoTextRender::releaseCairoContext(cairo_t* cr)
{
    mrParent.releaseCairoContext(cr, basegfx::B2DRange());
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */