2007-08-04 04:42:49 +00:00
|
|
|
/**************************************************************/
|
2008-01-26 02:02:27 +00:00
|
|
|
/* pcbstruct.h : definition des structures de donnees type PCB */
|
2007-08-04 04:42:49 +00:00
|
|
|
/**************************************************************/
|
2007-05-28 18:09:49 +00:00
|
|
|
|
|
|
|
#ifndef PCBSTRUCT_H
|
|
|
|
#define PCBSTRUCT_H
|
|
|
|
|
|
|
|
#include "base_struct.h"
|
2008-04-14 19:22:48 +00:00
|
|
|
#include "board_item_struct.h"
|
2007-05-28 18:09:49 +00:00
|
|
|
|
|
|
|
// Definitions relatives aux libariries
|
|
|
|
#define ENTETE_LIBRAIRIE "PCBNEW-LibModule-V1"
|
2007-08-04 04:42:49 +00:00
|
|
|
#define ENTETE_LIBDOC "PCBNEW-LibDoc----V1"
|
|
|
|
#define L_ENTETE_LIB 18
|
|
|
|
#define EXT_CMP wxT( ".emp" )
|
|
|
|
#define EXT_CMP_MASK wxT( "*.emp" )
|
|
|
|
#define EXT_DOC wxT( ".mdc" )
|
2007-05-28 18:09:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Bits indicateurs du membre .Status, pour pistes, modules... */
|
2007-08-04 04:42:49 +00:00
|
|
|
#define FLAG1 0x2000 /* flag libre pour calculs locaux */
|
|
|
|
#define FLAG0 0x1000 /* flag libre pour calculs locaux */
|
|
|
|
#define BEGIN_ONPAD 0x800 /* flag indiquant un debut de segment sur pad */
|
|
|
|
#define END_ONPAD 0x400 /* flag indiquant une fin de segment sur pad */
|
|
|
|
#define BUSY 0x0200 /* flag indiquant que la structure a deja
|
|
|
|
* ete examinee, dans certaines routines */
|
|
|
|
#define DELETED 0x0100 /* Bit flag de Status pour structures effacee
|
|
|
|
* et mises en chaine "DELETED" */
|
|
|
|
#define NO_TRACE 0x80 /* l'element ne doit pas etre affiche */
|
|
|
|
#define SURBRILL 0x20 /* element en surbrillance */
|
|
|
|
#define DRAG 0x10 /* segment en mode drag */
|
|
|
|
#define EDIT 0x8 /* element en cours d'edition */
|
|
|
|
#define SEGM_FIXE 0x04 /* segment FIXE ( pas d'effacement global ) */
|
|
|
|
#define SEGM_AR 0x02 /* segment Auto_Route */
|
|
|
|
#define CHAIN 0x01 /* segment marque */
|
|
|
|
|
|
|
|
|
2007-10-07 18:24:15 +00:00
|
|
|
/* Layer identification (layer number) */
|
2007-11-01 05:27:31 +00:00
|
|
|
#define FIRST_COPPER_LAYER 0
|
2007-10-07 18:24:15 +00:00
|
|
|
#define COPPER_LAYER_N 0
|
2007-08-04 04:42:49 +00:00
|
|
|
#define LAYER_N_2 1 /* Numero layer 2 */
|
|
|
|
#define LAYER_N_3 2 /* Numero layer 3 */
|
|
|
|
#define LAYER_N_4 3 /* Numero layer 4 */
|
|
|
|
#define LAYER_N_5 4 /* Numero layer 5 */
|
|
|
|
#define LAYER_N_6 5 /* Numero layer 6 */
|
|
|
|
#define LAYER_N_7 6 /* Numero layer 7 */
|
|
|
|
#define LAYER_N_8 7 /* Numero layer 8 */
|
|
|
|
#define LAYER_N_9 8 /* Numero layer 9 */
|
|
|
|
#define LAYER_N_10 9 /* Numero layer 10 */
|
|
|
|
#define LAYER_N_11 10 /* Numero layer 11 */
|
|
|
|
#define LAYER_N_12 11 /* Numero layer 12 */
|
|
|
|
#define LAYER_N_13 12 /* Numero layer 13 */
|
|
|
|
#define LAYER_N_14 13 /* Numero layer 14 */
|
|
|
|
#define LAYER_N_15 14 /* Numero layer 15 */
|
|
|
|
#define LAYER_CMP_N 15
|
|
|
|
#define CMP_N 15
|
2007-11-01 05:27:31 +00:00
|
|
|
#define LAST_COPPER_LAYER 15
|
|
|
|
#define NB_COPPER_LAYERS (LAST_COPPER_LAYER + 1)
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2007-05-28 18:09:49 +00:00
|
|
|
#define FIRST_NO_COPPER_LAYER 16
|
2007-08-04 04:42:49 +00:00
|
|
|
#define ADHESIVE_N_CU 16
|
|
|
|
#define ADHESIVE_N_CMP 17
|
|
|
|
#define SOLDERPASTE_N_CU 18
|
|
|
|
#define SOLDERPASTE_N_CMP 19
|
|
|
|
#define SILKSCREEN_N_CU 20
|
|
|
|
#define SILKSCREEN_N_CMP 21
|
|
|
|
#define SOLDERMASK_N_CU 22
|
|
|
|
#define SOLDERMASK_N_CMP 23
|
|
|
|
#define DRAW_N 24
|
|
|
|
#define COMMENT_N 25
|
|
|
|
#define ECO1_N 26
|
|
|
|
#define ECO2_N 27
|
|
|
|
#define EDGE_N 28
|
|
|
|
#define LAST_NO_COPPER_LAYER 28
|
2007-10-07 03:08:24 +00:00
|
|
|
#define NB_LAYERS (LAST_NO_COPPER_LAYER + 1)
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2007-08-04 04:42:49 +00:00
|
|
|
#define LAYER_COUNT 32
|
2007-05-28 18:09:49 +00:00
|
|
|
|
2007-10-01 13:51:07 +00:00
|
|
|
|
|
|
|
/*************************************/
|
|
|
|
/* constantes de gestion des couches */
|
|
|
|
/*************************************/
|
2008-01-28 18:44:14 +00:00
|
|
|
#define CUIVRE_LAYER (1 << COPPER_LAYER_N) ///< bit mask for copper layer
|
|
|
|
#define LAYER_2 (1 << LAYER_N_2) ///< bit mask for layer 2
|
|
|
|
#define LAYER_3 (1 << LAYER_N_3) ///< bit mask for layer 3
|
|
|
|
#define LAYER_4 (1 << LAYER_N_4) ///< bit mask for layer 4
|
|
|
|
#define LAYER_5 (1 << LAYER_N_5) ///< bit mask for layer 5
|
|
|
|
#define LAYER_6 (1 << LAYER_N_6) ///< bit mask for layer 6
|
|
|
|
#define LAYER_7 (1 << LAYER_N_7) ///< bit mask for layer 7
|
|
|
|
#define LAYER_8 (1 << LAYER_N_8) ///< bit mask for layer 8
|
|
|
|
#define LAYER_9 (1 << LAYER_N_9) ///< bit mask for layer 9
|
|
|
|
#define LAYER_10 (1 << LAYER_N_10) ///< bit mask for layer 10
|
|
|
|
#define LAYER_11 (1 << LAYER_N_11) ///< bit mask for layer 11
|
|
|
|
#define LAYER_12 (1 << LAYER_N_12) ///< bit mask for layer 12
|
|
|
|
#define LAYER_13 (1 << LAYER_N_13) ///< bit mask for layer 13
|
|
|
|
#define LAYER_14 (1 << LAYER_N_14) ///< bit mask for layer 14
|
|
|
|
#define LAYER_15 (1 << LAYER_N_15) ///< bit mask for layer 15
|
|
|
|
#define CMP_LAYER (1 << LAYER_CMP_N) ///< bit mask for component layer
|
|
|
|
#define ADHESIVE_LAYER_CU (1 << ADHESIVE_N_CU)
|
|
|
|
#define ADHESIVE_LAYER_CMP (1 << ADHESIVE_N_CMP)
|
|
|
|
#define SOLDERPASTE_LAYER_CU (1 << SOLDERPASTE_N_CU)
|
|
|
|
#define SOLDERPASTE_LAYER_CMP (1 << SOLDERPASTE_N_CMP)
|
|
|
|
#define SILKSCREEN_LAYER_CU (1 << SILKSCREEN_N_CU)
|
|
|
|
#define SILKSCREEN_LAYER_CMP (1 << SILKSCREEN_N_CMP)
|
|
|
|
#define SOLDERMASK_LAYER_CU (1 << SOLDERMASK_N_CU)
|
|
|
|
#define SOLDERMASK_LAYER_CMP (1 << SOLDERMASK_N_CMP)
|
|
|
|
#define DRAW_LAYER (1 << DRAW_N)
|
|
|
|
#define COMMENT_LAYER (1 << COMMENT_N)
|
|
|
|
#define ECO1_LAYER (1 << ECO1_N)
|
|
|
|
#define ECO2_LAYER (1 << ECO2_N)
|
|
|
|
#define EDGE_LAYER (1 << EDGE_N)
|
|
|
|
|
2008-01-31 20:53:44 +00:00
|
|
|
#define FIRST_NON_COPPER_LAYER ADHESIVE_N_CU
|
|
|
|
#define LAST_NON_COPPER_LAYER EDGE_N
|
|
|
|
|
2007-10-01 13:51:07 +00:00
|
|
|
// extra bits 0xE0000000
|
|
|
|
/* masques generaux : */
|
|
|
|
#define ALL_LAYERS 0x1FFFFFFF
|
|
|
|
#define ALL_NO_CU_LAYERS 0x1FFF0000
|
|
|
|
#define ALL_CU_LAYERS 0x0000FFFF
|
|
|
|
#define INTERNAL_LAYERS 0x00007FFE /* Bits layers internes */
|
|
|
|
#define EXTERNAL_LAYERS 0x00008001
|
|
|
|
|
2007-05-28 18:09:49 +00:00
|
|
|
/* Forward declaration */
|
|
|
|
class EQUIPOT;
|
2007-11-27 22:49:35 +00:00
|
|
|
class MARKER;
|
2007-05-28 18:09:49 +00:00
|
|
|
struct CHEVELU;
|
2008-01-28 18:44:14 +00:00
|
|
|
|
2008-01-01 11:46:47 +00:00
|
|
|
//class Ki_PageDescr;
|
|
|
|
//class DrawBlockStruct;
|
|
|
|
|
|
|
|
|
|
|
|
/* main window classes : */
|
|
|
|
#include "wxPcbStruct.h"
|
2007-05-28 18:09:49 +00:00
|
|
|
|
2007-12-09 12:55:53 +00:00
|
|
|
/* Class to handle a board */
|
|
|
|
#include "class_board.h"
|
|
|
|
|
2007-05-28 18:09:49 +00:00
|
|
|
// Class for handle current printed board design settings
|
2008-01-26 02:02:27 +00:00
|
|
|
#define HISTORY_NUMBER 8
|
2007-05-28 18:09:49 +00:00
|
|
|
class EDA_BoardDesignSettings
|
|
|
|
{
|
|
|
|
public:
|
2007-08-04 04:42:49 +00:00
|
|
|
int m_CopperLayerCount; // Number of copper layers for this design
|
|
|
|
int m_ViaDrill; // via drill (for the entire board)
|
2008-01-28 18:44:14 +00:00
|
|
|
int m_ViaDrillCustomValue; // via drill for vias which must have a defined drill value
|
2008-01-12 20:31:56 +00:00
|
|
|
int m_MicroViaDrill; // micro via drill (for the entire board)
|
2007-08-04 04:42:49 +00:00
|
|
|
int m_CurrentViaSize; // Current via size
|
2008-01-12 20:31:56 +00:00
|
|
|
int m_CurrentMicroViaSize; // Current micro via size
|
2008-01-26 02:02:27 +00:00
|
|
|
bool m_MicroViasAllowed; // true to allow micro vias
|
|
|
|
int m_ViaSizeHistory[HISTORY_NUMBER]; // Last HISTORY_NUMBER used via sizes
|
2008-01-28 18:44:14 +00:00
|
|
|
int m_CurrentViaType; // via type (VIA_BLIND_BURIED, VIA_TROUGHT VIA_MICROVIA)
|
2007-08-04 04:42:49 +00:00
|
|
|
int m_CurrentTrackWidth; // current track width
|
2008-01-28 18:44:14 +00:00
|
|
|
bool m_UseConnectedTrackWidth; // if true, when creating a new track starting on an existing track, use this track width
|
2008-01-26 02:02:27 +00:00
|
|
|
int m_TrackWidthHistory[HISTORY_NUMBER]; // Last HISTORY_NUMBER used track widths
|
2007-08-04 04:42:49 +00:00
|
|
|
int m_DrawSegmentWidth; // current graphic line width (not EDGE layer)
|
|
|
|
int m_EdgeSegmentWidth; // current graphic line width (EDGE layer only)
|
|
|
|
int m_PcbTextWidth; // current Pcb (not module) Text width
|
|
|
|
wxSize m_PcbTextSize; // current Pcb (not module) Text size
|
|
|
|
int m_TrackClearence; // track to track and track to pads clearance
|
|
|
|
int m_ZoneClearence; // zone to track and zone to pads clearance
|
|
|
|
int m_MaskMargin; // Solder mask margin
|
2008-01-28 18:44:14 +00:00
|
|
|
|
2007-08-04 04:42:49 +00:00
|
|
|
// Color options for screen display of the Printed Board:
|
|
|
|
int m_PcbGridColor; // Grid color
|
2008-03-04 04:22:27 +00:00
|
|
|
|
2007-08-04 04:42:49 +00:00
|
|
|
int m_LayerColor[32]; // Layer colors (tracks and graphic items)
|
2008-03-04 04:22:27 +00:00
|
|
|
|
2007-08-04 04:42:49 +00:00
|
|
|
int m_ViaColor[4]; // Via color (depending on is type)
|
|
|
|
int m_ModuleTextCMPColor; // Text module color for modules on the COMPONENT layer
|
|
|
|
int m_ModuleTextCUColor; // Text module color for modules on the COPPER layer
|
|
|
|
int m_ModuleTextNOVColor; // Text module color for "invisible" texts (must be BLACK if really not displayed)
|
|
|
|
int m_AnchorColor; // Anchor color for modules and texts
|
2008-01-28 18:44:14 +00:00
|
|
|
|
2007-08-30 03:53:26 +00:00
|
|
|
int m_PadCUColor; // Pad color for the COPPER side of the pad
|
|
|
|
int m_PadCMPColor; // Pad color for the COMPONENT side of the pad
|
2007-08-04 04:42:49 +00:00
|
|
|
// Pad color for the pads of both sides is m_PadCUColor OR m_PadCMPColor (in terms of colors)
|
2008-01-28 18:44:14 +00:00
|
|
|
|
2007-08-04 04:42:49 +00:00
|
|
|
int m_RatsnestColor; // Ratsnest color
|
2007-05-28 18:09:49 +00:00
|
|
|
|
|
|
|
public:
|
2007-08-30 22:20:52 +00:00
|
|
|
EDA_BoardDesignSettings();
|
2008-01-28 18:44:14 +00:00
|
|
|
|
2007-08-24 03:40:04 +00:00
|
|
|
/**
|
|
|
|
* Function GetVisibleLayers
|
|
|
|
* returns a bit-map of all the layers that are visible.
|
|
|
|
* @return int - the visible layers in bit-mapped form.
|
|
|
|
*/
|
2007-08-30 22:20:52 +00:00
|
|
|
int GetVisibleLayers() const;
|
2007-05-28 18:09:49 +00:00
|
|
|
};
|
|
|
|
|
2007-08-06 02:02:39 +00:00
|
|
|
|
2007-05-28 18:09:49 +00:00
|
|
|
// Values for m_DisplayViaMode member:
|
|
|
|
enum DisplayViaMode {
|
2007-08-04 04:42:49 +00:00
|
|
|
VIA_HOLE_NOT_SHOW = 0,
|
|
|
|
VIA_SPECIAL_HOLE_SHOW,
|
|
|
|
ALL_VIA_HOLE_SHOW,
|
|
|
|
OPT_VIA_HOLE_END
|
2007-05-28 18:09:49 +00:00
|
|
|
};
|
|
|
|
|
2007-12-09 12:55:53 +00:00
|
|
|
/* Handle info to display a board */
|
2007-05-28 18:09:49 +00:00
|
|
|
class PCB_SCREEN : public BASE_SCREEN
|
|
|
|
{
|
|
|
|
public:
|
2007-08-04 04:42:49 +00:00
|
|
|
int m_Active_Layer; /* ref couche active */
|
|
|
|
int m_Route_Layer_TOP; /* ref couches actives */
|
|
|
|
int m_Route_Layer_BOTTOM; /* pour placement vias et routage 2 couches */
|
2007-05-28 18:09:49 +00:00
|
|
|
|
|
|
|
public:
|
2007-08-04 04:42:49 +00:00
|
|
|
PCB_SCREEN( int idscreen );
|
2007-08-30 22:20:52 +00:00
|
|
|
~PCB_SCREEN();
|
2008-01-28 18:44:14 +00:00
|
|
|
|
2007-08-30 22:20:52 +00:00
|
|
|
PCB_SCREEN* Next() { return (PCB_SCREEN*) Pnext; }
|
2007-09-06 04:34:03 +00:00
|
|
|
void Init();
|
|
|
|
void SetNextZoom();
|
|
|
|
void SetPreviousZoom();
|
|
|
|
void SetLastZoom();
|
2008-01-28 18:44:14 +00:00
|
|
|
|
2007-09-06 04:34:03 +00:00
|
|
|
/**
|
|
|
|
* Function GetCurItem
|
|
|
|
* returns the currently selected BOARD_ITEM, overriding BASE_SCREEN::GetCurItem().
|
|
|
|
* @return BOARD_ITEM* - the one selected, or NULL.
|
|
|
|
*/
|
|
|
|
BOARD_ITEM* GetCurItem() const { return (BOARD_ITEM*) BASE_SCREEN::GetCurItem(); }
|
2008-01-12 20:31:56 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
/**
|
|
|
|
* Function SetCurItem
|
|
|
|
* sets the currently selected object, m_CurrentItem.
|
|
|
|
* @param aItem Any object derived from BOARD_ITEM
|
|
|
|
*/
|
|
|
|
void SetCurItem( BOARD_ITEM* aItem ) { BASE_SCREEN::SetCurItem( aItem ); }
|
|
|
|
|
|
|
|
|
2008-01-26 02:02:27 +00:00
|
|
|
/* Return true if a microvia can be put on board
|
|
|
|
* A microvia ia a small via restricted to 2 near neighbour layers
|
2008-01-12 20:31:56 +00:00
|
|
|
* because its is hole is made by laser which can penetrate only one layer
|
2008-01-26 02:02:27 +00:00
|
|
|
* It is mainly used to connect BGA to the first inner layer
|
|
|
|
* And it is allowed from an external layer to the first inner layer
|
2008-01-12 20:31:56 +00:00
|
|
|
*/
|
2008-01-28 18:44:14 +00:00
|
|
|
bool IsMicroViaAcceptable( void );
|
2007-05-28 18:09:49 +00:00
|
|
|
};
|
|
|
|
|
2007-10-26 06:08:19 +00:00
|
|
|
/**********************************/
|
|
|
|
/* Module (Footprint) description */
|
|
|
|
/**********************************/
|
|
|
|
|
2008-01-28 18:44:14 +00:00
|
|
|
#include "class_pad.h" // class for pads
|
|
|
|
#include "class_edge_mod.h" // Class for footprint graphic elements
|
|
|
|
#include "class_text_mod.h" // Class for footprint fields
|
|
|
|
#include "class_module.h" // Class for the footprint
|
2007-05-28 18:09:49 +00:00
|
|
|
#include "class_equipot.h"
|
|
|
|
|
|
|
|
|
2007-08-04 04:42:49 +00:00
|
|
|
/***********************************/
|
|
|
|
/* Description des elements du PCB */
|
|
|
|
/***********************************/
|
2007-05-28 18:09:49 +00:00
|
|
|
|
2008-01-14 19:24:41 +00:00
|
|
|
#include "class_drawsegment.h"
|
2007-05-28 18:09:49 +00:00
|
|
|
#include "class_pcb_text.h"
|
|
|
|
#include "class_cotation.h"
|
|
|
|
#include "class_mire.h"
|
|
|
|
#include "class_track.h"
|
2007-10-26 06:08:19 +00:00
|
|
|
#include "class_marker.h"
|
2007-12-09 12:55:53 +00:00
|
|
|
#include "class_zone.h"
|
2007-05-28 18:09:49 +00:00
|
|
|
|
|
|
|
|
2008-03-01 13:15:41 +00:00
|
|
|
class DISPLAY_OPTIONS
|
2007-05-28 18:09:49 +00:00
|
|
|
{
|
|
|
|
public:
|
2007-08-04 04:42:49 +00:00
|
|
|
bool DisplayPadFill;
|
|
|
|
bool DisplayPadNum;
|
|
|
|
bool DisplayPadNoConn;
|
|
|
|
bool DisplayPadIsol;
|
|
|
|
|
|
|
|
int DisplayModEdge;
|
|
|
|
int DisplayModText;
|
|
|
|
bool DisplayPcbTrackFill; /* FALSE = sketch , TRUE = filled */
|
|
|
|
bool DisplayTrackIsol;
|
2008-01-28 18:44:14 +00:00
|
|
|
|
2007-08-04 04:42:49 +00:00
|
|
|
int m_DisplayViaMode; /* 0 do not show via hole,
|
2007-08-08 03:50:44 +00:00
|
|
|
* 1 show via hole for non default value
|
|
|
|
* 2 show all via hole */
|
2007-08-04 04:42:49 +00:00
|
|
|
|
|
|
|
bool DisplayPolarCood;
|
|
|
|
bool DisplayZones;
|
|
|
|
bool Show_Modules_Cmp;
|
|
|
|
bool Show_Modules_Cu;
|
|
|
|
|
|
|
|
int DisplayDrawItems;
|
|
|
|
bool ContrastModeDisplay;
|
2007-05-28 18:09:49 +00:00
|
|
|
|
|
|
|
public:
|
2007-08-30 22:20:52 +00:00
|
|
|
DISPLAY_OPTIONS();
|
2007-05-28 18:09:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* PCBSTRUCT_H */
|