KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
pcb_viewer_tools.cpp
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
25
26#include <wx/clipbrd.h>
27
31#include <kiplatform/ui.h>
32#include <pcb_base_frame.h>
34#include <pgm_base.h>
36#include <tool/actions.h>
38#include <tools/pcb_actions.h>
39
40
42{
43 // Populate the context menu displayed during the tool (primarily the measure tool)
44 auto activeToolCondition =
45 [ this ] ( const SELECTION& aSel )
46 {
47 return !frame()->ToolStackIsEmpty();
48 };
49
50 CONDITIONAL_MENU& ctxMenu = m_menu->GetMenu();
51
52 // "Cancel" goes at the top of the context menu when a tool is active
53 if( !m_isDefaultTool )
54 {
55 ctxMenu.AddItem( ACTIONS::cancelInteractive, activeToolCondition, 1 );
56 ctxMenu.AddSeparator( 1 );
57 }
58
59 ctxMenu.AddCheckItem( PCB_ACTIONS::toggleHV45Mode, activeToolCondition, 2 );
60 ctxMenu.AddSeparator( activeToolCondition, 2 );
61
62 ctxMenu.AddItem( ACTIONS::copy, activeToolCondition, 3 );
63 ctxMenu.AddSeparator( activeToolCondition, 3 );
64
65 frame()->AddStandardSubMenus( *m_menu.get() );
66
67 return true;
68}
69
70
72{
73}
74
75
77{
78 bool do_reload_board = true; // reload board flag
79
80 // At EDA_3D_VIEWER_FRAME creation, the current board is loaded, so disable loading
81 // the current board if the 3D frame is not yet created
82 if( frame()->Get3DViewerFrame() == nullptr )
83 do_reload_board = false;
84
86
87 if( frame()->IsType( FRAME_FOOTPRINT_VIEWER )
88 || frame()->IsType( FRAME_FOOTPRINT_WIZARD ) )
89 {
90 // A stronger version of Raise() which promotes the window to its parent's level.
91 KIPLATFORM::UI::ReparentModal( draw3DFrame );
92 }
93
94 // And load or update the current board (if needed)
95 if( do_reload_board )
96 frame()->Update3DView( true, true );
97
98 return 0;
99}
100
101
102template<class T> void Flip( T& aValue )
103{
104 aValue = !aValue;
105}
106
107
109{
112
113 for( FOOTPRINT* fp : board()->Footprints() )
114 {
115 for( PAD* pad : fp->Pads() )
117 }
118
119 canvas()->Refresh();
120
121 return 0;
122}
123
124
126{
129
130 for( FOOTPRINT* fp : board()->Footprints() )
131 {
132 for( PAD* pad : fp->Pads() )
134 }
135
136 canvas()->Refresh();
137
138 return 0;
139}
140
141
143{
146
147 for( FOOTPRINT* fp : board()->Footprints() )
148 {
149 for( BOARD_ITEM* item : fp->GraphicalItems() )
150 {
151 KICAD_T t = item->Type();
152
153 if( t == PCB_SHAPE_T || BaseType( t ) == PCB_DIMENSION_T )
154 view()->Update( item, KIGFX::REPAINT );
155 }
156 }
157
158 for( BOARD_ITEM* item : board()->Drawings() )
159 {
160 KICAD_T t = item->Type();
161
162 if( t == PCB_SHAPE_T || BaseType( t ) == PCB_DIMENSION_T || t == PCB_TARGET_T )
163 view()->Update( item, KIGFX::REPAINT );
164 }
165
166 canvas()->Refresh();
167
168 return 0;
169}
170
171
173{
176
177 for( FOOTPRINT* fp : board()->Footprints() )
178 {
179 for( PCB_FIELD* field : fp->GetFields() )
180 {
181 view()->Update( field, KIGFX::REPAINT );
182 }
183
184 for( BOARD_ITEM* item : fp->GraphicalItems() )
185 {
186 if( item->Type() == PCB_TEXT_T )
187 view()->Update( item, KIGFX::REPAINT );
188 }
189 }
190
191 for( BOARD_ITEM* item : board()->Drawings() )
192 {
193 KICAD_T t = item->Type();
194
195 if( t == PCB_TEXT_T || t == PCB_TEXTBOX_T || BaseType( t ) == PCB_DIMENSION_T )
196 view()->Update( item, KIGFX::REPAINT );
197 }
198
199 canvas()->Refresh();
200
201 return 0;
202}
203
204
206
207
209{
210 if( IsFootprintFrame() && !frame()->GetModel() )
211 return 0;
212
213 if( frame()->IsCurrentTool( ACTIONS::measureTool ) )
214 return 0;
215
216 auto& view = *getView();
217 auto& controls = *getViewControls();
218
219 frame()->PushTool( aEvent );
220
221 bool invertXAxis = displayOptions().m_DisplayInvertXAxis;
222 bool invertYAxis = displayOptions().m_DisplayInvertYAxis;
223
224 if( IsFootprintFrame() )
225 {
228 }
229
231 PCB_GRID_HELPER grid( m_toolMgr, frame()->GetMagneticItemsSettings() );
232 bool originSet = false;
233 EDA_UNITS units = frame()->GetUserUnits();
234 KIGFX::PREVIEW::RULER_ITEM ruler( twoPtMgr, pcbIUScale, units, invertXAxis, invertYAxis );
235
236 view.Add( &ruler );
237 view.SetVisible( &ruler, false );
238
239 auto setCursor =
240 [&]()
241 {
242 frame()->GetCanvas()->SetCurrentCursor( KICURSOR::MEASURE );
243 };
244
245 auto cleanup =
246 [&] ()
247 {
248 view.SetVisible( &ruler, false );
249 controls.SetAutoPan( false );
250 controls.CaptureCursor( false );
251 controls.ForceCursorPosition( false );
252 originSet = false;
253 };
254
255 Activate();
256 // Must be done after Activate() so that it gets set into the correct context
257 controls.ShowCursor( true );
258 controls.SetAutoPan( false );
259 controls.CaptureCursor( false );
260 controls.ForceCursorPosition( false );
261
262 // Set initial cursor
263 setCursor();
264
265 while( TOOL_EVENT* evt = Wait() )
266 {
267 setCursor();
268 grid.SetSnap( !evt->Modifier( MD_SHIFT ) );
269 grid.SetUseGrid( view.GetGAL()->GetGridSnapping() && !evt->DisableGridSnapping() );
270 VECTOR2I cursorPos = evt->HasPosition() ? evt->Position() : controls.GetMousePosition();
271 cursorPos = grid.BestSnapAnchor( cursorPos, nullptr );
272 controls.ForceCursorPosition( true, cursorPos );
273
274 if( evt->IsCancelInteractive() )
275 {
276 if( originSet )
277 {
278 cleanup();
279 }
280 else if( m_isDefaultTool )
281 {
282 view.SetVisible( &ruler, false );
283 view.Remove( &ruler );
284 }
285 else
286 {
287 frame()->PopTool( aEvent );
288 break;
289 }
290 }
291 else if( evt->IsActivate() )
292 {
293 if( originSet )
294 cleanup();
295
296 if( evt->IsMoveTool() )
297 {
298 // leave ourselves on the stack so we come back after the move
299 break;
300 }
301 else
302 {
303 frame()->PopTool( aEvent );
304 break;
305 }
306 }
307 // click or drag starts
308 else if( !originSet && ( evt->IsDrag( BUT_LEFT ) || evt->IsClick( BUT_LEFT ) ) )
309 {
310 twoPtMgr.SetOrigin( cursorPos );
311 twoPtMgr.SetEnd( cursorPos );
312
313 controls.CaptureCursor( true );
314 controls.SetAutoPan( true );
315
316 originSet = true;
317 }
318 // second click or mouse up after drag ends
319 else if( originSet && ( evt->IsClick( BUT_LEFT ) || evt->IsMouseUp( BUT_LEFT ) ) )
320 {
321 originSet = false;
322
323 controls.SetAutoPan( false );
324 controls.CaptureCursor( false );
325 }
326 // move or drag when origin set updates rules
327 else if( originSet && ( evt->IsMotion() || evt->IsDrag( BUT_LEFT ) ) )
328 {
330 bool force45Deg;
331
332 if( frame()->IsType( FRAME_PCB_EDITOR ) )
333 force45Deg = mgr.GetAppSettings<PCBNEW_SETTINGS>( "pcbnew" )->m_Use45DegreeLimit;
334 else
335 force45Deg = mgr.GetAppSettings<FOOTPRINT_EDITOR_SETTINGS>( "fpedit" )->m_Use45Limit;
336
337 twoPtMgr.SetAngleSnap( force45Deg );
338 twoPtMgr.SetEnd( cursorPos );
339
340 view.SetVisible( &ruler, true );
341 view.Update( &ruler, KIGFX::GEOMETRY );
342 }
343 else if( evt->IsAction( &ACTIONS::updateUnits ) )
344 {
345 if( frame()->GetUserUnits() != units )
346 {
347 units = frame()->GetUserUnits();
348 ruler.SwitchUnits( units );
349 view.Update( &ruler, KIGFX::GEOMETRY );
350 canvas()->Refresh();
351 }
352
353 evt->SetPassEvent();
354 }
355 else if( evt->IsAction( &ACTIONS::updatePreferences ) )
356 {
357 invertXAxis = displayOptions().m_DisplayInvertXAxis;
358 invertYAxis = displayOptions().m_DisplayInvertYAxis;
359
360 if( IsFootprintFrame() )
361 {
364 }
365
366 ruler.UpdateDir( invertXAxis, invertYAxis );
367
368 view.Update( &ruler, KIGFX::GEOMETRY );
369 canvas()->Refresh();
370 evt->SetPassEvent();
371 }
372 else if( evt->IsAction( &ACTIONS::copy ) )
373 {
374 if( originSet )
375 {
376 wxArrayString cursorStrings = ruler.GetDimensionStrings();
377 wxString text = wxJoin( cursorStrings, '\n' );
378
379 if( wxTheClipboard->Open() )
380 {
381 wxTheClipboard->SetData( new wxTextDataObject( text ) );
382 wxTheClipboard->Close();
383 }
384 }
385 }
386 else if( evt->IsClick( BUT_RIGHT ) )
387 {
388 m_menu->ShowContextMenu();
389 }
390 else
391 {
392 evt->SetPassEvent();
393 }
394 }
395
396 view.SetVisible( &ruler, false );
397 view.Remove( &ruler );
398
399 frame()->GetCanvas()->SetCurrentCursor( KICURSOR::ARROW );
400 controls.SetAutoPan( false );
401 controls.CaptureCursor( false );
402 controls.ForceCursorPosition( false );
403 return 0;
404}
405
406
408{
410
411 // Toggle the setting
412 if( cfg )
414
415 return 0;
416}
417
418
420{
421 // clang-format off
423
424 // Display modes
429
431
433 // clang-format on
434}
constexpr EDA_IU_SCALE pcbIUScale
Definition: base_units.h:108
static TOOL_ACTION cancelInteractive
Definition: actions.h:72
static TOOL_ACTION show3DViewer
Definition: actions.h:253
static TOOL_ACTION updatePreferences
Definition: actions.h:267
static TOOL_ACTION copy
Definition: actions.h:78
static TOOL_ACTION updateUnits
Definition: actions.h:207
static TOOL_ACTION measureTool
Definition: actions.h:247
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:78
void AddItem(const TOOL_ACTION &aAction, const SELECTION_CONDITION &aCondition, int aOrder=ANY_ORDER)
Add a menu entry to run a TOOL_ACTION on selected items.
void AddSeparator(int aOrder=ANY_ORDER)
Add a separator to the menu.
void AddCheckItem(const TOOL_ACTION &aAction, const SELECTION_CONDITION &aCondition, int aOrder=ANY_ORDER)
Add a checked menu entry to run a TOOL_ACTION on selected items.
Create and handle a window for the 3d viewer connected to a Kiway and a pcbboard.
virtual APP_SETTINGS_BASE * config() const
Return the settings object used in SaveSettings(), and is overloaded in KICAD_MANAGER_FRAME.
void AddStandardSubMenus(TOOL_MENU &aMenu)
Construct a "basic" menu for a tool, containing only items that apply to all tools (e....
void SetCurrentCursor(KICURSOR aCursor)
Set the current cursor shape for this panel.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
bool GetGridSnapping() const
virtual void Update(const VIEW_ITEM *aItem, int aUpdateFlags) const override
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
Definition: pcb_view.cpp:91
virtual void Add(VIEW_ITEM *aItem, int aDrawPriority=-1) override
Add a VIEW_ITEM to the view.
Definition: pcb_view.cpp:57
virtual void Remove(VIEW_ITEM *aItem) override
Remove a VIEW_ITEM from the view.
Definition: pcb_view.cpp:74
A drawn ruler item for showing the distance between two points.
Definition: ruler_item.h:45
wxArrayString GetDimensionStrings() const
Get the strings for the dimensions of the ruler.
Definition: ruler_item.cpp:375
void SwitchUnits(EDA_UNITS aUnits)
Switch the ruler units.
Definition: ruler_item.h:91
void UpdateDir(bool aFlipX, bool aFlipY)
Definition: ruler_item.h:93
Represent a very simple geometry manager for items that have a start and end point.
void SetOrigin(const VECTOR2I &aOrigin)
< Set the origin of the ruler (the fixed end)
void SetEnd(const VECTOR2I &aEnd)
Set the current end of the rectangle (the end that moves with the cursor.
GAL * GetGAL() const
Return the #GAL this view is using to draw graphical primitives.
Definition: view.h:198
void SetVisible(VIEW_ITEM *aItem, bool aIsVisible=true)
Set the item visibility.
Definition: view.cpp:1600
Definition: pad.h:54
static TOOL_ACTION toggleHV45Mode
Definition: pcb_actions.h:520
static TOOL_ACTION padDisplayMode
Definition: pcb_actions.h:317
static TOOL_ACTION graphicsOutlines
Display footprint graphics as outlines.
Definition: pcb_actions.h:492
static TOOL_ACTION fpAutoZoom
Definition: pcb_actions.h:325
static TOOL_ACTION textOutlines
Display texts as lines.
Definition: pcb_actions.h:495
static TOOL_ACTION showPadNumbers
Definition: pcb_actions.h:324
virtual PCB_VIEWERS_SETTINGS_BASE * GetViewerSettingsBase() const
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
FOOTPRINT_EDITOR_SETTINGS * GetFootprintEditorSettings() const
EDA_3D_VIEWER_FRAME * CreateAndShow3D_Frame()
Show the 3D view frame.
virtual void Update3DView(bool aMarkDirty, bool aRefresh, const wxString *aTitle=nullptr)
Update the 3D view, if the viewer is opened by this frame.
bool m_FootprintViewerAutoZoomOnSelect
true to use automatic zoom on fp selection
VIEWERS_DISPLAY_OPTIONS m_ViewersDisplay
bool Init() override
Init() is called once upon a registration of the tool.
bool m_isDefaultTool
Indicates no selection tool is present in the current toolset.
int FootprintAutoZoom(const TOOL_EVENT &aEvent)
Automatically zoom to fit on footprints.
PCBNEW_SETTINGS::DISPLAY_OPTIONS & displayOptions() const
void setTransitions() override
This method is meant to be overridden in order to specify handlers for events.
void Reset(RESET_REASON aReason) override
Bring the tool to a known, initial state.
PCB_BASE_FRAME * frame() const
int PadDisplayMode(const TOOL_EVENT &aEvent)
BOARD * board() const
KIGFX::PCB_VIEW * view() const
int MeasureTool(const TOOL_EVENT &aEvent)
int TextOutlines(const TOOL_EVENT &aEvent)
PCB_DRAW_PANEL_GAL * canvas() const
bool IsFootprintFrame() const
int Show3DViewer(const TOOL_EVENT &aEvent)
Show the 3D viewer.
int GraphicOutlines(const TOOL_EVENT &aEvent)
int ShowPadNumbers(const TOOL_EVENT &aEvent)
virtual SETTINGS_MANAGER & GetSettingsManager() const
Definition: pgm_base.h:125
T * GetAppSettings(const wxString &aFilename)
Return a handle to the a given settings by type.
virtual void PopTool(const TOOL_EVENT &aEvent)
Pops a tool from the stack.
virtual void PushTool(const TOOL_EVENT &aEvent)
NB: the definition of "tool" is different at the user level.
bool ToolStackIsEmpty()
Definition: tools_holder.h:125
KIGFX::VIEW_CONTROLS * getViewControls() const
Return the instance of VIEW_CONTROLS object used in the application.
Definition: tool_base.cpp:44
TOOL_MANAGER * m_toolMgr
Definition: tool_base.h:220
KIGFX::VIEW * getView() const
Returns the instance of #VIEW object used in the application.
Definition: tool_base.cpp:38
RESET_REASON
Determine the reason of reset for a tool.
Definition: tool_base.h:78
Generic, UI-independent tool event.
Definition: tool_event.h:168
void Go(int(T::*aStateFunc)(const TOOL_EVENT &), const TOOL_EVENT_LIST &aConditions=TOOL_EVENT(TC_ANY, TA_ANY))
Define which state (aStateFunc) to go when a certain event arrives (aConditions).
std::unique_ptr< TOOL_MENU > m_menu
The functions below are not yet implemented - their interface may change.
TOOL_EVENT * Wait(const TOOL_EVENT_LIST &aEventList=TOOL_EVENT(TC_ANY, TA_ANY))
Suspend execution of the tool until an event specified in aEventList arrives.
void Activate()
Run the tool.
EDA_UNITS GetUserUnits() const
Declaration of the eda_3d_viewer class.
EDA_UNITS
Definition: eda_units.h:46
@ FRAME_PCB_EDITOR
Definition: frame_type.h:42
@ FRAME_FOOTPRINT_VIEWER
Definition: frame_type.h:45
@ FRAME_FOOTPRINT_WIZARD
Definition: frame_type.h:46
@ REPAINT
Item needs to be redrawn.
Definition: view_item.h:58
@ GEOMETRY
Position or shape has changed.
Definition: view_item.h:55
void ReparentModal(wxNonOwnedWindow *aWindow)
Move a window's parent to be the top-level window and force the window to be on top.
Definition: wxgtk/ui.cpp:145
void Flip(T &aValue)
void Flip(T &aValue)
PGM_BASE & Pgm()
The global program "get" accessor.
Definition: pgm_base.cpp:1071
see class PGM_BASE
@ MD_SHIFT
Definition: tool_event.h:143
@ BUT_LEFT
Definition: tool_event.h:132
@ BUT_RIGHT
Definition: tool_event.h:133
constexpr KICAD_T BaseType(const KICAD_T aType)
Return the underlying type of the given type.
Definition: typeinfo.h:250
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition: typeinfo.h:78
@ PCB_SHAPE_T
class PCB_SHAPE, a segment not on copper layers
Definition: typeinfo.h:88
@ PCB_TEXTBOX_T
class PCB_TEXTBOX, wrapped text on a layer
Definition: typeinfo.h:93
@ PCB_TEXT_T
class PCB_TEXT, text on a layer
Definition: typeinfo.h:92
@ PCB_TARGET_T
class PCB_TARGET, a target (graphic item)
Definition: typeinfo.h:106
@ PCB_DIMENSION_T
class PCB_DIMENSION_BASE: abstract dimension meta-type
Definition: typeinfo.h:100