2011-09-23 13:57:12 +00:00
|
|
|
/**
|
|
|
|
* @file pcbnew/initpcb.cpp
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <confirm.h>
|
|
|
|
#include <wxPcbStruct.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_board.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <module_editor_frame.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
2010-11-12 16:59:16 +00:00
|
|
|
* 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
|
2007-08-20 01:20:48 +00:00
|
|
|
*/
|
2011-03-01 19:26:17 +00:00
|
|
|
bool PCB_EDIT_FRAME::Clear_Pcb( bool aQuery )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2009-01-05 05:21:35 +00:00
|
|
|
if( GetBoard() == NULL )
|
2011-09-07 19:41:04 +00:00
|
|
|
return false;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-08-06 15:42:09 +00:00
|
|
|
if( aQuery )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2009-01-05 05:21:35 +00:00
|
|
|
if( GetBoard()->m_Drawings || GetBoard()->m_Modules
|
|
|
|
|| GetBoard()->m_Track || GetBoard()->m_Zone )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2009-08-06 15:42:09 +00:00
|
|
|
if( !IsOK( this,
|
2011-09-07 19:41:04 +00:00
|
|
|
_( "Current Board will be lost and this operation cannot be undone. Continue ?" ) ) )
|
|
|
|
return false;
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-06 15:42:09 +00:00
|
|
|
// Clear undo and redo lists because we want a full deletion
|
|
|
|
GetScreen()->ClearUndoRedoList();
|
|
|
|
|
2011-12-30 19:04:40 +00:00
|
|
|
/* Items visibility flags will be set becuse a new board will be created.
|
|
|
|
* Grid and ratsnest can be left to their previous state
|
|
|
|
*/
|
|
|
|
bool showGrid = IsElementVisible( GRID_VISIBLE );
|
|
|
|
bool showRats = IsElementVisible( RATSNEST_VISIBLE );
|
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.
|
++PCBNew
* Removed Pcb_Frame argument from BOARD() constructor, since it precludes
having a BOARD being edited by more than one editor, it was a bad design.
And this meant removing m_PcbFrame from BOARD.
* removed BOARD::SetWindowFrame(), and BOARD::m_PcbFrame
* Removed the global BOARD_DESIGN_SETTINGS which was in class_board.cpp
* added BOARD_DESIGN_SETTINGS to the BOARD class, a full instance
* a couple dialogs now only change BOARD_DESIGN_SETTINGS when OK is pressed,
such as dialog_mask_clearance, dialog_drc, etc.
* Removed common/pcbcommon.cpp's int g_CurrentVersionPCB = 1 and replaced it
with build_version.h's #define BOARD_FILE_VERSION, although there may be a
better place for this constant.
* Made the public functions in PARAM_CFG_ARRAY be type const.
void SaveParam(..) const and void ReadParam(..) const
* PARAM_CFG_BASE now has virtual destructor since we have various way of
destroying the derived class and boost::ptr_vector must be told about this.
* Pass const PARAM_CFG_ARRAY& instead of PARAM_CFG_ARRAY so that we can use
an automatic PARAM_CFG_ARRAY which is on the stack.\
* PCB_EDIT_FRAME::GetProjectFileParameters() may no longer cache the array,
since it has to access the current BOARD and the BOARD can change.
Remember BOARD_DESIGN_SETTINGS are now in the BOARD.
* Made the m_BoundingBox member private, this was a brutally hard task,
and indicative of the lack of commitment to accessors and object oriented
design on the part of KiCad developers. We must do better.
Added BOARD::GetBoundingBox, SetBoundingBox(), ComputeBoundingBox().
* Added PCB_BASE_FRAME::GetBoardBoundingBox() which calls BOARD::ComputeBoundingBox()
2011-12-05 06:15:33 +00:00
|
|
|
SetBoard( new BOARD() );
|
2011-12-30 19:04:40 +00:00
|
|
|
SetElementVisibility( GRID_VISIBLE, showGrid );
|
|
|
|
SetElementVisibility( RATSNEST_VISIBLE, showRats );
|
|
|
|
|
2009-10-07 17:10:37 +00:00
|
|
|
SetCurItem( NULL );
|
2007-12-29 19:15:58 +00:00
|
|
|
|
2011-12-22 21:57:50 +00:00
|
|
|
// clear filename, to avoid overwriting an old file
|
2012-08-29 16:59:50 +00:00
|
|
|
GetBoard()->SetFileName( wxEmptyString );
|
2008-04-29 03:18:02 +00:00
|
|
|
|
2011-12-22 21:57:50 +00:00
|
|
|
// preserve grid size accross call to InitDataPoints()
|
|
|
|
|
|
|
|
// wxRealPoint gridsize = GetScreen()->GetGridSize();
|
|
|
|
GetScreen()->InitDataPoints( GetPageSizeIU() );
|
|
|
|
// GetScreen()->SetGrid( gridsize );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2011-09-14 20:04:58 +00:00
|
|
|
GetBoard()->ResetHighLight();
|
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)
|
2011-12-22 21:57:50 +00:00
|
|
|
GetBoard()->SetEnabledLayers( ALL_LAYERS );
|
2010-01-21 07:41:30 +00:00
|
|
|
|
2009-10-07 17:10:37 +00:00
|
|
|
// Default copper layers count set to 2: double layer board
|
2011-12-22 21:57:50 +00:00
|
|
|
GetBoard()->SetCopperLayerCount( 2 );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-10-07 17:10:37 +00:00
|
|
|
// Update display:
|
2010-01-21 07:41:30 +00:00
|
|
|
GetBoard()->SetVisibleLayers( ALL_LAYERS );
|
|
|
|
|
|
|
|
ReFillLayerWidget();
|
|
|
|
|
2011-03-01 18:45:21 +00:00
|
|
|
Zoom_Automatique( false );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-08-06 15:42:09 +00:00
|
|
|
return true;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-08-26 17:01:17 +00:00
|
|
|
bool FOOTPRINT_EDIT_FRAME::Clear_Pcb( bool aQuery )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2009-08-06 15:42:09 +00:00
|
|
|
if( GetBoard() == NULL )
|
2011-09-07 19:41:04 +00:00
|
|
|
return false;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-08-06 15:42:09 +00:00
|
|
|
if( aQuery && GetScreen()->IsModify() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2009-08-06 15:42:09 +00:00
|
|
|
if( GetBoard()->m_Modules )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2009-08-06 15:42:09 +00:00
|
|
|
if( !IsOK( this,
|
2011-09-07 19:41:04 +00:00
|
|
|
_( "Current Footprint will be lost and this operation cannot be undone. Continue ?" ) ) )
|
|
|
|
return false;
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
2009-01-05 05:21:35 +00:00
|
|
|
GetBoard()->m_Modules.DeleteAll();
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-12-22 21:57:50 +00:00
|
|
|
// init pointeurs et variables
|
2012-08-29 16:59:50 +00:00
|
|
|
GetBoard()->SetFileName( wxEmptyString );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-08-06 15:42:09 +00:00
|
|
|
SetCurItem( NULL );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-12-22 21:57:50 +00:00
|
|
|
// preserve grid size accross call to InitDataPoints()
|
|
|
|
// wxRealPoint gridsize = GetScreen()->GetGridSize();
|
|
|
|
GetScreen()->InitDataPoints( GetPageSizeIU() );
|
|
|
|
// GetScreen()->SetGrid( gridsize );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-03-01 18:45:21 +00:00
|
|
|
Zoom_Automatique( false );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-08-06 15:42:09 +00:00
|
|
|
return true;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|