diff --git a/pcbnew/tools/pcb_actions.h b/pcbnew/tools/pcb_actions.h index e33481043e..f9fde54202 100644 --- a/pcbnew/tools/pcb_actions.h +++ b/pcbnew/tools/pcb_actions.h @@ -385,6 +385,7 @@ public: static TOOL_ACTION switchCursor; static TOOL_ACTION switchUnits; static TOOL_ACTION deleteItemCursor; + static TOOL_ACTION clearHighlight; static TOOL_ACTION highlightNet; static TOOL_ACTION highlightNetCursor; static TOOL_ACTION highlightNetSelection; diff --git a/pcbnew/tools/pcb_editor_control.cpp b/pcbnew/tools/pcb_editor_control.cpp index 3c762e7ad0..37441d1926 100644 --- a/pcbnew/tools/pcb_editor_control.cpp +++ b/pcbnew/tools/pcb_editor_control.cpp @@ -96,7 +96,6 @@ TOOL_ACTION PCB_ACTIONS::zoneDuplicate( "pcbnew.EditorControl.zoneDuplicate", _( "Duplicate Zone onto Layer..." ), _( "Duplicate zone outline onto a different layer" ), zone_duplicate_xpm ); - TOOL_ACTION PCB_ACTIONS::placeTarget( "pcbnew.EditorControl.placeTarget", AS_GLOBAL, 0, _( "Add Layer Alignment Target" ), _( "Add a layer alignment target" ), NULL, AF_ACTIVATE ); @@ -133,6 +132,10 @@ TOOL_ACTION PCB_ACTIONS::highlightNet( "pcbnew.EditorControl.highlightNet", AS_GLOBAL, 0, "", "" ); +TOOL_ACTION PCB_ACTIONS::clearHighlight( "pcbnew.EditorControl.clearHighlight", + AS_GLOBAL, 0, + "", "" ); + TOOL_ACTION PCB_ACTIONS::highlightNetCursor( "pcbnew.EditorControl.highlightNetCursor", AS_GLOBAL, 0, "", "" ); @@ -1019,6 +1022,21 @@ int PCB_EDITOR_CONTROL::HighlightNet( const TOOL_EVENT& aEvent ) } +int PCB_EDITOR_CONTROL::ClearHighlight( const TOOL_EVENT& aEvent ) +{ + auto frame = static_cast( m_toolMgr->GetEditFrame() ); + auto board = static_cast( m_toolMgr->GetModel() ); + KIGFX::RENDER_SETTINGS* render = m_toolMgr->GetView()->GetPainter()->GetSettings(); + + board->ResetHighLight(); + render->SetHighlight( false ); + m_toolMgr->GetView()->UpdateAllLayersColor(); + frame->SetMsgPanel( board ); + frame->SendCrossProbeNetName( "" ); + return 0; +} + + int PCB_EDITOR_CONTROL::HighlightNetCursor( const TOOL_EVENT& aEvent ) { // If the keyboard hotkey was triggered, the behavior is as follows: @@ -1198,6 +1216,7 @@ void PCB_EDITOR_CONTROL::setTransitions() Go( &PCB_EDITOR_CONTROL::CrossProbeSchToPcb, PCB_ACTIONS::crossProbeSchToPcb.MakeEvent() ); Go( &PCB_EDITOR_CONTROL::DrillOrigin, PCB_ACTIONS::drillOrigin.MakeEvent() ); Go( &PCB_EDITOR_CONTROL::HighlightNet, PCB_ACTIONS::highlightNet.MakeEvent() ); + Go( &PCB_EDITOR_CONTROL::ClearHighlight, PCB_ACTIONS::clearHighlight.MakeEvent() ); Go( &PCB_EDITOR_CONTROL::HighlightNetCursor, PCB_ACTIONS::highlightNetCursor.MakeEvent() ); Go( &PCB_EDITOR_CONTROL::HighlightNetCursor, PCB_ACTIONS::highlightNetSelection.MakeEvent() ); Go( &PCB_EDITOR_CONTROL::ShowLocalRatsnest, PCB_ACTIONS::showLocalRatsnest.MakeEvent() ); diff --git a/pcbnew/tools/pcb_editor_control.h b/pcbnew/tools/pcb_editor_control.h index 91fb25b05d..f93261957f 100644 --- a/pcbnew/tools/pcb_editor_control.h +++ b/pcbnew/tools/pcb_editor_control.h @@ -104,6 +104,9 @@ public: ///> Highlights net belonging to the item under the cursor. int HighlightNet( const TOOL_EVENT& aEvent ); + ///> Clears all board highlights + int ClearHighlight( const TOOL_EVENT& aEvent ); + ///> Launches a tool to pick the item whose net is going to be highlighted. int HighlightNetCursor( const TOOL_EVENT& aEvent ); diff --git a/pcbnew/tools/selection_tool.cpp b/pcbnew/tools/selection_tool.cpp index f299fbbfa5..da3d2e3a0b 100644 --- a/pcbnew/tools/selection_tool.cpp +++ b/pcbnew/tools/selection_tool.cpp @@ -359,6 +359,9 @@ int SELECTION_TOOL::Main( const TOOL_EVENT& aEvent ) else if( evt->IsCancel() || evt->Action() == TA_UNDO_REDO_PRE ) { clearSelection(); + + if( evt->IsCancel() && !m_editModules ) + m_toolMgr->RunAction( PCB_ACTIONS::clearHighlight, true ); } else if( evt->Action() == TA_CONTEXT_MENU_CLOSED ) diff --git a/qa/common/mocks.cpp b/qa/common/mocks.cpp index 9e24af182a..a3749e2f83 100644 --- a/qa/common/mocks.cpp +++ b/qa/common/mocks.cpp @@ -281,6 +281,10 @@ TOOL_ACTION PCB_ACTIONS::highlightNet( "pcbnew.EditorControl.highlightNet", AS_GLOBAL, 0, "", "" ); +TOOL_ACTION PCB_ACTIONS::clearHighlight( "pcbnew.EditorControl.clearHighlight", + AS_GLOBAL, 0, + "", "" ); + DIALOG_BLOCK_OPTIONS_BASE::DIALOG_BLOCK_OPTIONS_BASE( wxWindow* parent, wxWindowID id,