2011-09-23 13:57:12 +00:00
|
|
|
/**
|
|
|
|
* @file print_board_functions.cpp
|
|
|
|
* @brief Functions to print boards.
|
|
|
|
*/
|
2013-03-13 19:06:46 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1992-2013 KiCad Developers, see AUTHORS.txt for contributors.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <wxPcbStruct.h>
|
|
|
|
#include <printout_controler.h>
|
|
|
|
#include <colors_selection.h>
|
|
|
|
#include <pcbcommon.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_module.h>
|
|
|
|
#include <class_edge_mod.h>
|
|
|
|
#include <class_track.h>
|
|
|
|
#include <class_zone.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <protos.h>
|
|
|
|
#include <pcbplot.h>
|
|
|
|
#include <module_editor_frame.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
static void Print_Module( EDA_DRAW_PANEL* aPanel, wxDC* aDC, MODULE* aModule,
|
2013-03-30 17:24:04 +00:00
|
|
|
GR_DRAWMODE aDraw_mode, LAYER_MSK aMasklayer,
|
2010-01-09 20:25:39 +00:00
|
|
|
PRINT_PARAMETERS::DrillShapeOptT aDrillShapeOpt );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-08-26 17:01:17 +00:00
|
|
|
void FOOTPRINT_EDIT_FRAME::PrintPage( wxDC* aDC,
|
2013-03-30 17:24:04 +00:00
|
|
|
LAYER_MSK aPrintMaskLayer,
|
2011-08-26 17:01:17 +00:00
|
|
|
bool aPrintMirrorMode,
|
|
|
|
void * aData)
|
2010-04-21 17:22:27 +00:00
|
|
|
{
|
2012-09-01 13:38:27 +00:00
|
|
|
GR_DRAWMODE drawmode = GR_COPY;
|
2013-03-11 19:30:58 +00:00
|
|
|
int defaultPenSize = Millimeter2iu( 0.2 );
|
2011-12-22 21:57:50 +00:00
|
|
|
|
|
|
|
DISPLAY_OPTIONS save_opt;
|
2010-04-21 17:22:27 +00:00
|
|
|
|
|
|
|
PRINT_PARAMETERS * printParameters = (PRINT_PARAMETERS*) aData; // can be null
|
|
|
|
PRINT_PARAMETERS::DrillShapeOptT drillShapeOpt = PRINT_PARAMETERS::FULL_DRILL_SHAPE;
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2010-04-21 17:22:27 +00:00
|
|
|
if( printParameters )
|
|
|
|
defaultPenSize = printParameters->m_PenDefaultSize;
|
|
|
|
|
|
|
|
save_opt = DisplayOpt;
|
|
|
|
|
|
|
|
DisplayOpt.ContrastModeDisplay = false;
|
|
|
|
DisplayOpt.DisplayPadFill = true;
|
2010-04-23 09:54:40 +00:00
|
|
|
DisplayOpt.DisplayViaFill = true;
|
2010-04-21 17:22:27 +00:00
|
|
|
|
|
|
|
m_DisplayPadFill = DisplayOpt.DisplayPadFill;
|
|
|
|
m_DisplayViaFill = DisplayOpt.DisplayViaFill;
|
|
|
|
m_DisplayPadNum = DisplayOpt.DisplayPadNum = false;
|
|
|
|
bool nctmp = GetBoard()->IsElementVisible(NO_CONNECTS_VISIBLE);
|
|
|
|
GetBoard()->SetElementVisibility(NO_CONNECTS_VISIBLE, false);
|
|
|
|
DisplayOpt.DisplayPadIsol = false;
|
|
|
|
DisplayOpt.DisplayModEdge = FILLED;
|
|
|
|
DisplayOpt.DisplayModText = FILLED;
|
2013-03-13 19:06:46 +00:00
|
|
|
m_DisplayPcbTrackFill = DisplayOpt.DisplayPcbTrackFill = true;
|
2010-04-21 17:22:27 +00:00
|
|
|
DisplayOpt.ShowTrackClearanceMode = DO_NOT_SHOW_CLEARANCE;
|
|
|
|
DisplayOpt.DisplayDrawItems = FILLED;
|
|
|
|
DisplayOpt.DisplayZonesMode = 0;
|
|
|
|
DisplayOpt.DisplayNetNamesMode = 0;
|
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->SetPrintMirrored( aPrintMirrorMode );
|
2010-04-21 17:22:27 +00:00
|
|
|
|
2011-08-26 17:01:17 +00:00
|
|
|
// The OR mode is used in color mode, but be aware the background *must be
|
2010-04-21 17:22:27 +00:00
|
|
|
// BLACK. In the print page dialog, we first print in BLACK, and after
|
2011-08-26 17:01:17 +00:00
|
|
|
// reprint in color, on the black "local" background, in OR mode the black
|
2010-04-21 17:22:27 +00:00
|
|
|
// print is not made before, only a white page is printed
|
|
|
|
if( GetGRForceBlackPenState() == false )
|
|
|
|
drawmode = GR_OR;
|
|
|
|
|
|
|
|
// Draw footprints, this is done at last in order to print the pad holes in
|
|
|
|
// white (or g_DrawBgColor) after the tracks and zones
|
|
|
|
int tmp = D_PAD::m_PadSketchModePenSize;
|
|
|
|
D_PAD::m_PadSketchModePenSize = defaultPenSize;
|
2011-12-22 21:57:50 +00:00
|
|
|
|
|
|
|
wxSize pageSizeIU = GetPageSizeIU() / 2;
|
|
|
|
wxPoint offset( pageSizeIU.x, pageSizeIU.y );
|
|
|
|
|
|
|
|
for( MODULE* module = GetBoard()->m_Modules; module; module = module->Next() )
|
2010-04-21 17:22:27 +00:00
|
|
|
{
|
2011-12-22 21:57:50 +00:00
|
|
|
module->Move( offset );
|
2011-12-22 22:12:21 +00:00
|
|
|
Print_Module( m_canvas, aDC, module, drawmode, aPrintMaskLayer, drillShapeOpt );
|
2011-12-22 21:57:50 +00:00
|
|
|
module->Move( -offset );
|
2010-04-21 17:22:27 +00:00
|
|
|
}
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2010-04-21 17:22:27 +00:00
|
|
|
D_PAD::m_PadSketchModePenSize = tmp;
|
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->SetPrintMirrored( false );
|
2010-04-21 17:22:27 +00:00
|
|
|
|
|
|
|
DisplayOpt = save_opt;
|
|
|
|
m_DisplayPcbTrackFill = DisplayOpt.DisplayPcbTrackFill;
|
|
|
|
m_DisplayPadFill = DisplayOpt.DisplayPadFill;
|
|
|
|
m_DisplayViaFill = DisplayOpt.DisplayViaFill;
|
|
|
|
m_DisplayPadNum = DisplayOpt.DisplayPadNum;
|
2011-12-22 21:57:50 +00:00
|
|
|
GetBoard()->SetElementVisibility( NO_CONNECTS_VISIBLE, nctmp );
|
2010-04-21 17:22:27 +00:00
|
|
|
}
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2010-11-12 16:59:16 +00:00
|
|
|
/**
|
|
|
|
* Function PrintPage
|
|
|
|
* is used to print the board (on printer, or when creating SVF files).
|
2010-01-09 20:25:39 +00:00
|
|
|
* Print the board, but only layers allowed by aPrintMaskLayer
|
|
|
|
* @param aDC = the print device context
|
2010-12-29 17:47:32 +00:00
|
|
|
* @param aPrintMaskLayer = a 32 bits mask: bit n = 1 -> layer n is printed
|
2010-01-09 20:25:39 +00:00
|
|
|
* @param aPrintMirrorMode = true to plot mirrored
|
|
|
|
* @param aData = a pointer to an optional data (NULL if not used)
|
2007-08-23 04:28:46 +00:00
|
|
|
*/
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::PrintPage( wxDC* aDC,
|
2013-03-30 17:24:04 +00:00
|
|
|
LAYER_MSK aPrintMaskLayer,
|
2011-03-01 19:26:17 +00:00
|
|
|
bool aPrintMirrorMode,
|
|
|
|
void* aData)
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2009-11-20 14:55:20 +00:00
|
|
|
MODULE* Module;
|
2012-09-01 13:38:27 +00:00
|
|
|
GR_DRAWMODE drawmode = GR_COPY;
|
2011-09-07 19:41:04 +00:00
|
|
|
DISPLAY_OPTIONS save_opt;
|
|
|
|
BOARD* Pcb = GetBoard();
|
2013-03-11 19:30:58 +00:00
|
|
|
int defaultPenSize = Millimeter2iu( 0.2 );
|
2011-09-07 19:41:04 +00:00
|
|
|
bool onePagePerLayer = false;
|
2010-03-29 16:42:03 +00:00
|
|
|
|
2010-01-09 20:25:39 +00:00
|
|
|
PRINT_PARAMETERS * printParameters = (PRINT_PARAMETERS*) aData; // can be null
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-03-29 16:42:03 +00:00
|
|
|
if( printParameters && printParameters->m_OptionPrintPage == 0 )
|
|
|
|
onePagePerLayer = true;
|
2010-01-09 20:25:39 +00:00
|
|
|
|
|
|
|
PRINT_PARAMETERS::DrillShapeOptT drillShapeOpt = PRINT_PARAMETERS::FULL_DRILL_SHAPE;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-01-09 20:25:39 +00:00
|
|
|
if( printParameters )
|
2010-02-22 19:56:32 +00:00
|
|
|
{
|
2010-01-09 20:25:39 +00:00
|
|
|
drillShapeOpt = printParameters->m_DrillShapeOpt;
|
2010-02-22 19:56:32 +00:00
|
|
|
defaultPenSize = printParameters->m_PenDefaultSize;
|
|
|
|
}
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
save_opt = DisplayOpt;
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM activeLayer = GetScreen()->m_Active_Layer;
|
2010-03-29 16:42:03 +00:00
|
|
|
|
|
|
|
DisplayOpt.ContrastModeDisplay = false;
|
|
|
|
DisplayOpt.DisplayPadFill = true;
|
|
|
|
DisplayOpt.DisplayViaFill = true;
|
|
|
|
|
|
|
|
if( (aPrintMaskLayer & ALL_CU_LAYERS) == 0 )
|
2009-09-29 04:44:35 +00:00
|
|
|
{
|
2010-03-29 16:42:03 +00:00
|
|
|
if( onePagePerLayer )
|
2011-09-07 19:41:04 +00:00
|
|
|
{ // We can print mask layers (solder mask and solder paste) with the actual
|
|
|
|
// pad sizes. To do that, we must set ContrastModeDisplay to true and set
|
|
|
|
//the GetScreen()->m_Active_Layer to the current printed layer
|
2010-03-29 16:42:03 +00:00
|
|
|
DisplayOpt.ContrastModeDisplay = true;
|
|
|
|
DisplayOpt.DisplayPadFill = true;
|
2010-04-23 09:54:40 +00:00
|
|
|
|
2010-03-29 16:42:03 +00:00
|
|
|
// Calculate the active layer number to print from its mask layer:
|
2013-03-31 13:27:46 +00:00
|
|
|
GetScreen()->m_Active_Layer = FIRST_LAYER;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2013-03-31 13:27:46 +00:00
|
|
|
for( LAYER_NUM kk = FIRST_LAYER; kk < NB_LAYERS; ++kk )
|
2010-03-29 16:42:03 +00:00
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( GetLayerMask( kk ) & aPrintMaskLayer )
|
2010-03-29 16:42:03 +00:00
|
|
|
{
|
|
|
|
GetScreen()->m_Active_Layer = kk;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-04-23 09:54:40 +00:00
|
|
|
|
2010-03-29 16:42:03 +00:00
|
|
|
// pads on Silkscreen layer are usually plot in sketch mode:
|
2011-08-26 17:01:17 +00:00
|
|
|
if( (GetScreen()->m_Active_Layer == SILKSCREEN_N_BACK)
|
|
|
|
|| (GetScreen()->m_Active_Layer == SILKSCREEN_N_FRONT) )
|
2010-03-29 16:42:03 +00:00
|
|
|
DisplayOpt.DisplayPadFill = false;
|
2010-04-23 09:54:40 +00:00
|
|
|
|
2010-03-29 16:42:03 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DisplayOpt.DisplayPadFill = false;
|
|
|
|
}
|
2009-09-29 04:44:35 +00:00
|
|
|
}
|
2010-04-23 09:54:40 +00:00
|
|
|
|
2009-09-29 04:44:35 +00:00
|
|
|
|
2010-03-18 20:35:29 +00:00
|
|
|
m_DisplayPadFill = DisplayOpt.DisplayPadFill;
|
|
|
|
m_DisplayViaFill = DisplayOpt.DisplayViaFill;
|
|
|
|
m_DisplayPadNum = DisplayOpt.DisplayPadNum = false;
|
2011-08-26 17:01:17 +00:00
|
|
|
bool nctmp = GetBoard()->IsElementVisible( NO_CONNECTS_VISIBLE );
|
|
|
|
GetBoard()->SetElementVisibility( NO_CONNECTS_VISIBLE, false );
|
2013-03-13 19:06:46 +00:00
|
|
|
bool anchorsTmp = GetBoard()->IsElementVisible( ANCHOR_VISIBLE );
|
|
|
|
GetBoard()->SetElementVisibility( ANCHOR_VISIBLE, false );
|
|
|
|
DisplayOpt.DisplayPadIsol = false;
|
2011-01-21 14:19:06 +00:00
|
|
|
m_DisplayModEdge = DisplayOpt.DisplayModEdge = FILLED;
|
|
|
|
m_DisplayModText = DisplayOpt.DisplayModText = FILLED;
|
2013-03-13 19:06:46 +00:00
|
|
|
m_DisplayPcbTrackFill = DisplayOpt.DisplayPcbTrackFill = true;
|
2009-06-18 20:51:01 +00:00
|
|
|
DisplayOpt.ShowTrackClearanceMode = DO_NOT_SHOW_CLEARANCE;
|
2009-11-20 14:55:20 +00:00
|
|
|
DisplayOpt.DisplayDrawItems = FILLED;
|
|
|
|
DisplayOpt.DisplayZonesMode = 0;
|
|
|
|
DisplayOpt.DisplayNetNamesMode = 0;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->SetPrintMirrored( aPrintMirrorMode );
|
2009-06-18 20:51:01 +00:00
|
|
|
|
2011-08-26 17:01:17 +00:00
|
|
|
// The OR mode is used in color mode, but be aware the background *must be
|
2010-03-29 16:42:03 +00:00
|
|
|
// BLACK. In the print page dialog, we first print in BLACK, and after
|
2011-08-26 17:01:17 +00:00
|
|
|
// reprint in color, on the black "local" background, in OR mode the black
|
2009-11-20 14:55:20 +00:00
|
|
|
// print is not made before, only a white page is printed
|
|
|
|
if( GetGRForceBlackPenState() == false )
|
2009-01-15 14:32:29 +00:00
|
|
|
drawmode = GR_OR;
|
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
// Print the pcb graphic items (texts, ...)
|
2009-01-15 14:32:29 +00:00
|
|
|
GRSetDrawMode( aDC, drawmode );
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2009-11-20 14:55:20 +00:00
|
|
|
for( BOARD_ITEM* item = Pcb->m_Drawings; item; item = item->Next() )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2008-04-01 06:32:48 +00:00
|
|
|
switch( item->Type() )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_LINE_T:
|
|
|
|
case PCB_DIMENSION_T:
|
|
|
|
case PCB_TEXT_T:
|
2011-09-07 19:41:04 +00:00
|
|
|
case PCB_TARGET_T:
|
2013-03-30 17:24:04 +00:00
|
|
|
if( GetLayerMask( item->GetLayer() ) & aPrintMaskLayer )
|
|
|
|
item->Draw( m_canvas, aDC, drawmode );
|
2007-08-23 04:28:46 +00:00
|
|
|
break;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_MARKER_T:
|
2007-08-23 04:28:46 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
// Print tracks
|
2013-03-13 19:06:46 +00:00
|
|
|
for( TRACK * track = Pcb->m_Track; track; track = track->Next() )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( !( aPrintMaskLayer & track->GetLayerMask() ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
continue;
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2013-03-13 19:06:46 +00:00
|
|
|
if( track->Type() == PCB_VIA_T ) // VIA encountered.
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2013-03-13 19:06:46 +00:00
|
|
|
int radius = track->GetWidth() >> 1;
|
|
|
|
EDA_COLOR_T color = g_ColorsSettings.GetItemColor( VIAS_VISIBLE + track->GetShape() );
|
2009-01-13 19:18:54 +00:00
|
|
|
GRSetDrawMode( aDC, drawmode );
|
2011-12-29 20:11:42 +00:00
|
|
|
GRFilledCircle( m_canvas->GetClipBox(), aDC,
|
2013-03-13 19:06:46 +00:00
|
|
|
track->GetStart().x,
|
|
|
|
track->GetStart().y,
|
2011-09-07 19:41:04 +00:00
|
|
|
radius,
|
2010-01-09 20:25:39 +00:00
|
|
|
0, color, color );
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
else
|
2011-08-26 17:01:17 +00:00
|
|
|
{
|
2013-03-13 19:06:46 +00:00
|
|
|
track->Draw( m_canvas, aDC, drawmode );
|
2011-08-26 17:01:17 +00:00
|
|
|
}
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
|
2013-03-11 19:30:58 +00:00
|
|
|
// Outdated: only for compatibility to old boards
|
2013-03-13 19:06:46 +00:00
|
|
|
for( TRACK * track = Pcb->m_Zone; track != NULL; track = track->Next() )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( !( aPrintMaskLayer & track->GetLayerMask() ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
continue;
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2013-03-13 19:06:46 +00:00
|
|
|
track->Draw( m_canvas, aDC, drawmode );
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
// Draw filled areas (i.e. zones)
|
2009-01-15 14:32:29 +00:00
|
|
|
for( int ii = 0; ii < Pcb->GetAreaCount(); ii++ )
|
|
|
|
{
|
2009-11-20 14:55:20 +00:00
|
|
|
ZONE_CONTAINER* zone = Pcb->GetArea( ii );
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2013-03-30 17:24:04 +00:00
|
|
|
if( aPrintMaskLayer & GetLayerMask( zone->GetLayer() ) )
|
2013-04-06 12:28:02 +00:00
|
|
|
zone->DrawFilledArea( m_canvas, aDC, drawmode );
|
2009-01-15 14:32:29 +00:00
|
|
|
}
|
|
|
|
|
2009-11-20 14:55:20 +00:00
|
|
|
// Draw footprints, this is done at last in order to print the pad holes in
|
|
|
|
// white (or g_DrawBgColor) after the tracks and zones
|
2009-08-13 06:18:06 +00:00
|
|
|
Module = (MODULE*) Pcb->m_Modules;
|
2010-02-22 19:56:32 +00:00
|
|
|
int tmp = D_PAD::m_PadSketchModePenSize;
|
|
|
|
D_PAD::m_PadSketchModePenSize = defaultPenSize;
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2009-08-13 06:18:06 +00:00
|
|
|
for( ; Module != NULL; Module = Module->Next() )
|
|
|
|
{
|
2011-12-22 13:28:11 +00:00
|
|
|
Print_Module( m_canvas, aDC, Module, drawmode, aPrintMaskLayer, drillShapeOpt );
|
2009-08-13 06:18:06 +00:00
|
|
|
}
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2010-02-22 19:56:32 +00:00
|
|
|
D_PAD::m_PadSketchModePenSize = tmp;
|
2009-08-13 06:18:06 +00:00
|
|
|
|
2009-11-20 14:55:20 +00:00
|
|
|
/* Print via holes in bg color: Not sure it is good for buried or blind
|
|
|
|
* vias */
|
2010-01-09 20:25:39 +00:00
|
|
|
if( drillShapeOpt != PRINT_PARAMETERS::NO_DRILL_SHAPE )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2013-03-13 19:06:46 +00:00
|
|
|
TRACK * track = Pcb->m_Track;
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T color = g_DrawBgColor;
|
2010-01-09 20:25:39 +00:00
|
|
|
bool blackpenstate = GetGRForceBlackPenState();
|
|
|
|
GRForceBlackPen( false );
|
|
|
|
GRSetDrawMode( aDC, GR_COPY );
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2013-03-13 19:06:46 +00:00
|
|
|
for( ; track != NULL; track = track->Next() )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( !( aPrintMaskLayer & track->GetLayerMask() ) )
|
2010-01-09 20:25:39 +00:00
|
|
|
continue;
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2013-03-13 19:06:46 +00:00
|
|
|
if( track->Type() == PCB_VIA_T ) // VIA encountered.
|
2010-01-09 20:25:39 +00:00
|
|
|
{
|
|
|
|
int diameter;
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2010-01-09 20:25:39 +00:00
|
|
|
if( drillShapeOpt == PRINT_PARAMETERS::SMALL_DRILL_SHAPE )
|
2013-03-13 19:06:46 +00:00
|
|
|
diameter = std::min( SMALL_DRILL, track->GetDrillValue() );
|
2010-01-09 20:25:39 +00:00
|
|
|
else
|
2013-03-13 19:06:46 +00:00
|
|
|
diameter = track->GetDrillValue();
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
GRFilledCircle( m_canvas->GetClipBox(), aDC,
|
2013-03-13 19:06:46 +00:00
|
|
|
track->GetStart().x, track->GetStart().y,
|
2010-01-09 20:25:39 +00:00
|
|
|
diameter/2,
|
|
|
|
0, color, color );
|
|
|
|
}
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2010-01-09 20:25:39 +00:00
|
|
|
GRForceBlackPen( blackpenstate );
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
2009-11-20 14:55:20 +00:00
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->SetPrintMirrored( false );
|
2008-11-02 19:52:57 +00:00
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
DisplayOpt = save_opt;
|
2010-03-29 16:42:03 +00:00
|
|
|
GetScreen()->m_Active_Layer = activeLayer;
|
2010-03-18 20:35:29 +00:00
|
|
|
m_DisplayPcbTrackFill = DisplayOpt.DisplayPcbTrackFill;
|
|
|
|
m_DisplayPadFill = DisplayOpt.DisplayPadFill;
|
|
|
|
m_DisplayViaFill = DisplayOpt.DisplayViaFill;
|
|
|
|
m_DisplayPadNum = DisplayOpt.DisplayPadNum;
|
2011-01-21 14:19:06 +00:00
|
|
|
m_DisplayModEdge = DisplayOpt.DisplayModEdge;
|
|
|
|
m_DisplayModText = DisplayOpt.DisplayModText;
|
2010-03-18 20:35:29 +00:00
|
|
|
GetBoard()->SetElementVisibility(NO_CONNECTS_VISIBLE, nctmp);
|
2013-03-13 19:06:46 +00:00
|
|
|
GetBoard()->SetElementVisibility(ANCHOR_VISIBLE, anchorsTmp);
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
static void Print_Module( EDA_DRAW_PANEL* aPanel, wxDC* aDC, MODULE* aModule,
|
2013-03-30 17:24:04 +00:00
|
|
|
GR_DRAWMODE aDraw_mode, LAYER_MSK aMasklayer,
|
2010-01-09 20:25:39 +00:00
|
|
|
PRINT_PARAMETERS::DrillShapeOptT aDrillShapeOpt )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2012-02-19 04:02:19 +00:00
|
|
|
// Print pads
|
2013-03-18 19:36:07 +00:00
|
|
|
for( D_PAD* pad = aModule->Pads(); pad; pad = pad->Next() )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( !(pad->GetLayerMask() & aMasklayer ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
continue;
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2010-03-29 16:42:03 +00:00
|
|
|
// Manage hole according to the print drill option
|
2012-02-19 04:02:19 +00:00
|
|
|
wxSize drill_tmp = pad->GetDrillSize();
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
switch( aDrillShapeOpt )
|
2010-01-09 20:25:39 +00:00
|
|
|
{
|
2012-02-19 04:02:19 +00:00
|
|
|
case PRINT_PARAMETERS::NO_DRILL_SHAPE:
|
|
|
|
pad->SetDrillSize( wxSize(0,0) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PRINT_PARAMETERS::SMALL_DRILL_SHAPE:
|
|
|
|
{
|
2012-08-03 15:43:15 +00:00
|
|
|
wxSize sz( std::min( SMALL_DRILL, pad->GetDrillSize().x ),
|
|
|
|
std::min( SMALL_DRILL, pad->GetDrillSize().y ) );
|
2012-02-19 04:02:19 +00:00
|
|
|
|
|
|
|
pad->SetDrillSize( sz );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PRINT_PARAMETERS::FULL_DRILL_SHAPE:
|
|
|
|
// Do nothing
|
|
|
|
break;
|
2010-01-09 20:25:39 +00:00
|
|
|
}
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
pad->Draw( aPanel, aDC, aDraw_mode );
|
|
|
|
pad->SetDrillSize( drill_tmp );
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
// Print footprint graphic shapes
|
2013-03-30 17:24:04 +00:00
|
|
|
LAYER_MSK mlayer = GetLayerMask( aModule->GetLayer() );
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2010-01-09 20:25:39 +00:00
|
|
|
if( aModule->GetLayer() == LAYER_N_BACK )
|
2009-12-21 18:51:37 +00:00
|
|
|
mlayer = SILKSCREEN_LAYER_BACK;
|
2010-01-09 20:25:39 +00:00
|
|
|
else if( aModule->GetLayer() == LAYER_N_FRONT )
|
2009-12-21 18:51:37 +00:00
|
|
|
mlayer = SILKSCREEN_LAYER_FRONT;
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2010-01-09 20:25:39 +00:00
|
|
|
if( mlayer & aMasklayer )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2013-03-13 18:53:58 +00:00
|
|
|
if( aModule->Reference().IsVisible() )
|
|
|
|
aModule->Reference().Draw( aPanel, aDC, aDraw_mode );
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2013-03-13 18:53:58 +00:00
|
|
|
if( aModule->Value().IsVisible() )
|
|
|
|
aModule->Value().Draw( aPanel, aDC, aDraw_mode );
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
|
2013-03-18 19:36:07 +00:00
|
|
|
for( EDA_ITEM* item = aModule->GraphicalItems(); item; item = item->Next() )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2012-02-19 04:02:19 +00:00
|
|
|
switch( item->Type() )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_MODULE_TEXT_T:
|
2011-08-26 17:01:17 +00:00
|
|
|
if( ( mlayer & aMasklayer ) == 0 )
|
2007-08-23 04:28:46 +00:00
|
|
|
break;
|
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
TEXTE_MODULE* textMod;
|
|
|
|
textMod = (TEXTE_MODULE*) item;
|
|
|
|
textMod->Draw( aPanel, aDC, aDraw_mode );
|
2007-08-23 04:28:46 +00:00
|
|
|
break;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_MODULE_EDGE_T:
|
2012-02-19 04:02:19 +00:00
|
|
|
{
|
|
|
|
EDGE_MODULE* edge = (EDGE_MODULE*) item;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
if( ( GetLayerMask( edge->GetLayer() ) & aMasklayer ) == 0 )
|
|
|
|
break;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
edge->Draw( aPanel, aDC, aDraw_mode );
|
|
|
|
}
|
2007-08-23 04:28:46 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|