KiCad PCB EDA Suite
Loading...
Searching...
No Matches
ellipse_assistant.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_ELLIPSE_ASSISTANT_H
21#define PREVIEW_ITEMS_ELLIPSE_ASSISTANT_H
22
23#include <eda_item.h>
24#include <eda_units.h>
26#include <layer_ids.h>
27
28namespace KIGFX
29{
30
31namespace PREVIEW
32{
33
43{
44public:
45 ELLIPSE_ASSISTANT( const ELLIPSE_GEOM_MANAGER& aManager, const EDA_IU_SCALE& aIuScale, EDA_UNITS aUnits );
46
47 const BOX2I ViewBBox() const override;
48
49 std::vector<int> ViewGetLayers() const override
50 {
51 return {
54 };
55 }
56
57 void ViewDraw( int aLayer, KIGFX::VIEW* aView ) const override final;
58
59#if defined( DEBUG )
60 void Show( int x, std::ostream& st ) const override {}
61#endif
62
63 wxString GetClass() const override { return "ELLIPSE_ASSISTANT"; }
64
65 void SetUnits( EDA_UNITS aUnits ) { m_units = aUnits; }
66
67private:
71
75};
76
77} // namespace PREVIEW
78} // namespace KIGFX
79
80#endif // PREVIEW_ITEMS_ELLIPSE_ASSISTANT_H
BOX2< VECTOR2I > BOX2I
Definition box2.h:918
EDA_ITEM(EDA_ITEM *parent, KICAD_T idType, bool isSCH_ITEM=false, bool isBOARD_ITEM=false)
Definition eda_item.cpp:37
std::vector< int > ViewGetLayers() const override
Return the all the layers within the VIEW the object is painted on.
wxString GetClass() const override
Return the class name.
EDA_UNITS m_units
Draw the arc segment (or just the radius lines).
void ViewDraw(int aLayer, KIGFX::VIEW *aView) const override final
Draw the parts of the object belonging to layer aLayer.
const BOX2I ViewBBox() const override
Return the bounding box of the item covering all its layers.
ELLIPSE_ASSISTANT(const ELLIPSE_GEOM_MANAGER &aManager, const EDA_IU_SCALE &aIuScale, EDA_UNITS aUnits)
const ELLIPSE_GEOM_MANAGER & m_constructMan
Manage the construction of an elliptical arc through sequential setting of critical points: two bound...
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition view.h:63
EDA_UNITS
Definition eda_units.h:44
@ LAYER_GP_OVERLAY
General purpose overlay.
Definition layer_ids.h:275
@ LAYER_SELECT_OVERLAY
Selected items overlay.
Definition layer_ids.h:276
The Cairo implementation of the graphics abstraction layer.
Definition eda_group.h:29