2009-11-12 15:43:38 +00:00
|
|
|
/****************************************************************/
|
|
|
|
/* member functions of classes used in pcbnew (see pcbstruct.h) */
|
|
|
|
/* except for tracks (see class_track.cpp) */
|
|
|
|
/****************************************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "pcbnew.h"
|
2009-10-28 11:48:47 +00:00
|
|
|
#include "class_board_design_settings.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
#include "trigo.h"
|
2009-09-22 12:27:57 +00:00
|
|
|
#include "pcbnew_id.h"
|
2008-12-05 16:03:05 +00:00
|
|
|
|
|
|
|
|
2009-02-06 11:45:35 +00:00
|
|
|
/* Default pcbnew zoom values.
|
2009-03-12 15:24:52 +00:00
|
|
|
* Limited to 19 values to keep a decent size to menus
|
|
|
|
* 15 it better but does not allow a sufficient number of values
|
|
|
|
* roughtly a 1.5 progression.
|
|
|
|
* The last 2 values is handy when somebody uses a library import of a module
|
|
|
|
* (or foreign data) which has a bad coordinate
|
|
|
|
* Also useful in Gerbview for this reason.
|
|
|
|
* Zoom 5 and 10 can create artefacts when drawing (integer overflow in low level graphic functions )
|
2009-02-06 11:45:35 +00:00
|
|
|
*/
|
2009-06-18 13:30:52 +00:00
|
|
|
static const int PcbZoomList[] =
|
|
|
|
{
|
2009-03-12 15:24:52 +00:00
|
|
|
5, 10, 15, 22, 30, 45, 70, 100, 150, 220, 350, 500, 800, 1200,
|
|
|
|
2000, 3500, 5000, 10000, 20000
|
|
|
|
};
|
2009-01-29 14:26:20 +00:00
|
|
|
|
|
|
|
#define PCB_ZOOM_LIST_CNT ( sizeof( PcbZoomList ) / sizeof( int ) )
|
2010-03-20 19:57:59 +00:00
|
|
|
#define MM_TO_PCB_UNITS 10000.0 / 25.4
|
2009-01-29 14:26:20 +00:00
|
|
|
|
|
|
|
|
2008-12-05 16:03:05 +00:00
|
|
|
/* Default grid sizes for PCB editor screens. */
|
2009-06-18 13:30:52 +00:00
|
|
|
static GRID_TYPE PcbGridList[] =
|
|
|
|
{
|
2009-03-12 15:24:52 +00:00
|
|
|
// predefined grid list in 0.0001 inches
|
2009-10-14 19:43:31 +00:00
|
|
|
{ ID_POPUP_GRID_LEVEL_1000, wxRealPoint( 1000, 1000 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_500, wxRealPoint( 500, 500 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_250, wxRealPoint( 250, 250 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_200, wxRealPoint( 200, 200 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_100, wxRealPoint( 100, 100 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_50, wxRealPoint( 50, 50 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_25, wxRealPoint( 25, 25 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_20, wxRealPoint( 20, 20 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_10, wxRealPoint( 10, 10 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_5, wxRealPoint( 5, 5 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_2, wxRealPoint( 2, 2 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_1, wxRealPoint( 1, 1 ) },
|
2009-03-12 15:24:52 +00:00
|
|
|
|
|
|
|
// predefined grid list in mm
|
2009-10-14 19:43:31 +00:00
|
|
|
{ ID_POPUP_GRID_LEVEL_5MM, wxRealPoint( MM_TO_PCB_UNITS * 5.0, MM_TO_PCB_UNITS * 5.0 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_2_5MM, wxRealPoint( MM_TO_PCB_UNITS * 2.5, MM_TO_PCB_UNITS * 2.5 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_1MM, wxRealPoint( MM_TO_PCB_UNITS, MM_TO_PCB_UNITS ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_0_5MM, wxRealPoint( MM_TO_PCB_UNITS * 0.5, MM_TO_PCB_UNITS * 0.5 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_0_25MM, wxRealPoint( MM_TO_PCB_UNITS * 0.25, MM_TO_PCB_UNITS * 0.25 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_0_2MM, wxRealPoint( MM_TO_PCB_UNITS * 0.2, MM_TO_PCB_UNITS * 0.2 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_0_1MM, wxRealPoint( MM_TO_PCB_UNITS * 0.1, MM_TO_PCB_UNITS * 0.1 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_0_0_5MM, wxRealPoint( MM_TO_PCB_UNITS * 0.05, MM_TO_PCB_UNITS * 0.05 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_0_0_25MM, wxRealPoint( MM_TO_PCB_UNITS * 0.025, MM_TO_PCB_UNITS * 0.025 ) },
|
|
|
|
{ ID_POPUP_GRID_LEVEL_0_0_1MM, wxRealPoint( MM_TO_PCB_UNITS * 0.01, MM_TO_PCB_UNITS * 0.01 ) }
|
2008-12-05 16:03:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define PCB_GRID_LIST_CNT ( sizeof( PcbGridList ) / sizeof( GRID_TYPE ) )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2009-02-06 11:45:35 +00:00
|
|
|
/*******************************************************************/
|
|
|
|
/* Class PCB_SCREEN: class to handle parametres to display a board */
|
|
|
|
/********************************************************************/
|
|
|
|
PCB_SCREEN::PCB_SCREEN() : BASE_SCREEN( TYPE_SCREEN )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2008-12-05 16:03:05 +00:00
|
|
|
size_t i;
|
|
|
|
|
2009-01-29 14:26:20 +00:00
|
|
|
for( i = 0; i < PCB_ZOOM_LIST_CNT; i++ )
|
|
|
|
m_ZoomList.Add( PcbZoomList[i] );
|
2008-12-05 16:03:05 +00:00
|
|
|
|
|
|
|
for( i = 0; i < PCB_GRID_LIST_CNT; i++ )
|
|
|
|
AddGrid( PcbGridList[i] );
|
2007-08-06 21:02:23 +00:00
|
|
|
|
2009-02-07 08:33:25 +00:00
|
|
|
SetGrid( wxRealPoint( 500, 500 ) ); /* Set the working grid size to a reasonnable value (in 1/10000 inch) */
|
2007-08-06 21:02:23 +00:00
|
|
|
Init();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-06 21:02:23 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/***************************/
|
2007-09-01 12:00:30 +00:00
|
|
|
PCB_SCREEN::~PCB_SCREEN()
|
2007-06-05 12:10:51 +00:00
|
|
|
/***************************/
|
|
|
|
{
|
2009-07-29 13:10:36 +00:00
|
|
|
ClearUndoRedoList();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2009-02-06 11:45:35 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*************************/
|
2007-09-01 12:00:30 +00:00
|
|
|
void PCB_SCREEN::Init()
|
2007-06-05 12:10:51 +00:00
|
|
|
/*************************/
|
|
|
|
{
|
2007-08-06 21:02:23 +00:00
|
|
|
InitDatas();
|
2009-12-07 03:46:13 +00:00
|
|
|
m_Active_Layer = LAYER_N_BACK; /* default active layer = bottom layer */
|
|
|
|
m_Route_Layer_TOP = LAYER_N_FRONT; /* default layers pair for vias (bottom to top) */
|
|
|
|
m_Route_Layer_BOTTOM = LAYER_N_BACK;
|
2009-02-06 11:45:35 +00:00
|
|
|
m_Zoom = 150; /* a default value for zoom */
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2009-02-06 11:45:35 +00:00
|
|
|
|
2008-12-05 16:03:05 +00:00
|
|
|
int PCB_SCREEN::GetInternalUnits( void )
|
|
|
|
{
|
|
|
|
return PCB_INTERNAL_UNIT;
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-02-06 11:45:35 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*************************/
|
|
|
|
/* class DISPLAY_OPTIONS */
|
|
|
|
/*************************/
|
2007-08-06 21:02:23 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*
|
2007-09-27 09:08:47 +00:00
|
|
|
* Handle display options like enable/disable some optional drawings:
|
2007-08-06 21:02:23 +00:00
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
DISPLAY_OPTIONS::DISPLAY_OPTIONS()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2009-10-10 01:25:53 +00:00
|
|
|
DisplayPadFill = FILLED;
|
|
|
|
DisplayViaFill = FILLED;
|
|
|
|
DisplayPadNum = true;
|
|
|
|
DisplayPadIsol = true;
|
|
|
|
|
|
|
|
DisplayModEdge = true;
|
|
|
|
DisplayModText = true;
|
|
|
|
DisplayPcbTrackFill = true; /* false = sketch , true = filled */
|
|
|
|
ShowTrackClearanceMode = SHOW_CLEARANCE_NEW_TRACKS_AND_VIA_AREAS;
|
|
|
|
m_DisplayViaMode = VIA_HOLE_NOT_SHOW;
|
|
|
|
|
|
|
|
DisplayPolarCood = false; /* false = display absolute coordinates,
|
|
|
|
* true = display polar cordinates */
|
|
|
|
DisplayZonesMode = 0; /* 0 = Show filled areas outlines in zones,
|
|
|
|
* 1 = do not show filled areas outlines
|
|
|
|
* 2 = show outlines of filled areas */
|
|
|
|
DisplayNetNamesMode = 3; /* 0 do not show netnames,
|
|
|
|
* 1 show netnames on pads
|
|
|
|
* 2 show netnames on tracks
|
|
|
|
* 3 show netnames on tracks and pads */
|
|
|
|
DisplayDrawItems = true;
|
|
|
|
ContrastModeDisplay = false;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|