KiCad PCB EDA Suite
Loading...
Searching...
No Matches
bezier_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 (C) 2024 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#pragma once
25
26#include <eda_item.h>
28#include <layer_ids.h>
29
30namespace KIGFX
31{
32namespace PREVIEW
33{
38 {
39 public:
40 BEZIER_ASSISTANT( const BEZIER_GEOM_MANAGER& aManager, const EDA_IU_SCALE& aIuScale,
41 EDA_UNITS aUnits );
42
43 const BOX2I ViewBBox() const override;
44
45 void ViewGetLayers( int aLayers[], int& aCount ) const override
46 {
47 aLayers[0] = LAYER_SELECT_OVERLAY; // Assistant graphics
48 aLayers[1] = LAYER_GP_OVERLAY; // Drop shadows
49 aCount = 2;
50 }
51
55 void ViewDraw( int aLayer, KIGFX::VIEW* aView ) const override final;
56
57#if defined( DEBUG )
58 void Show( int x, std::ostream& st ) const override {}
59#endif
60
61 wxString GetClass() const override { return "BEZIER_ASSISTANT"; }
62
63 void SetUnits( EDA_UNITS aUnits ) { m_units = aUnits; }
64
65 private:
69 };
70} // namespace PREVIEW
71} // namespace KIGFX
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:89
Represents an assistant draw when interactively drawing a bezier on a canvas.
void ViewGetLayers(int aLayers[], int &aCount) const override
Return the all the layers within the VIEW the object is painted on.
wxString GetClass() const override
Return the class name.
void SetUnits(EDA_UNITS aUnits)
const BEZIER_GEOM_MANAGER & m_constructMan
void ViewDraw(int aLayer, KIGFX::VIEW *aView) const override final
Draw the assistance (with reference to the construction manager.
const BOX2I ViewBBox() const override
Return the bounding box of the item covering all its layers.
Manage the construction of a bezier through a series of steps.
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:68
EDA_UNITS
Definition: eda_units.h:46
@ LAYER_GP_OVERLAY
general purpose overlay
Definition: layer_ids.h:220
@ LAYER_SELECT_OVERLAY
currently selected items overlay
Definition: layer_ids.h:221
The Cairo implementation of the graphics abstraction layer.
Definition: color4d.cpp:247