Update message panel after rebuilding connectivity.
Fixes https://gitlab.com/kicad/code/kicad/issues/10122
This commit is contained in:
parent
b09a106880
commit
c409646aad
|
@ -688,6 +688,8 @@ const TOOL_EVENT EVENTS::SelectedEvent( TC_MESSAGE, TA_ACTION, "common.Interacti
|
|||
const TOOL_EVENT EVENTS::UnselectedEvent( TC_MESSAGE, TA_ACTION, "common.Interactive.unselected" );
|
||||
const TOOL_EVENT EVENTS::ClearedEvent( TC_MESSAGE, TA_ACTION, "common.Interactive.cleared" );
|
||||
|
||||
const TOOL_EVENT EVENTS::ConnectivityChangedEvent( TC_MESSAGE, TA_ACTION, "common.Interactive.connectivityChanged" );
|
||||
|
||||
const TOOL_EVENT EVENTS::SelectedItemsModified( TC_MESSAGE, TA_ACTION, "common.Interactive.modified" );
|
||||
const TOOL_EVENT EVENTS::SelectedItemsMoved( TC_MESSAGE, TA_ACTION, "common.Interactive.moved" );
|
||||
const TOOL_EVENT EVENTS::InhibitSelectionEditing( TC_MESSAGE, TA_ACTION, "common.Interactive.inhibit" );
|
||||
|
|
|
@ -207,6 +207,8 @@ public:
|
|||
const static TOOL_EVENT UnselectedEvent;
|
||||
const static TOOL_EVENT ClearedEvent;
|
||||
|
||||
const static TOOL_EVENT ConnectivityChangedEvent;
|
||||
|
||||
///< Selected item had a property changed (except movement)
|
||||
const static TOOL_EVENT SelectedItemsModified;
|
||||
|
||||
|
|
|
@ -29,6 +29,8 @@
|
|||
#include <pcb_edit_frame.h>
|
||||
#include <pcbnew_settings.h>
|
||||
#include <board_commit.h>
|
||||
#include <tool/tool_manager.h>
|
||||
#include <tool/actions.h>
|
||||
#include <zone.h>
|
||||
#include <zones.h>
|
||||
#include <zones_functions_for_undo_redo.h>
|
||||
|
@ -103,6 +105,7 @@ void PCB_EDIT_FRAME::Edit_Zone_Params( ZONE* aZone )
|
|||
|
||||
commit.Push( _( "Modify zone properties" ), SKIP_CONNECTIVITY );
|
||||
GetBoard()->BuildConnectivity();
|
||||
GetToolManager()->PostEvent( EVENTS::ConnectivityChangedEvent );
|
||||
|
||||
pickedList.ClearItemsList(); // s_ItemsListPicker is no longer owner of picked items
|
||||
}
|
||||
|
|
|
@ -988,6 +988,7 @@ bool PCB_EDIT_FRAME::OpenProjectFiles( const std::vector<wxString>& aFileSet, in
|
|||
commit.Push( _( "Convert Zone(s)" ), SKIP_CONNECTIVITY );
|
||||
|
||||
GetBoard()->BuildConnectivity( &progressReporter );
|
||||
GetToolManager()->PostEvent( EVENTS::ConnectivityChangedEvent );
|
||||
}
|
||||
|
||||
// from EDA_APPL which was first loaded BOARD only:
|
||||
|
|
|
@ -26,7 +26,8 @@
|
|||
#include <board_design_settings.h>
|
||||
#include <board_commit.h>
|
||||
#include <bitmaps.h>
|
||||
|
||||
#include <tool/tool_manager.h>
|
||||
#include <tool/actions.h>
|
||||
#include "teardrop.h"
|
||||
#include "dialog_teardrop_base.h"
|
||||
#include <widgets/unit_binder.h>
|
||||
|
@ -216,6 +217,8 @@ void PCB_EDIT_FRAME::OnRunTeardropTool( wxCommandEvent& event )
|
|||
|
||||
int added_count = trdm.SetTeardrops( &committer, dlg.CanUseTwoTracks() );
|
||||
|
||||
GetToolManager()->PostEvent( EVENTS::ConnectivityChangedEvent );
|
||||
|
||||
m_infoBar->RemoveAllButtons();
|
||||
m_infoBar->AddCloseButton();
|
||||
m_infoBar->ShowMessageFor( wxString::Format( _( "%d teardrops created" ), added_count ),
|
||||
|
@ -232,6 +235,7 @@ void PCB_EDIT_FRAME::OnRemoveTeardropTool( wxCommandEvent& event )
|
|||
|
||||
GetCanvas()->RedrawRatsnest();
|
||||
GetCanvas()->Refresh();
|
||||
GetToolManager()->PostEvent( EVENTS::SelectedItemsModified );
|
||||
|
||||
m_infoBar->RemoveAllButtons();
|
||||
m_infoBar->AddCloseButton();
|
||||
|
|
|
@ -1628,6 +1628,7 @@ void PCB_CONTROL::setTransitions()
|
|||
Go( &PCB_CONTROL::UpdateMessagePanel, EVENTS::UnselectedEvent );
|
||||
Go( &PCB_CONTROL::UpdateMessagePanel, EVENTS::ClearedEvent );
|
||||
Go( &PCB_CONTROL::UpdateMessagePanel, EVENTS::SelectedItemsModified );
|
||||
Go( &PCB_CONTROL::UpdateMessagePanel, EVENTS::ConnectivityChangedEvent );
|
||||
|
||||
// Add library by dropping file
|
||||
Go( &PCB_CONTROL::DdAddLibrary, ACTIONS::ddAddLibrary.MakeEvent() );
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
#include <wx/event.h>
|
||||
#include <wx/hyperlink.h>
|
||||
#include <tool/tool_manager.h>
|
||||
#include <tool/actions.h>
|
||||
#include "pcb_actions.h"
|
||||
#include "zone_filler_tool.h"
|
||||
#include "zone_filler.h"
|
||||
|
@ -97,6 +98,7 @@ void ZONE_FILLER_TOOL::CheckAllZones( wxWindow* aCaller, PROGRESS_REPORTER* aRep
|
|||
}
|
||||
|
||||
board()->BuildConnectivity();
|
||||
m_toolMgr->PostEvent( EVENTS::ConnectivityChangedEvent );
|
||||
|
||||
refresh();
|
||||
|
||||
|
@ -173,6 +175,7 @@ void ZONE_FILLER_TOOL::FillAllZones( wxWindow* aCaller, PROGRESS_REPORTER* aRepo
|
|||
}
|
||||
|
||||
board()->BuildConnectivity( reporter.get() );
|
||||
m_toolMgr->PostEvent( EVENTS::ConnectivityChangedEvent );
|
||||
|
||||
if( filler.IsDebug() )
|
||||
frame->UpdateUserInterface();
|
||||
|
@ -256,6 +259,7 @@ int ZONE_FILLER_TOOL::ZoneFillDirty( const TOOL_EVENT& aEvent )
|
|||
commit.Revert();
|
||||
|
||||
board()->BuildConnectivity( reporter.get() );
|
||||
m_toolMgr->PostEvent( EVENTS::ConnectivityChangedEvent );
|
||||
|
||||
if( filler.IsDebug() )
|
||||
frame->UpdateUserInterface();
|
||||
|
|
Loading…
Reference in New Issue