Gtk-WARNING gtktreestore.c:1047: Invalid column number 1 added to iter
[LibreOffice.git] / vcl / source / filter / ipict / shape.hxx
blob446d564e959065dc59185bf2bea4beecd25ad0f6
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
19 #pragma once
21 #include <vcl/virdev.hxx>
23 namespace PictReaderShape {
24 /** draws a line from orig to dest knowing penSize
26 Attention: in order to draw horizontal/vertical/small lines, this function can instead draw a rectangle or
27 a polygon. In this case, we retrieve the line information from VirtualDev ( GetLineColor )
28 and we use them as fill information ( SetFillColor ). We restore after the VirtualDev state.
30 This implies also that this function must be modified if we use real pattern to draw these primitives.
32 void drawLine(VirtualDevice *dev, Point const &orig, Point const &dest, Size const &pSize);
34 /** draws a rectangle knowing penSize */
35 void drawRectangle(VirtualDevice *dev, bool drawFrame, tools::Rectangle const &rect, Size const &pSize);
37 /** draws a polygon knowing penSize */
38 void drawPolygon(VirtualDevice *dev, bool drawFrame, tools::Polygon const &rect, Size const &pSize);
40 /** draws an ellipse knowing penSize */
41 void drawEllipse(VirtualDevice *dev, bool drawFrame, tools::Rectangle const &orig, Size const &pSize);
43 /** draws a rounded rectangle knowing penSize
44 \note ovalSize is two time the size of the corner
46 void drawRoundRectangle(VirtualDevice *dev, bool drawFrame, tools::Rectangle const &orig, Size const &ovalS, Size const &pSize);
48 /** draws an arc in a b2dpolygon knowing penSize
49 \note - it supposes that angl1 < angl2
51 void drawArc(VirtualDevice *dev, bool drawFrame, tools::Rectangle const &orig, const double& angle1, const double& angle2, Size const &pSize);
54 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */