KiCad PCB EDA Suite
Loading...
Searching...
No Matches
centreline_rect_item.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2017-2021 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#ifndef PREVIEW_ITEMS_CENTERLINE_RECT_ITEM_H
25#define PREVIEW_ITEMS_CENTERLINE_RECT_ITEM_H
26
28
30
31#include <math/vector2d.h>
32
33namespace KIGFX
34{
35class GAL;
36class VIEW;
37
38namespace PREVIEW
39{
40class TWO_POINT_GEOMETRY_MANAGER;
41
49{
50public:
51
52 CENTRELINE_RECT_ITEM( const TWO_POINT_GEOMETRY_MANAGER& aGeomMgr, double aAspect );
53
55 virtual const BOX2I ViewBBox() const override;
56
57private:
58
61
63 void drawPreviewShape( KIGFX::VIEW* aView ) const override;
64
66
68 double m_aspect;
69};
70
71} // PREVIEW
72} // KIGFX
73
74#endif // PREVIEW_ITEMS_CENTERLINE_RECT_ITEM_H
Represent an area drawn by drawing a rectangle of a given aspect along a vector, with the midpoint of...
virtual const BOX2I ViewBBox() const override
Return the bounding box of the item covering all its layers.
void drawPreviewShape(KIGFX::VIEW *aView) const override
Draw the preview onto the given GAL.
SHAPE_POLY_SET getOutline() const
< Get the rectangular outline
const TWO_POINT_GEOMETRY_MANAGER & m_geomMgr
The aspect ratio of the rectangle to draw.
SIMPLE_OVERLAY_ITEM is class that represents a visual area drawn on a canvas, used to temporarily dem...
Represent a very simple geometry manager for items that have a start and end point.
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:68
Represent a set of closed polygons.
The Cairo implementation of the graphics abstraction layer.
Definition: color4d.cpp:247