KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pl_edit_tool.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 (C) 2019 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21#include <wx/log.h>
22#include <wx/msgdlg.h>
23#include <fmt/format.h>
24
25#include <widgets/wx_infobar.h>
26#include <tool/tool_manager.h>
27#include <tool/picker_tool.h>
31#include <bitmaps.h>
32#include <clipboard.h>
33#include <confirm.h>
34#include <core/kicad_algo.h>
35#include <eda_item.h>
36#include <macros.h>
37#include <string_utils.h>
38#include <view/view.h>
39#include <view/view_controls.h>
40#include <math/util.h> // for KiROUND
41
43#include "tools/pl_actions.h"
44#include "tools/pl_edit_tool.h"
45#include "pl_draw_panel_gal.h"
46#include "pl_editor_frame.h"
47#include "pl_editor_id.h"
48
50 TOOL_INTERACTIVE( "plEditor.InteractiveEdit" ),
51 m_frame( nullptr ),
52 m_selectionTool( nullptr ),
53 m_moveInProgress( false ),
54 m_moveOffset( 0, 0 ),
55 m_cursor( 0, 0 ),
56 m_pickerItem( nullptr )
57{
58}
59
60
62{
65
66 wxASSERT_MSG( m_selectionTool, "plEditor.InteractiveSelection tool is not available" );
67
68 CONDITIONAL_MENU& ctxMenu = m_menu->GetMenu();
69
70 // cancel current tool goes in main context menu at the top if present
72
73 ctxMenu.AddSeparator( 200 );
75
76 // Finally, add the standard zoom/grid items
77 m_frame->AddStandardSubMenus( *m_menu.get() );
78
79 //
80 // Add editing actions to the selection tool menu
81 //
82 CONDITIONAL_MENU& selToolMenu = m_selectionTool->GetToolMenu().GetMenu();
83
85
86 selToolMenu.AddSeparator( 250 );
91
92 return true;
93}
94
95
97{
98 if( aReason == MODEL_RELOAD )
100}
101
102
103int PL_EDIT_TOOL::Main( const TOOL_EVENT& aEvent )
104{
106
107 VECTOR2I originalCursorPos = controls->GetCursorPosition();
108
109 // Be sure that there is at least one item that we can move. If there's no selection try
110 // looking for the stuff under mouse cursor (i.e. Kicad old-style hover selection).
111 PL_SELECTION& selection = m_selectionTool->RequestSelection();
112 bool unselect = selection.IsHover();
113
114 if( selection.Empty() || m_moveInProgress )
115 return 0;
116
117 std::set<DS_DATA_ITEM*> unique_peers;
118
119 for( EDA_ITEM* item : selection )
120 {
121 DS_DRAW_ITEM_BASE* drawItem = static_cast<DS_DRAW_ITEM_BASE*>( item );
122 unique_peers.insert( drawItem->GetPeer() );
123 }
124
125 SCOPED_TOOL_PUSHER raii( m_frame, aEvent );
126
127 Activate();
128 // Must be done after Activate() so that it gets set into the correct context
129 controls->ShowCursor( true );
130 controls->SetAutoPan( true );
131
132 bool restore_state = false;
133 bool chain_commands = false;
134 TOOL_EVENT copy = aEvent;
135 TOOL_EVENT* evt = &copy;
136 VECTOR2I prevPos;
137
138 if( !selection.Front()->IsNew() )
139 {
140 try
141 {
142 m_frame->SaveCopyInUndoList();
143 }
144 catch( const fmt::format_error& exc )
145 {
146 wxLogWarning( wxS( "Exception \"%s\" serializing string ocurred." ), exc.what() );
147 return 1;
148 }
149 }
150
151 // Main loop: keep receiving events
152 do
153 {
154 m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::MOVING );
155
156 if( evt->IsAction( &PL_ACTIONS::move ) || evt->IsMotion() || evt->IsDrag( BUT_LEFT )
158 {
159 //------------------------------------------------------------------------
160 // Start a move operation
161 //
162 if( !m_moveInProgress )
163 {
164 // Apply any initial offset in case we're coming from a previous command.
165 //
166 for( DS_DATA_ITEM* item : unique_peers )
167 moveItem( item, m_moveOffset );
168
169 // Set up the starting position and move/drag offset
170 //
171 m_cursor = controls->GetCursorPosition();
172
173 if( selection.HasReferencePoint() )
174 {
176
177 // Drag items to the current cursor position
178 for( DS_DATA_ITEM* item : unique_peers )
179 moveItem( item, delta );
180
181 selection.SetReferencePoint( m_cursor );
182 }
183 else if( selection.Size() == 1 )
184 {
185 // Set the current cursor position to the first dragged item origin,
186 // so the movement vector can be computed later
187 updateModificationPoint( selection );
188 m_cursor = originalCursorPos;
189 }
190 else
191 {
192 updateModificationPoint( selection );
193 }
194
195 controls->SetCursorPosition( m_cursor, false );
196
197 prevPos = m_cursor;
198 controls->SetAutoPan( true );
199 m_moveInProgress = true;
200 }
201
202 //------------------------------------------------------------------------
203 // Follow the mouse
204 //
205 m_cursor = controls->GetCursorPosition();
206 VECTOR2I delta( m_cursor - prevPos );
207 selection.SetReferencePoint( m_cursor );
208
210 prevPos = m_cursor;
211
212 for( DS_DATA_ITEM* item : unique_peers )
213 moveItem( item, delta );
214
216 }
217 //------------------------------------------------------------------------
218 // Handle cancel
219 //
220 else if( evt->IsCancelInteractive() || evt->IsActivate() )
221 {
222 if( evt->IsCancelInteractive() )
223 m_frame->GetInfoBar()->Dismiss();
224
225 if( m_moveInProgress )
226 {
227 if( evt->IsActivate() )
228 {
229 // Allowing other tools to activate during a move runs the risk of race
230 // conditions in which we try to spool up both event loops at once.
231
232 m_frame->ShowInfoBarMsg( _( "Press <ESC> to cancel move." ) );
233
234 evt->SetPassEvent( false );
235 continue;
236 }
237
238 evt->SetPassEvent( false );
239 restore_state = true;
240 }
241
242 break;
243 }
244 //------------------------------------------------------------------------
245 // Handle TOOL_ACTION special cases
246 //
247 else if( evt->Action() == TA_UNDO_REDO_PRE )
248 {
249 unselect = true;
250 break;
251 }
252 else if( evt->IsAction( &ACTIONS::doDelete ) )
253 {
254 evt->SetPassEvent();
255 // Exit on a delete; there will no longer be anything to drag.
256 break;
257 }
258 else if( evt->IsAction( &ACTIONS::duplicate ) )
259 {
260 if( selection.Front()->IsNew() )
261 {
262 // This doesn't really make sense; we'll just end up dragging a stack of
263 // objects so we ignore the duplicate and just carry on.
264 continue;
265 }
266
267 // Move original back and exit. The duplicate will run in its own loop.
268 restore_state = true;
269 unselect = false;
270 chain_commands = true;
271 break;
272 }
273 //------------------------------------------------------------------------
274 // Handle context menu
275 //
276 else if( evt->IsClick( BUT_RIGHT ) )
277 {
278 m_menu->ShowContextMenu( m_selectionTool->GetSelection() );
279 }
280 //------------------------------------------------------------------------
281 // Handle drop
282 //
283 else if( evt->IsMouseUp( BUT_LEFT ) || evt->IsClick( BUT_LEFT ) )
284 {
285 break; // Finish
286 }
287 else
288 {
289 evt->SetPassEvent();
290 }
291
292 controls->SetAutoPan( m_moveInProgress );
293
294 } while( ( evt = Wait() ) ); //Should be assignment not equality test
295
296 controls->ForceCursorPosition( false );
297 controls->ShowCursor( false );
298 controls->SetAutoPan( false );
299
300 if( !chain_commands )
301 m_moveOffset = { 0, 0 };
302
303 selection.ClearReferencePoint();
304
305 for( EDA_ITEM* item : selection )
306 item->ClearEditFlags();
307
308 if( restore_state )
309 m_frame->RollbackFromUndo();
310 else
311 m_frame->OnModify();
312
313 if( unselect )
315 else
316 m_toolMgr->PostEvent( EVENTS::SelectedEvent );
317
318 m_moveInProgress = false;
319 return 0;
320}
321
322
323void PL_EDIT_TOOL::moveItem( DS_DATA_ITEM* aItem, const VECTOR2I& aDelta )
324{
325 aItem->MoveToIU( aItem->GetStartPosIU() + aDelta );
326
327 for( DS_DRAW_ITEM_BASE* item : aItem->GetDrawItems() )
328 {
329 getView()->Update( item );
330 item->SetFlags( IS_MOVING );
331 }
332}
333
334
336{
337 if( m_moveInProgress && aSelection.HasReferencePoint() )
338 return false;
339
340 // When there is only one item selected, the reference point is its position...
341 if( aSelection.Size() == 1 )
342 {
343 aSelection.SetReferencePoint( aSelection.Front()->GetPosition() );
344 }
345 // ...otherwise modify items with regard to the grid-snapped cursor position
346 else
347 {
349 aSelection.SetReferencePoint( m_cursor );
350 }
351
352 return true;
353}
354
355
357{
359
360 wxCommandEvent evt( wxEVT_NULL, ID_APPEND_DESCR_FILE );
361 m_frame->Files_io( evt );
362
363 return 0;
364}
365
366
368{
369 PL_SELECTION& selection = m_selectionTool->RequestSelection();
370
371 if( selection.Size() == 0 )
372 return 0;
373
374
375 // Do not delete an item if it is currently a new item being created to avoid a crash
376 // In this case the selection contains only one item.
377 DS_DRAW_ITEM_BASE* currItem = static_cast<DS_DRAW_ITEM_BASE*>( selection.Front() );
378
379 if( currItem->GetFlags() & ( IS_NEW ) )
380 return 0;
381
382 m_frame->SaveCopyInUndoList();
383
384 while( selection.Front() )
385 {
386 DS_DRAW_ITEM_BASE* drawItem = static_cast<DS_DRAW_ITEM_BASE*>( selection.Front() );
387 DS_DATA_ITEM* dataItem = drawItem->GetPeer();
389
390 for( DS_DRAW_ITEM_BASE* item : dataItem->GetDrawItems() )
391 {
392 // Note: repeat items won't be selected but must be removed & deleted
393
394 if( item->IsSelected() )
395 m_selectionTool->RemoveItemFromSel( item );
396
397 getView()->Remove( item );
398 }
399
400 delete dataItem;
401 }
402
403 m_frame->OnModify();
404
405 return 0;
406}
407
408
409#define HITTEST_THRESHOLD_PIXELS 5
410
411
413{
414 PICKER_TOOL* picker = m_toolMgr->GetTool<PICKER_TOOL>();
415
416 // Deactivate other tools; particularly important if another PICKER is currently running
417 Activate();
418
419 picker->SetCursor( KICURSOR::REMOVE );
420 m_pickerItem = nullptr;
421
422 picker->SetClickHandler(
423 [this] ( const VECTOR2D& aPosition ) -> bool
424 {
425 if( m_pickerItem )
426 {
427 PL_SELECTION_TOOL* selectionTool = m_toolMgr->GetTool<PL_SELECTION_TOOL>();
428 selectionTool->UnbrightenItem( m_pickerItem );
429 selectionTool->AddItemToSel( m_pickerItem, true /*quiet mode*/ );
430 m_toolMgr->RunAction( ACTIONS::doDelete );
431 m_pickerItem = nullptr;
432 }
433
434 return true;
435 } );
436
437 picker->SetMotionHandler(
438 [this] ( const VECTOR2D& aPos )
439 {
440 int threshold = KiROUND( getView()->ToWorld( HITTEST_THRESHOLD_PIXELS ) );
441 EDA_ITEM* item = nullptr;
442
443 for( DS_DATA_ITEM* dataItem : DS_DATA_MODEL::GetTheInstance().GetItems() )
444 {
445 for( DS_DRAW_ITEM_BASE* drawItem : dataItem->GetDrawItems() )
446 {
447 if( drawItem->HitTest( aPos, threshold ) )
448 {
449 item = drawItem;
450 break;
451 }
452 }
453 }
454
455 if( m_pickerItem != item )
456 {
457 PL_SELECTION_TOOL* selectionTool = m_toolMgr->GetTool<PL_SELECTION_TOOL>();
458
459 if( m_pickerItem )
460 selectionTool->UnbrightenItem( m_pickerItem );
461
462 m_pickerItem = item;
463
464 if( m_pickerItem )
465 selectionTool->BrightenItem( m_pickerItem );
466 }
467 } );
468
469 picker->SetFinalizeHandler(
470 [this] ( const int& aFinalState )
471 {
472 if( m_pickerItem )
473 m_toolMgr->GetTool<PL_SELECTION_TOOL>()->UnbrightenItem( m_pickerItem );
474
475 // Wake the selection tool after exiting to ensure the cursor gets updated
477 } );
478
479 m_toolMgr->RunAction( ACTIONS::pickerTool, &aEvent );
480
481 return 0;
482}
483
484
485int PL_EDIT_TOOL::Undo( const TOOL_EVENT& aEvent )
486{
487 m_frame->GetLayoutFromUndoList();
488 return 0;
489}
490
491
492int PL_EDIT_TOOL::Redo( const TOOL_EVENT& aEvent )
493{
494 m_frame->GetLayoutFromRedoList();
495 return 0;
496}
497
498
499int PL_EDIT_TOOL::Cut( const TOOL_EVENT& aEvent )
500{
501 int retVal = Copy( aEvent );
502
503 if( retVal == 0 )
504 retVal = DoDelete( aEvent );
505
506 return retVal;
507}
508
509
510int PL_EDIT_TOOL::Copy( const TOOL_EVENT& aEvent )
511{
512 PL_SELECTION& selection = m_selectionTool->RequestSelection();
513 std::vector<DS_DATA_ITEM*> items;
515 wxString sexpr;
516
517 if( selection.GetSize() == 0 )
518 return 0;
519
520 // A repeated data item generates one draw item per repeat, but must be copied only once.
521 for( EDA_ITEM* item : selection.GetItems() )
522 {
523 DS_DATA_ITEM* peer = static_cast<DS_DRAW_ITEM_BASE*>( item )->GetPeer();
524
525 if( !alg::contains( items, peer ) )
526 items.push_back( peer );
527 }
528
529 try
530 {
531 model.SaveInString( items, &sexpr );
532 }
533 catch( const IO_ERROR& ioe )
534 {
535 wxMessageBox( ioe.What(), _( "Error writing objects to clipboard" ) );
536 }
537
538 if( SaveClipboard( TO_UTF8( sexpr ) ) )
539 return 0;
540 else
541 return -1;
542}
543
544
545int PL_EDIT_TOOL::Paste( const TOOL_EVENT& aEvent )
546{
547 PL_SELECTION& selection = m_selectionTool->GetSelection();
549
550 if( std::unique_ptr<wxBitmap> clipImg = GetImageFromClipboard() )
551 {
552 auto image = std::make_unique<BITMAP_BASE>();
553 image->SetImage( clipImg->ConvertToImage() );
554 auto dataItem = std::make_unique<DS_DATA_ITEM_BITMAP>( image.release() );
555 model.Append( dataItem.release() );
556 }
557 else
558 {
559 m_selectionTool->ClearSelection();
560
561 const std::string clipText = GetClipboardUTF8();
562 model.SetPageLayout( clipText.c_str(), true, wxT( "clipboard" ) );
563 }
564
565 // Build out draw items and select the first of each data item
566 for( DS_DATA_ITEM* dataItem : model.GetItems() )
567 {
568 if( dataItem->GetDrawItems().empty() )
569 {
570 m_frame->SyncDataItem( dataItem );
571 dataItem->GetDrawItems().front()->SetSelected();
572 }
573 }
574
575 m_selectionTool->RebuildSelection();
576
577 if( !selection.Empty() )
578 {
579 selection.SetReferencePoint( selection.GetTopLeftItem()->GetPosition() );
580 m_toolMgr->PostAction( PL_ACTIONS::move );
581 }
582
583 return 0;
584}
585
586
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
Definition box2.h:995
static TOOL_ACTION paste
Definition actions.h:76
static TOOL_ACTION cancelInteractive
Definition actions.h:68
static TOOL_ACTION copy
Definition actions.h:74
static TOOL_ACTION pickerTool
Definition actions.h:249
static TOOL_ACTION undo
Definition actions.h:71
static TOOL_ACTION selectionActivate
Activation of the selection tool.
Definition actions.h:210
static TOOL_ACTION duplicate
Definition actions.h:80
static TOOL_ACTION doDelete
Definition actions.h:81
static TOOL_ACTION redo
Definition actions.h:72
static TOOL_ACTION deleteTool
Definition actions.h:82
static TOOL_ACTION selectionClear
Clear the current selection.
Definition actions.h:220
static TOOL_ACTION cut
Definition actions.h:73
static TOOL_ACTION refreshPreview
Definition actions.h:155
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.
Drawing sheet structure type definitions.
void MoveToIU(const VECTOR2I &aPosition)
Move item to a new position.
const VECTOR2I GetStartPosIU(int ii=0) const
const std::vector< DS_DRAW_ITEM_BASE * > & GetDrawItems() const
Handle the graphic items list to draw/plot the frame and title block.
static DS_DATA_MODEL & GetTheInstance()
Return the instance of DS_DATA_MODEL used in the application.
void Remove(DS_DATA_ITEM *aItem)
Base class to handle basic graphic items.
DS_DATA_ITEM * GetPeer() const
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:98
virtual VECTOR2I GetPosition() const
Definition eda_item.h:348
EDA_ITEM_FLAGS GetFlags() const
Definition eda_item.h:167
bool IsNew() const
Definition eda_item.h:131
static const TOOL_EVENT SelectedEvent
Definition actions.h:343
static const TOOL_EVENT SelectedItemsMoved
Used to inform tools that the selection should temporarily be non-editable.
Definition actions.h:353
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual const wxString What() const
A composite of Problem() and Where()
An interface for classes handling user events controlling the view behavior such as zooming,...
virtual void ForceCursorPosition(bool aEnabled, const VECTOR2D &aPosition=VECTOR2D(0, 0))
Place the cursor immediately at a given point.
virtual void ShowCursor(bool aEnabled)
Enable or disables display of cursor.
VECTOR2D GetCursorPosition() const
Return the current cursor position in world coordinates.
virtual void SetCursorPosition(const VECTOR2D &aPosition, bool aWarpView=true, bool aTriggeredByArrows=false, long aArrowCommand=0)=0
Move cursor to the requested position expressed in world coordinates.
virtual void SetAutoPan(bool aEnabled)
Turn on/off auto panning (this feature is used when there is a tool active (eg.
virtual void Remove(VIEW_ITEM *aItem)
Remove a VIEW_ITEM from the view.
Definition view.cpp:416
virtual void Update(const VIEW_ITEM *aItem, int aUpdateFlags) const
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
Definition view.cpp:1852
void SetMotionHandler(MOTION_HANDLER aHandler)
Set a handler for mouse motion.
Definition picker_tool.h:92
void SetClickHandler(CLICK_HANDLER aHandler)
Set a handler for mouse click event.
Definition picker_tool.h:81
void SetCursor(KICURSOR aCursor)
Definition picker_tool.h:63
void SetFinalizeHandler(FINALIZE_HANDLER aHandler)
Set a handler for the finalize event.
static TOOL_ACTION appendImportedDrawingSheet
Definition pl_actions.h:40
static TOOL_ACTION move
Definition pl_actions.h:43
bool Init() override
Init() is called once upon a registration of the tool.
int Redo(const TOOL_EVENT &aEvent)
int DoDelete(const TOOL_EVENT &aEvent)
Delete the selected items, or the item under the cursor.
int ImportDrawingSheetContent(const TOOL_EVENT &aEvent)
bool m_moveInProgress
Used for chaining commands.
int Main(const TOOL_EVENT &aEvent)
The "move" event loop.
int Cut(const TOOL_EVENT &aEvent)
bool updateModificationPoint(PL_SELECTION &aSelection)
Set up handlers for various events.
PL_SELECTION_TOOL * m_selectionTool
Flag determining if anything is being dragged right now.
void moveItem(DS_DATA_ITEM *aItem, const VECTOR2I &aDelta)
Return the right modification point (e.g.
int InteractiveDelete(const TOOL_EVENT &aEvent)
VECTOR2I m_moveOffset
Last cursor position (needed for getModificationPoint() to avoid changes of edit reference point).
VECTOR2I m_cursor
void Reset(RESET_REASON aReason) override
Bring the tool to a known, initial state.
int Paste(const TOOL_EVENT &aEvent)
void setTransitions() override
This method is meant to be overridden in order to specify handlers for events.
EDA_ITEM * m_pickerItem
int Undo(const TOOL_EVENT &aEvent)
PL_EDITOR_FRAME * m_frame
int Copy(const TOOL_EVENT &aEvent)
EDA_ITEM * GetTopLeftItem(bool onlyModules=false) const override
static bool NotEmpty(const SELECTION &aSelection)
Test if there are any items selected.
static bool ShowAlways(const SELECTION &aSelection)
The default condition function (always returns true).
void BrightenItem(EDA_ITEM *aItem)
int AddItemToSel(const TOOL_EVENT &aEvent)
void UnbrightenItem(EDA_ITEM *aItem)
const std::deque< EDA_ITEM * > GetItems() const
Definition selection.h:125
VECTOR2I GetReferencePoint() const
bool IsHover() const
Definition selection.h:85
virtual unsigned int GetSize() const override
Return the number of stored items.
Definition selection.h:104
EDA_ITEM * Front() const
Definition selection.h:176
int Size() const
Returns the number of selected parts.
Definition selection.h:120
void ClearReferencePoint()
void SetReferencePoint(const VECTOR2I &aP)
bool Empty() const
Checks if there is anything selected.
Definition selection.h:114
bool HasReferencePoint() const
Definition selection.h:215
T * getEditFrame() const
Return the application window object, casted to requested user type.
Definition tool_base.h:182
KIGFX::VIEW_CONTROLS * getViewControls() const
Return the instance of VIEW_CONTROLS object used in the application.
Definition tool_base.cpp:40
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:34
RESET_REASON
Determine the reason of reset for a tool.
Definition tool_base.h:74
@ MODEL_RELOAD
Model changes (the sheet for a schematic)
Definition tool_base.h:76
Generic, UI-independent tool event.
Definition tool_event.h:167
bool IsCancelInteractive() const
Indicate the event should restart/end an ongoing interactive tool's event loop (eg esc key,...
TOOL_ACTIONS Action() const
Returns more specific information about the type of an event.
Definition tool_event.h:246
bool IsActivate() const
Definition tool_event.h:341
bool IsClick(int aButtonMask=BUT_ANY) const
bool IsDrag(int aButtonMask=BUT_ANY) const
Definition tool_event.h:311
bool IsAction(const TOOL_ACTION *aAction) const
Test if the event contains an action issued upon activation of the given TOOL_ACTION.
void SetPassEvent(bool aPass=true)
Definition tool_event.h:252
bool IsMouseUp(int aButtonMask=BUT_ANY) const
Definition tool_event.h:321
bool IsMotion() const
Definition tool_event.h:326
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_INTERACTIVE(TOOL_ID aId, const std::string &aName)
Create a tool with given id & name.
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.
std::unique_ptr< wxBitmap > GetImageFromClipboard()
Get image data from the clipboard, if there is any.
bool SaveClipboard(const std::string &aTextUTF8)
Store information to the system clipboard.
Definition clipboard.cpp:32
std::string GetClipboardUTF8()
Return the information currently stored in the system clipboard.
This file is part of the common library.
@ REMOVE
Definition cursors.h:50
@ MOVING
Definition cursors.h:44
#define _(s)
#define IS_NEW
New item, just created.
#define IS_MOVING
Item being moved.
This file contains miscellaneous commonly used macros and functions.
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
Definition kicad_algo.h:96
@ ID_APPEND_DESCR_FILE
#define HITTEST_THRESHOLD_PIXELS
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
KIBIS_MODEL * model
int delta
@ TA_UNDO_REDO_PRE
This event is sent before undo/redo command is performed.
Definition tool_event.h:102
@ BUT_LEFT
Definition tool_event.h:128
@ BUT_RIGHT
Definition tool_event.h:129
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683
VECTOR2< double > VECTOR2D
Definition vector2d.h:682