KiCad PCB EDA Suite
Loading...
Searching...
No Matches
arc_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, 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_ARC_ASSISTANT_H
25#define PREVIEW_ITEMS_ARC_ASSISTANT_H
26
27#include <eda_item.h>
28#include <eda_units.h>
30#include <layer_ids.h>
31
32namespace KIGFX
33{
34
35namespace PREVIEW
36{
37
41class ARC_ASSISTANT : public EDA_ITEM
42{
43public:
44 ARC_ASSISTANT( const ARC_GEOM_MANAGER& aManager,
45 const EDA_IU_SCALE& aIuScale,
46 EDA_UNITS aUnits );
47
48 const BOX2I ViewBBox() const override;
49
50 std::vector<int> ViewGetLayers() const override
51 {
52 return { LAYER_SELECT_OVERLAY, // Assistant graphics
53 LAYER_GP_OVERLAY }; // Drop shadows
54 }
55
59 void ViewDraw( int aLayer, KIGFX::VIEW* aView ) const override final;
60
61#if defined( DEBUG )
62 void Show( int x, std::ostream& st ) const override
63 {
64 }
65#endif
66
67 wxString GetClass() const override
68 {
69 return "ARC_ASSISTANT";
70 }
71
72 void SetUnits( EDA_UNITS aUnits ) { m_units = aUnits; }
73
74private:
78};
79
80} // namespace PREVIEW
81} // namespace KIGFX
82
83#endif // PREVIEW_ITEMS_ARC_ASSISTANT_H
BOX2< VECTOR2I > BOX2I
Definition box2.h:922
EDA_ITEM(EDA_ITEM *parent, KICAD_T idType, bool isSCH_ITEM=false, bool isBOARD_ITEM=false)
Definition eda_item.cpp:41
void ViewDraw(int aLayer, KIGFX::VIEW *aView) const override final
Draw the assistance (with reference to the construction manager.
void SetUnits(EDA_UNITS aUnits)
std::vector< int > ViewGetLayers() const override
Return the all the layers within the VIEW the object is painted on.
const ARC_GEOM_MANAGER & m_constructMan
const BOX2I ViewBBox() const override
Return the bounding box of the item covering all its layers.
ARC_ASSISTANT(const ARC_GEOM_MANAGER &aManager, const EDA_IU_SCALE &aIuScale, EDA_UNITS aUnits)
wxString GetClass() const override
Return the class name.
const EDA_IU_SCALE & m_iuScale
Manage the construction of a circular arc though sequential setting of critical points: center,...
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition view.h:67
EDA_UNITS
Definition eda_units.h:48
@ LAYER_GP_OVERLAY
General purpose overlay.
Definition layer_ids.h:279
@ LAYER_SELECT_OVERLAY
Selected items overlay.
Definition layer_ids.h:280
The Cairo implementation of the graphics abstraction layer.
Definition eda_group.h:33