KiCad PCB EDA Suite
Loading...
Searching...
No Matches
drawing_tool.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) 2014-2017 CERN
5 * Copyright (C) 2018-2022 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * @author Maciej Suminski <[email protected]>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, you may find one here:
21 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
22 * or you may search the http://www.gnu.org website for the version 2 license,
23 * or you may write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
25 */
26
27#ifndef __DRAWING_TOOL_H
28#define __DRAWING_TOOL_H
29
30#include <stack>
31#include <optional>
32#include <tool/tool_menu.h>
33#include <tools/pcb_tool_base.h>
34#include <tools/pcb_actions.h>
35
36namespace KIGFX
37{
38 class VIEW;
39 class VIEW_CONTROLS;
40}
41
42class BOARD;
44class PCB_SHAPE;
47class STATUS_MIN_MAX_POPUP;
48
49
55{
56public:
59
61 bool Init() override;
62
64 void Reset( RESET_REASON aReason ) override;
65
67 enum class MODE
68 {
69 NONE,
70 LINE,
72 CIRCLE,
73 ARC,
74 BEZIER,
75 IMAGE,
76 TEXT,
77 ANCHOR,
78 DXF,
80 KEEPOUT,
81 ZONE,
83 VIA,
84 TUNING
85 };
86
91 MODE GetDrawingMode() const;
92
95 std::vector<BOARD_ITEM*> DrawBoardCharacteristics( const VECTOR2I& origin, PCB_LAYER_ID aLayer,
96 bool aDrawNow, VECTOR2I* tablesize );
97
100 std::vector<BOARD_ITEM*> DrawSpecificationStackup( const VECTOR2I& origin, PCB_LAYER_ID aLayer,
101 bool aDrawNow, VECTOR2I* tablesize );
102
105 int PlaceCharacteristics( const TOOL_EVENT& aEvent );
106
109 int PlaceStackup( const TOOL_EVENT& aEvent );
110
113 int PlaceTuningPattern( const TOOL_EVENT& aEvent );
114
122 int DrawLine( const TOOL_EVENT& aEvent );
123
130 int DrawRectangle( const TOOL_EVENT& aEvent );
131
138 int DrawCircle( const TOOL_EVENT& aEvent );
139
147 int DrawArc( const TOOL_EVENT& aEvent );
148
154 int DrawBezier( const TOOL_EVENT& aEvent );
155
160 int PlaceReferenceImage( const TOOL_EVENT& aEvent );
161
166 int PlaceText( const TOOL_EVENT& aEvent );
167
168 /*
169 * Start interactively drawing a table (rows & columns of TEXTBOXes).
170 */
171 int DrawTable( const TOOL_EVENT& aEvent );
172
180 int DrawDimension( const TOOL_EVENT& aEvent );
181
195 int DrawZone( const TOOL_EVENT& aEvent );
196
197 int DrawVia( const TOOL_EVENT& aEvent );
198
202 int PlaceImportedGraphics( const TOOL_EVENT& aEvent );
203
216 int InteractivePlaceWithPreview( const TOOL_EVENT& aEvent,
217 std::vector<BOARD_ITEM*>& aItems,
218 std::vector<BOARD_ITEM*>& aPreview, LSET* aLayers );
219
220
224 int SetAnchor( const TOOL_EVENT& aEvent );
225
229 int ToggleHV45Mode( const TOOL_EVENT& toolEvent );
230
232 void setTransitions() override;
233
234 void SetStroke( const STROKE_PARAMS& aStroke, PCB_LAYER_ID aLayer )
235 {
236 m_layer = aLayer;
237 m_stroke = aStroke;
238 }
239
240 void UpdateStatusBar() const;
241
242private:
254 bool drawShape( const TOOL_EVENT& aTool, PCB_SHAPE** aGraphic,
255 std::optional<VECTOR2D> aStartingPoint,
256 std::stack<PCB_SHAPE*>* aCommittedGraphics );
257
266 bool drawArc( const TOOL_EVENT& aTool, PCB_SHAPE** aGraphic,
267 std::optional<VECTOR2D> aStartingPoint );
268
281 std::unique_ptr<PCB_SHAPE> drawOneBezier( const TOOL_EVENT& aTool,
282 const OPT_VECTOR2I& aStartingPoint,
283 const OPT_VECTOR2I& aStartingControl1Point );
284
307 bool getSourceZoneForAction( ZONE_MODE aMode, ZONE** aZone );
308
315
323 VECTOR2I getClampedDifferenceEnd( const VECTOR2I& aOrigin, const VECTOR2I& aEnd )
324 {
325 typedef std::numeric_limits<int> coord_limits;
326 const int guardValue = 1;
327
328 VECTOR2I::extended_type maxDiff = coord_limits::max() - guardValue;
329
330 VECTOR2I::extended_type xDiff = VECTOR2I::extended_type( aEnd.x ) - aOrigin.x;
331 VECTOR2I::extended_type yDiff = VECTOR2I::extended_type( aEnd.y ) - aOrigin.y;
332
333 if( xDiff > maxDiff )
334 xDiff = maxDiff;
335 if( yDiff > maxDiff )
336 yDiff = maxDiff;
337
338 if( xDiff < -maxDiff )
339 xDiff = -maxDiff;
340 if( yDiff < -maxDiff )
341 yDiff = -maxDiff;
342
343 return aOrigin + VECTOR2I( int( xDiff ), int( yDiff ) );
344 }
345
353 VECTOR2I getClampedRadiusEnd( const VECTOR2I& aOrigin, const VECTOR2I& aEnd )
354 {
355 typedef std::numeric_limits<int> coord_limits;
356 const int guardValue = 10;
357
358 VECTOR2I::extended_type xDiff = VECTOR2I::extended_type( aEnd.x ) - aOrigin.x;
359 VECTOR2I::extended_type yDiff = VECTOR2I::extended_type( aEnd.y ) - aOrigin.y;
360
361 double maxRadius = coord_limits::max() / 2 - guardValue;
362 double radius = std::hypot( xDiff, yDiff );
363
364 if( radius > maxRadius )
365 {
366 double scaleFactor = maxRadius / radius;
367
368 xDiff = KiROUND<double, int>( xDiff * scaleFactor );
369 yDiff = KiROUND<double, int>( yDiff * scaleFactor );
370 }
371
372 return aOrigin + VECTOR2I( int( xDiff ), int( yDiff ) );
373 }
374
380 bool m_inDrawingTool; // Re-entrancy guard
381
382 PCB_LAYER_ID m_layer; // The layer we last drew on
383 STROKE_PARAMS m_stroke; // Current stroke for multi-segment drawing
385
389
390 static const unsigned int WIDTH_STEP; // Amount of width change for one -/+ key press
391 static const unsigned int COORDS_PADDING; // Padding from coordinates limits for this tool
392
393
394 friend class ZONE_CREATE_HELPER; // give internal access to helper classes
395};
396
397#endif /* __DRAWING_TOOL_H */
A base class derived from BOARD_ITEM for items that can be connected and have a net,...
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:290
Tool responsible for drawing graphical elements like lines, arcs, circles, etc.
Definition: drawing_tool.h:55
TEXT_ATTRIBUTES m_textAttrs
Definition: drawing_tool.h:384
MODE GetDrawingMode() const
Return the current drawing mode of the DRAWING_TOOL or MODE::NONE if not currently in any drawing mod...
void SetStroke(const STROKE_PARAMS &aStroke, PCB_LAYER_ID aLayer)
Definition: drawing_tool.h:234
PCB_SELECTION m_preview
Definition: drawing_tool.h:386
PCB_LAYER_ID m_layer
Definition: drawing_tool.h:382
int DrawTable(const TOOL_EVENT &aEvent)
int SetAnchor(const TOOL_EVENT &aEvent)
Place the footprint anchor (only in footprint editor).
int DrawDimension(const TOOL_EVENT &aEvent)
Start interactively drawing a dimension.
int DrawVia(const TOOL_EVENT &aEvent)
KIGFX::VIEW_CONTROLS * m_controls
Definition: drawing_tool.h:376
KIGFX::VIEW * m_view
Definition: drawing_tool.h:375
STROKE_PARAMS m_stroke
Definition: drawing_tool.h:383
int DrawZone(const TOOL_EVENT &aEvent)
Start interactively drawing a zone.
int DrawBezier(const TOOL_EVENT &aEvent)
Start interactively drawing a bezier curve.
int DrawLine(const TOOL_EVENT &aEvent)
Start interactively drawing a line.
int DrawArc(const TOOL_EVENT &aEvent)
Start interactively drawing an arc.
VECTOR2I getClampedDifferenceEnd(const VECTOR2I &aOrigin, const VECTOR2I &aEnd)
Clamps the end vector to respect numeric limits of difference representation.
Definition: drawing_tool.h:323
BOARD_CONNECTED_ITEM * m_pickerItem
Definition: drawing_tool.h:387
int ToggleHV45Mode(const TOOL_EVENT &toolEvent)
Toggle the horizontal/vertical/45-degree constraint for drawing tools.
int PlaceCharacteristics(const TOOL_EVENT &aEvent)
bool drawShape(const TOOL_EVENT &aTool, PCB_SHAPE **aGraphic, std::optional< VECTOR2D > aStartingPoint, std::stack< PCB_SHAPE * > *aCommittedGraphics)
Start drawing a selected shape (i.e.
void setTransitions() override
This method is meant to be overridden in order to specify handlers for events.
int PlaceImportedGraphics(const TOOL_EVENT &aEvent)
Place a drawing imported from a DXF or SVG file in footprint editor.
int PlaceStackup(const TOOL_EVENT &aEvent)
VECTOR2I getClampedRadiusEnd(const VECTOR2I &aOrigin, const VECTOR2I &aEnd)
Clamps the end vector to respect numeric limits of radius representation.
Definition: drawing_tool.h:353
bool m_inDrawingTool
Definition: drawing_tool.h:380
static const unsigned int WIDTH_STEP
Definition: drawing_tool.h:390
static const unsigned int COORDS_PADDING
Definition: drawing_tool.h:391
bool drawArc(const TOOL_EVENT &aTool, PCB_SHAPE **aGraphic, std::optional< VECTOR2D > aStartingPoint)
Start drawing an arc.
int InteractivePlaceWithPreview(const TOOL_EVENT &aEvent, std::vector< BOARD_ITEM * > &aItems, std::vector< BOARD_ITEM * > &aPreview, LSET *aLayers)
Interactively place a set of BOARD_ITEM.
std::vector< BOARD_ITEM * > DrawBoardCharacteristics(const VECTOR2I &origin, PCB_LAYER_ID aLayer, bool aDrawNow, VECTOR2I *tablesize)
int DrawCircle(const TOOL_EVENT &aEvent)
Start interactively drawing a circle.
int PlaceTuningPattern(const TOOL_EVENT &aEvent)
std::vector< BOARD_ITEM * > DrawSpecificationStackup(const VECTOR2I &origin, PCB_LAYER_ID aLayer, bool aDrawNow, VECTOR2I *tablesize)
BOARD * m_board
Definition: drawing_tool.h:377
int DrawRectangle(const TOOL_EVENT &aEvent)
Start interactively drawing a rectangle.
bool Init() override
Init() is called once upon a registration of the tool.
void constrainDimension(PCB_DIMENSION_BASE *aDim)
Force the dimension lime to be drawn on multiple of 45 degrees.
int PlaceText(const TOOL_EVENT &aEvent)
Display a dialog that allows one to input text and its settings and then lets the user decide where t...
PCB_BASE_EDIT_FRAME * m_frame
Definition: drawing_tool.h:378
void UpdateStatusBar() const
int PlaceReferenceImage(const TOOL_EVENT &aEvent)
Display a dialog that allows one to select a reference image and then decide where to place the image...
std::unique_ptr< PCB_SHAPE > drawOneBezier(const TOOL_EVENT &aTool, const OPT_VECTOR2I &aStartingPoint, const OPT_VECTOR2I &aStartingControl1Point)
Draw a bezier curve.
PCB_TUNING_PATTERN * m_tuningPattern
Definition: drawing_tool.h:388
bool getSourceZoneForAction(ZONE_MODE aMode, ZONE **aZone)
Draw a polygon, that is added as a zone or a keepout area.
An interface for classes handling user events controlling the view behavior such as zooming,...
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:68
LSET is a set of PCB_LAYER_IDs.
Definition: lset.h:36
Common, abstract interface for edit frames.
Abstract dimension API.
Class that handles the drawing of a polygon, including management of last corner deletion and drawing...
Simple container to manage line stroke parameters.
Definition: stroke_params.h:79
RESET_REASON
Determine the reason of reset for a tool.
Definition: tool_base.h:78
Generic, UI-independent tool event.
Definition: tool_event.h:167
VECTOR2_TRAITS< int32_t >::extended_type extended_type
Definition: vector2d.h:73
An adjunct helper to the DRAWING_TOOL interactive tool, which handles incoming geometry changes from ...
Handle a list of polygons defining a copper zone.
Definition: zone.h:73
void Reset() override
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60
The Cairo implementation of the graphics abstraction layer.
Definition: color4d.cpp:247
ZONE_MODE
Definition: pcb_actions.h:35
std::optional< VECTOR2I > OPT_VECTOR2I
Definition: seg.h:39
VECTOR2< int32_t > VECTOR2I
Definition: vector2d.h:691