/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2019 KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, you may find one here: * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * or you may search the http://www.gnu.org website for the version 2 license, * or you may write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // Drawing tool actions TOOL_ACTION EE_ACTIONS::placeSymbolPin( "libedit.InteractiveDrawing.placeSymbolPin", AS_GLOBAL, 'P', LEGACY_HK_NAME( "Create Pin" ), _( "Add Pin" ), _( "Add a pin" ), pin_xpm, AF_ACTIVATE ); TOOL_ACTION EE_ACTIONS::placeSymbolText( "libedit.InteractiveDrawing.placeSymbolText", AS_GLOBAL, 0, "", _( "Add Text" ), _( "Add a text item" ), text_xpm, AF_ACTIVATE ); TOOL_ACTION EE_ACTIONS::drawSymbolRectangle( "libedit.InteractiveDrawing.drawSymbolRectangle", AS_GLOBAL, 0, "", _( "Add Rectangle" ), _( "Add a rectangle" ), add_rectangle_xpm, AF_ACTIVATE ); TOOL_ACTION EE_ACTIONS::drawSymbolCircle( "libedit.InteractiveDrawing.drawSymbolCircle", AS_GLOBAL, 0, "", _( "Add Circle" ), _( "Add a circle" ), add_circle_xpm, AF_ACTIVATE ); TOOL_ACTION EE_ACTIONS::drawSymbolArc( "libedit.InteractiveDrawing.drawSymbolArc", AS_GLOBAL, 0, "", _( "Add Arc" ), _( "Add an arc" ), add_arc_xpm, AF_ACTIVATE ); TOOL_ACTION EE_ACTIONS::drawSymbolLines( "libedit.InteractiveDrawing.drawSymbolLines", AS_GLOBAL, 0, "", _( "Add Lines" ), _( "Add connected graphic lines" ), add_graphical_segments_xpm, AF_ACTIVATE ); TOOL_ACTION EE_ACTIONS::placeSymbolAnchor( "libedit.InteractiveDrawing.placeSymbolAnchor", AS_GLOBAL, 0, "", _( "Move Symbol Anchor" ), _( "Specify a new location for the symbol anchor" ), anchor_xpm, AF_ACTIVATE ); TOOL_ACTION EE_ACTIONS::finishDrawing( "libedit.InteractiveDrawing.finishDrawing", AS_GLOBAL, 0, "", _( "Finish Drawing" ), _( "Finish drawing shape" ), checked_ok_xpm, AF_NONE ); static void* g_lastPinWeakPtr; LIB_DRAWING_TOOLS::LIB_DRAWING_TOOLS() : EE_TOOL_BASE( "libedit.InteractiveDrawing" ) { } LIB_DRAWING_TOOLS::~LIB_DRAWING_TOOLS() { } bool LIB_DRAWING_TOOLS::Init() { EE_TOOL_BASE::Init(); auto isDrawingCondition = [] ( const SELECTION& aSel ) { LIB_ITEM* item = (LIB_ITEM*) aSel.Front(); return item && item->IsNew(); }; m_menu.GetMenu().AddItem( EE_ACTIONS::finishDrawing, isDrawingCondition, 2 ); return true; } int LIB_DRAWING_TOOLS::PlacePin( const TOOL_EVENT& aEvent ) { m_frame->SetToolID( ID_SYMBOL_PIN_TOOL, wxCURSOR_PENCIL, _( "Add pin" ) ); return doTwoClickPlace( LIB_PIN_T ); } int LIB_DRAWING_TOOLS::PlaceText( const TOOL_EVENT& aEvent ) { m_frame->SetToolID( ID_SYMBOL_TEXT_TOOL, wxCURSOR_PENCIL, _( "Add text" ) ); return doTwoClickPlace( LIB_TEXT_T ); } int LIB_DRAWING_TOOLS::doTwoClickPlace( KICAD_T aType ) { LIB_PIN_TOOL* pinTool = aType == LIB_PIN_T ? m_toolMgr->GetTool() : nullptr; VECTOR2I cursorPos; EDA_ITEM* item = nullptr; m_toolMgr->RunAction( EE_ACTIONS::clearSelection, true ); getViewControls()->ShowCursor( true ); Activate(); // Main loop: keep receiving events while( OPT_TOOL_EVENT evt = Wait() ) { cursorPos = getViewControls()->GetCursorPosition( !evt->Modifier( MD_ALT ) ); if( TOOL_EVT_UTILS::IsCancelInteractive( evt.get() ) ) { if( item ) { m_toolMgr->RunAction( EE_ACTIONS::clearSelection, true ); m_view->ClearPreview(); delete item; item = nullptr; if( !evt->IsActivate() ) continue; } break; } else if( evt->IsClick( BUT_LEFT ) ) { LIB_PART* part = m_frame->GetCurPart(); if( !part ) continue; // First click creates... if( !item ) { m_toolMgr->RunAction( EE_ACTIONS::clearSelection, true ); switch( aType ) { case LIB_PIN_T: { item = pinTool->CreatePin( wxPoint( cursorPos.x, -cursorPos.y), part ); g_lastPinWeakPtr = item; break; } case LIB_TEXT_T: { LIB_TEXT* text = new LIB_TEXT( part ); text->SetPosition( wxPoint( cursorPos.x, -cursorPos.y) ); text->SetTextSize( wxSize( m_frame->g_LastTextSize, m_frame->g_LastTextSize ) ); text->SetTextAngle( m_frame->g_LastTextAngle ); DIALOG_LIB_EDIT_TEXT dlg( m_frame, text ); if( dlg.ShowModal() != wxID_OK ) delete text; else item = text; break; } default: wxFAIL_MSG( "doTwoClickPlace(): unknown type" ); } // Restore cursor after dialog getViewControls()->WarpCursor( m_frame->GetCrossHairPosition(), true ); if( item ) { item->SetFlags( IS_NEW | IS_MOVED ); m_view->ClearPreview(); m_view->AddToPreview( item->Clone() ); m_selectionTool->AddItemToSel( item ); } getViewControls()->SetCursorPosition( cursorPos, false ); } // ... and second click places: else { m_frame->SaveCopyInUndoList( part ); switch( item->Type() ) { case LIB_PIN_T: pinTool->PlacePin( (LIB_PIN*) item ); break; case LIB_TEXT_T: part->AddDrawItem( (LIB_TEXT*) item ); item->ClearEditFlags(); break; default: wxFAIL_MSG( "doTwoClickPlace(): unknown type" ); } item = nullptr; m_view->ClearPreview(); m_frame->RebuildView(); m_frame->OnModify(); } } else if( evt->IsClick( BUT_RIGHT ) ) { // Warp after context menu only if dragging... if( !item ) m_toolMgr->VetoContextMenuMouseWarp(); m_menu.ShowContextMenu( m_selectionTool->GetSelection() ); } else if( item && ( evt->IsAction( &EE_ACTIONS::refreshPreview ) || evt->IsMotion() ) ) { static_cast( item )->SetPosition( wxPoint( cursorPos.x, -cursorPos.y) ); m_view->ClearPreview(); m_view->AddToPreview( item->Clone() ); } // Enable autopanning and cursor capture only when there is an item to be placed getViewControls()->SetAutoPan( !!item ); getViewControls()->CaptureCursor( !!item ); } m_frame->SetNoToolSelected(); return 0; } int LIB_DRAWING_TOOLS::DrawShape( const TOOL_EVENT& aEvent ) { // We might be running as the same shape in another co-routine. Make sure that one // gets whacked. m_toolMgr->DeactivateTool(); if( aEvent.IsAction( &EE_ACTIONS::drawSymbolArc ) ) m_frame->SetToolID( ID_SYMBOL_ARC_TOOL, wxCURSOR_PENCIL, _( "Draw Arc" ) ); else if( aEvent.IsAction( &EE_ACTIONS::drawSymbolCircle ) ) m_frame->SetToolID( ID_SYMBOL_CIRCLE_TOOL, wxCURSOR_PENCIL, _( "Draw Circle" ) ); else if( aEvent.IsAction( &EE_ACTIONS::drawSymbolLines ) ) m_frame->SetToolID( ID_SYMBOL_LINE_TOOL, wxCURSOR_PENCIL, _( "Draw Lines" ) ); else if( aEvent.IsAction( &EE_ACTIONS::drawSymbolRectangle ) ) m_frame->SetToolID( ID_SYMBOL_RECT_TOOL, wxCURSOR_PENCIL, _( "Draw Rectangle" ) ); else wxCHECK_MSG( false, 0, "Unknown action in LIB_DRAWING_TOOLS::DrawShape()" ); m_toolMgr->RunAction( EE_ACTIONS::clearSelection, true ); getViewControls()->ShowCursor( true ); Activate(); LIB_PART* part = m_frame->GetCurPart(); LIB_ITEM* item = nullptr; // Main loop: keep receiving events while( auto evt = Wait() ) { VECTOR2I cursorPos = getViewControls()->GetCursorPosition( !evt->Modifier( MD_ALT ) ); if( TOOL_EVT_UTILS::IsCancelInteractive( evt.get() ) ) { m_toolMgr->RunAction( EE_ACTIONS::clearSelection, true ); m_view->ClearPreview(); if( item ) { delete item; item = nullptr; if( !evt->IsActivate() ) continue; } break; } else if( evt->IsClick( BUT_LEFT ) && !item ) { if( !part ) continue; m_toolMgr->RunAction( EE_ACTIONS::clearSelection, true ); switch( m_frame->GetToolId() ) { case ID_SYMBOL_ARC_TOOL: item = new LIB_ARC( part ); break; case ID_SYMBOL_CIRCLE_TOOL: item = new LIB_CIRCLE( part ); break; case ID_SYMBOL_LINE_TOOL: item = new LIB_POLYLINE( part ); break; case ID_SYMBOL_RECT_TOOL: item = new LIB_RECTANGLE( part ); break; } item->SetWidth( LIB_EDIT_FRAME::g_LastLineWidth ); item->SetFillMode( LIB_EDIT_FRAME::g_LastFillStyle ); item->SetFlags( IS_NEW ); item->BeginEdit( wxPoint( cursorPos.x, -cursorPos.y ) ); if( m_frame->m_DrawSpecificUnit ) item->SetUnit( m_frame->GetUnit() ); if( m_frame->m_DrawSpecificConvert ) item->SetConvert( m_frame->GetConvert() ); m_selectionTool->AddItemToSel( item ); } else if( item && ( evt->IsClick( BUT_LEFT ) || evt->IsDblClick( BUT_LEFT ) || evt->IsAction( &EE_ACTIONS::finishDrawing ) ) ) { if( evt->IsDblClick( BUT_LEFT ) || evt->IsAction( &EE_ACTIONS::finishDrawing ) || !item->ContinueEdit( wxPoint( cursorPos.x, -cursorPos.y ) ) ) { item->EndEdit(); item->ClearEditFlags(); m_view->ClearPreview(); m_frame->SaveCopyInUndoList( part ); part->AddDrawItem( item ); item = nullptr; m_frame->RebuildView(); m_frame->OnModify(); } } else if( item && ( evt->IsAction( &EE_ACTIONS::refreshPreview ) || evt->IsMotion() ) ) { item->CalcEdit( wxPoint( cursorPos.x, -cursorPos.y) ); m_view->ClearPreview(); m_view->AddToPreview( item->Clone() ); } else if( evt->IsDblClick( BUT_LEFT ) && !item ) { m_toolMgr->RunAction( EE_ACTIONS::properties, true ); } else if( evt->IsClick( BUT_RIGHT ) ) { // Warp after context menu only if dragging... if( !item ) m_toolMgr->VetoContextMenuMouseWarp(); m_menu.ShowContextMenu( m_selectionTool->GetSelection() ); } // Enable autopanning and cursor capture only when there is a shape being drawn getViewControls()->SetAutoPan( !!item ); getViewControls()->CaptureCursor( !!item ); } m_frame->SetNoToolSelected(); return 0; } int LIB_DRAWING_TOOLS::PlaceAnchor( const TOOL_EVENT& aEvent ) { m_frame->SetToolID( ID_SYMBOL_ANCHOR_TOOL, wxCURSOR_PENCIL, _( "Move symbol anchor" ) ); getViewControls()->ShowCursor( true ); getViewControls()->SetSnapping( true ); Activate(); // Main loop: keep receiving events while( OPT_TOOL_EVENT evt = Wait() ) { if( TOOL_EVT_UTILS::IsCancelInteractive( evt.get() ) ) { break; } else if( evt->IsClick( BUT_LEFT ) ) { LIB_PART* part = m_frame->GetCurPart(); if( !part ) continue; VECTOR2I cursorPos = getViewControls()->GetCursorPosition( !evt->Modifier( MD_ALT ) ); wxPoint offset( -cursorPos.x, cursorPos.y ); part->SetOffset( offset ); // Refresh the view without changing the viewport auto center = m_view->GetCenter(); center.x += offset.x; center.y -= offset.y; m_view->SetCenter( center ); m_view->RecacheAllItems(); m_frame->OnModify(); } else if( evt->IsClick( BUT_RIGHT ) ) { m_menu.ShowContextMenu( m_selectionTool->GetSelection() ); } } m_frame->SetNoToolSelected(); return 0; } int LIB_DRAWING_TOOLS::RepeatDrawItem( const TOOL_EVENT& aEvent ) { LIB_PIN_TOOL* pinTool = m_toolMgr->GetTool(); LIB_PART* part = m_frame->GetCurPart(); LIB_PIN* sourcePin = nullptr; if( !part ) return 0; // See if we have a pin matching our weak ptr for( LIB_PIN* test = part->GetNextPin(); test; test = part->GetNextPin( test ) ) { if( (void*) test == g_lastPinWeakPtr ) sourcePin = test; } if( sourcePin ) { LIB_PIN* pin = pinTool->RepeatPin( sourcePin ); g_lastPinWeakPtr = pin; m_toolMgr->RunAction( EE_ACTIONS::clearSelection, true ); if( pin ) m_toolMgr->RunAction( EE_ACTIONS::addItemToSel, true, pin ); } return 0; } void LIB_DRAWING_TOOLS::setTransitions() { Go( &LIB_DRAWING_TOOLS::PlacePin, EE_ACTIONS::placeSymbolPin.MakeEvent() ); Go( &LIB_DRAWING_TOOLS::PlaceText, EE_ACTIONS::placeSymbolText.MakeEvent() ); Go( &LIB_DRAWING_TOOLS::DrawShape, EE_ACTIONS::drawSymbolRectangle.MakeEvent() ); Go( &LIB_DRAWING_TOOLS::DrawShape, EE_ACTIONS::drawSymbolCircle.MakeEvent() ); Go( &LIB_DRAWING_TOOLS::DrawShape, EE_ACTIONS::drawSymbolArc.MakeEvent() ); Go( &LIB_DRAWING_TOOLS::DrawShape, EE_ACTIONS::drawSymbolLines.MakeEvent() ); Go( &LIB_DRAWING_TOOLS::PlaceAnchor, EE_ACTIONS::placeSymbolAnchor.MakeEvent() ); Go( &LIB_DRAWING_TOOLS::RepeatDrawItem, EE_ACTIONS::repeatDrawItem.MakeEvent() ); }