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 The 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, see <https://www.gnu.org/licenses/>.
18 */
19
20#ifndef PREVIEW_ITEMS_CENTERLINE_RECT_ITEM_H
21#define PREVIEW_ITEMS_CENTERLINE_RECT_ITEM_H
22
24
26
27#include <math/vector2d.h>
28
29namespace KIGFX
30{
31class GAL;
32class VIEW;
33
34namespace PREVIEW
35{
37
45{
46public:
47
48 CENTRELINE_RECT_ITEM( const TWO_POINT_GEOMETRY_MANAGER& aGeomMgr, double aAspect );
49
51 virtual const BOX2I ViewBBox() const override;
52
53private:
54
57
59 void drawPreviewShape( KIGFX::VIEW* aView ) const override;
60
62
64 double m_aspect;
65};
66
67} // PREVIEW
68} // KIGFX
69
70#endif // PREVIEW_ITEMS_CENTERLINE_RECT_ITEM_H
BOX2< VECTOR2I > BOX2I
Definition box2.h:918
Abstract interface for drawing on a 2D-surface.
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.
CENTRELINE_RECT_ITEM(const TWO_POINT_GEOMETRY_MANAGER &aGeomMgr, double aAspect)
Gets the bounding box of the rectangle.
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:63
Represent a set of closed polygons.
The Cairo implementation of the graphics abstraction layer.
Definition eda_group.h:29