kicad/pcbnew/initpcb.cpp

123 lines
3.2 KiB
C++
Raw Normal View History

/**
* @file pcbnew/initpcb.cpp
*/
#include <fctsys.h>
#include <class_drawpanel.h>
#include <class_drawpanel_gal.h>
#include <view/view.h>
#include <pcb_painter.h>
#include <confirm.h>
#include <wxPcbStruct.h>
#include <class_board.h>
#include <pcbnew.h>
#include <module_editor_frame.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
*/
bool PCB_EDIT_FRAME::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();
/* 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() );
SetElementVisibility( GRID_VISIBLE, showGrid );
SetElementVisibility( RATSNEST_VISIBLE, showRats );
2009-10-07 17:10:37 +00:00
SetCurItem( NULL );
// 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
// preserve grid size accross call to InitDataPoints()
// wxRealPoint gridsize = GetScreen()->GetGridSize();
GetScreen()->InitDataPoints( GetPageSizeIU() );
// GetScreen()->SetGrid( gridsize );
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)
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
GetBoard()->SetCopperLayerCount( 2 );
// Update display
2010-01-21 07:41:30 +00:00
GetBoard()->SetVisibleLayers( ALL_LAYERS );
// Set currently selected layer to be shown in high contrast mode, when enabled`
setHighContrastLayer( GetScreen()->m_Active_Layer );
2010-01-21 07:41:30 +00:00
ReFillLayerWidget();
Zoom_Automatique( false );
2009-08-06 15:42:09 +00:00
return true;
}
bool FOOTPRINT_EDIT_FRAME::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 ?" ) ) )
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();
// init pointeurs et variables
2012-08-29 16:59:50 +00:00
GetBoard()->SetFileName( wxEmptyString );
2009-08-06 15:42:09 +00:00
SetCurItem( NULL );
// preserve grid size accross call to InitDataPoints()
// wxRealPoint gridsize = GetScreen()->GetGridSize();
GetScreen()->InitDataPoints( GetPageSizeIU() );
// GetScreen()->SetGrid( gridsize );
Zoom_Automatique( false );
2009-08-06 15:42:09 +00:00
return true;
}