1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 #include <vcl/virdev.hxx>
22 namespace PictReaderShape
{
23 /** draws a line from orig to dest knowing penSize
25 Attention: in order to draw horizontal/vertical/small lines, this function can instead draw a rectangle or
26 a polygon. In this case, we retrieve the line information from VirtualDev ( GetLineColor )
27 and we use them as fill information ( SetFillColor ). We restore after the VirtualDev state.
29 This implies also that this function must be modified if we use real pattern to draw these primitives.
31 void drawLine(VirtualDevice
*dev
, Point
const &orig
, Point
const &dest
, Size
const &pSize
);
33 /** draws a rectangle knowing penSize */
34 void drawRectangle(VirtualDevice
*dev
, bool drawFrame
, Rectangle
const &rect
, Size
const &pSize
);
36 /** draws a polygon knowing penSize */
37 void drawPolygon(VirtualDevice
*dev
, bool drawFrame
, Polygon
const &rect
, Size
const &pSize
);
39 /** draws an ellipse knowing penSize */
40 void drawEllipse(VirtualDevice
*dev
, bool drawFrame
, Rectangle
const &orig
, Size
const &pSize
);
42 /** draws a rounded rectangle knowing penSize
43 \note ovalSize is two time the size of the corner
45 void drawRoundRectangle(VirtualDevice
*dev
, bool drawFrame
, Rectangle
const &orig
, Size
const &ovalS
, Size
const &pSize
);
47 /** draws an arc in a b2dpolygon knowing penSize
48 \note - it supposes that angl1 < angl2
50 void drawArc(VirtualDevice
*dev
, bool drawFrame
, Rectangle
const &orig
, const double& angle1
, const double& angle2
, Size
const &pSize
);
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */