Disable non-KiCad import for project-mode
Adds warning if project schematic contains data
Fixes https://gitlab.com/kicad/code/kicad/-/issues/15570
(cherry picked from commit b837aa823c
)
This commit is contained in:
parent
a38327a39c
commit
fff95fa4e6
|
@ -590,6 +590,15 @@ void SCH_EDIT_FRAME::OnImportProject( wxCommandEvent& aEvent )
|
||||||
if( !AskToSaveChanges() )
|
if( !AskToSaveChanges() )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if( Schematic().RootScreen() && !Schematic().RootScreen()->Items().empty() )
|
||||||
|
{
|
||||||
|
wxString msg = _( "This operation replaces the contents of the current project.\n\n"
|
||||||
|
"Do you want to proceed?" );
|
||||||
|
|
||||||
|
if( !IsOK( this, msg ) )
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Set the project location if none is set or if we are running in standalone mode
|
// Set the project location if none is set or if we are running in standalone mode
|
||||||
bool setProject = Prj().GetProjectFullName().IsEmpty() || Kiface().IsSingle();
|
bool setProject = Prj().GetProjectFullName().IsEmpty() || Kiface().IsSingle();
|
||||||
wxString path = wxPathOnly( Prj().GetProjectFullName() );
|
wxString path = wxPathOnly( Prj().GetProjectFullName() );
|
||||||
|
|
|
@ -106,10 +106,14 @@ void SCH_EDIT_FRAME::doReCreateMenuBar()
|
||||||
ACTION_MENU* submenuImport = new ACTION_MENU( false, selTool );
|
ACTION_MENU* submenuImport = new ACTION_MENU( false, selTool );
|
||||||
submenuImport->SetTitle( _( "Import" ) );
|
submenuImport->SetTitle( _( "Import" ) );
|
||||||
submenuImport->SetIcon( BITMAPS::import );
|
submenuImport->SetIcon( BITMAPS::import );
|
||||||
|
|
||||||
|
if( Kiface().IsSingle() )
|
||||||
|
{
|
||||||
submenuImport->Add( _( "Non-KiCad Schematic..." ),
|
submenuImport->Add( _( "Non-KiCad Schematic..." ),
|
||||||
_( "Replace current schematic sheet with one imported from another application" ),
|
_( "Replace current schematic sheet with one imported from another application" ),
|
||||||
ID_IMPORT_NON_KICAD_SCH,
|
ID_IMPORT_NON_KICAD_SCH,
|
||||||
BITMAPS::import_document );
|
BITMAPS::import_document );
|
||||||
|
}
|
||||||
|
|
||||||
submenuImport->Add( EE_ACTIONS::importFPAssignments, ACTION_MENU::NORMAL, _( "Footprint Assignments..." ) );
|
submenuImport->Add( EE_ACTIONS::importFPAssignments, ACTION_MENU::NORMAL, _( "Footprint Assignments..." ) );
|
||||||
fileMenu->Add( submenuImport );
|
fileMenu->Add( submenuImport );
|
||||||
|
|
Loading…
Reference in New Issue