kicad/pcbnew/initpcb.cpp

117 lines
2.9 KiB
C++
Raw Normal View History

/*********************************************/
/******* file initpcb.cpp ********************/
/*********************************************/
#include "fctsys.h"
#include "common.h"
#include "class_drawpanel.h"
#include "confirm.h"
#include "pcbnew.h"
2009-07-30 11:04:07 +00:00
#include "wxPcbStruct.h"
#include "module_editor_frame.h"
2009-10-28 11:48:47 +00:00
#include "class_board_design_settings.h"
//#include "protos.h"
/**
* Function Clear_Pcb
2009-08-06 15:42:09 +00:00
* delete all and reinitialize the current board
* @param aQuery = true to prompt user for confirmation, false to initialize silently
*/
2009-08-06 15:42:09 +00:00
bool WinEDA_PcbFrame::Clear_Pcb( bool aQuery )
{
if( GetBoard() == NULL )
return FALSE;
2009-08-06 15:42:09 +00:00
if( aQuery )
{
if( GetBoard()->m_Drawings || GetBoard()->m_Modules
|| GetBoard()->m_Track || GetBoard()->m_Zone )
{
2009-08-06 15:42:09 +00:00
if( !IsOK( this,
_( "Current Board will be lost and this operation cannot be undone. Continue ?" ) ) )
return FALSE;
}
}
2009-08-06 15:42:09 +00:00
// Clear undo and redo lists because we want a full deletion
GetScreen()->ClearUndoRedoList();
2008-03-04 04:22:27 +00:00
// delete the old BOARD and create a new BOARD so that the default
// layer names are put into the BOARD.
SetBoard( new BOARD( NULL, this ) );
2009-10-07 17:10:37 +00:00
m_TrackAndViasSizesList_Changed = true;
SetCurItem( NULL );
2009-10-07 17:10:37 +00:00
/* clear filename, to avoid overwriting an old file */
GetScreen()->GetFileName().Empty();
2008-04-29 03:18:02 +00:00
2009-10-07 17:10:37 +00:00
/* Init new grid size */
wxRealPoint gridsize = GetScreen()->GetGridSize();
2009-08-06 15:42:09 +00:00
GetScreen()->Init();
2008-04-18 13:28:56 +00:00
GetScreen()->SetGrid( gridsize );
g_HighLight_Status = 0;
2010-01-21 07:41:30 +00:00
2009-10-28 11:48:47 +00:00
// Enable all layers (SetCopperLayerCount() will adjust the copper layers enabled)
2010-01-21 07:41:30 +00:00
GetBoard()->SetEnabledLayers(ALL_LAYERS);
2009-10-07 17:10:37 +00:00
// Default copper layers count set to 2: double layer board
2010-01-21 07:41:30 +00:00
GetBoard()->SetCopperLayerCount(2);
2009-10-07 17:10:37 +00:00
// Update display:
2010-01-21 07:41:30 +00:00
GetBoard()->SetVisibleLayers( ALL_LAYERS );
ReFillLayerWidget();
2009-10-07 17:10:37 +00:00
SetToolbars();
2009-08-06 15:42:09 +00:00
Zoom_Automatique( true );
2009-08-06 15:42:09 +00:00
return true;
}
/**
* Function Clear_Pcb
2009-08-06 15:42:09 +00:00
* delete all and reinitialize the current board
* @param aQuery = true to prompt user for confirmation, false to initialize silently
*/
bool WinEDA_ModuleEditFrame::Clear_Pcb( bool aQuery )
{
2009-08-06 15:42:09 +00:00
if( GetBoard() == NULL )
return FALSE;
2009-08-06 15:42:09 +00:00
if( aQuery && GetScreen()->IsModify() )
{
2009-08-06 15:42:09 +00:00
if( GetBoard()->m_Modules )
{
2009-08-06 15:42:09 +00:00
if( !IsOK( this,
_( "Current Footprint will be lost and this operation cannot be undone. Continue ?" ) ) )
2009-08-06 15:42:09 +00:00
return FALSE;
}
}
2009-08-06 15:42:09 +00:00
// Clear undo and redo lists
GetScreen()->ClearUndoRedoList();
2009-08-08 06:07:08 +00:00
2009-08-06 15:42:09 +00:00
// Delete the current footprint
GetBoard()->m_Modules.DeleteAll();
2009-08-06 15:42:09 +00:00
/* init pointeurs et variables */
GetScreen()->GetFileName().Empty();
2009-08-06 15:42:09 +00:00
SetCurItem( NULL );
2009-08-06 15:42:09 +00:00
/* Init parametres de gestion */
wxRealPoint gridsize = GetScreen()->GetGridSize();
2009-08-06 15:42:09 +00:00
GetScreen()->Init();
GetScreen()->SetGrid( gridsize );
2009-08-06 15:42:09 +00:00
Zoom_Automatique( true );
2009-08-06 15:42:09 +00:00
return true;
}