2007-08-04 04:40:07 +00:00
|
|
|
/**************************************/
|
2007-10-29 15:51:48 +00:00
|
|
|
/* PCBNEW.H : headers */
|
2007-08-04 04:40:07 +00:00
|
|
|
/**************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
#ifndef PCBNEW_H
|
|
|
|
#define PCBNEW_H
|
|
|
|
|
|
|
|
#include "pcbstruct.h"
|
2009-04-05 20:49:15 +00:00
|
|
|
#include "pcbcommon.h"
|
2010-01-27 20:07:50 +00:00
|
|
|
#include "class_board_design_settings.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-04 04:40:07 +00:00
|
|
|
#define U_PCB (PCB_INTERNAL_UNIT / EESCHEMA_INTERNAL_UNIT)
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2010-01-12 13:15:13 +00:00
|
|
|
// Arcs are appromed by segments: define the number of segments per 360 deg (kicad use 0.1 deg approx:
|
|
|
|
#define ARC_APPROX_SEGMENTS_COUNT_LOW_DEF 16 // be aware 3600/ARC_APPROX_SEGMENTS_COUNT_LOW_DEF is an integer
|
|
|
|
#define ARC_APPROX_SEGMENTS_COUNT_HIGHT_DEF 32
|
|
|
|
|
2007-10-29 15:51:48 +00:00
|
|
|
/* Flag used in locate functions
|
|
|
|
* the locate ref point is the on grid cursor or the off grid mouse cursor */
|
2009-06-18 17:32:27 +00:00
|
|
|
#define CURSEUR_ON_GRILLE (0 << 0)
|
|
|
|
#define CURSEUR_OFF_GRILLE (1 << 0)
|
2007-06-25 08:05:45 +00:00
|
|
|
|
2009-06-18 17:32:27 +00:00
|
|
|
#define IGNORE_LOCKED (1 << 1) ///< if module is locked, do not select for single module operation
|
|
|
|
#define MATCH_LAYER (1 << 2) ///< if module not on current layer, do not select
|
|
|
|
#define VISIBLE_ONLY (1 << 3) ///< if module not on a visible layer, do not select
|
2007-06-15 16:08:55 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-29 15:51:48 +00:00
|
|
|
#define START 0 /* Flag used in locale routines */
|
2007-08-04 04:40:07 +00:00
|
|
|
#define END 1
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-06-18 17:32:27 +00:00
|
|
|
#define DIM_ANCRE_MODULE 3 /* Anchor size (footprint centre) */
|
|
|
|
#define DIM_ANCRE_TEXTE 2 /* Anchor size (Text centre) */
|
2008-03-24 20:54:45 +00:00
|
|
|
|
2009-06-18 17:32:27 +00:00
|
|
|
#define TEXTS_MIN_SIZE 50 // Min size in pcbnew units value (50 * 0.0001 mils)
|
2011-02-13 17:53:48 +00:00
|
|
|
#define TEXTS_MAX_SIZE 10000 // Min size in pcbnew units value (1 inch) )
|
2009-06-18 17:32:27 +00:00
|
|
|
#define TEXTS_MAX_WIDTH 5000 // Max width in pcbnew units value (0.5 inches)
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-02-13 17:53:48 +00:00
|
|
|
/* Flag to force the SKETCH mode to display items (.m_Flags member) */
|
|
|
|
#define FORCE_SKETCH ( IS_DRAGGED | IN_EDIT )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
/* variables */
|
2009-06-18 17:32:27 +00:00
|
|
|
extern bool Drc_On;
|
|
|
|
extern bool g_AutoDeleteOldTrack;
|
|
|
|
extern bool g_Drag_Pistes_On;
|
|
|
|
extern bool g_Show_Module_Ratsnest;
|
|
|
|
extern bool g_Show_Pads_Module_in_Move;
|
|
|
|
extern bool g_Raccord_45_Auto;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-04-19 15:03:48 +00:00
|
|
|
extern const wxString g_FootprintLibFileWildcard; // Wildcard for footprint libraries filesnames
|
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2010-05-01 09:22:12 +00:00
|
|
|
extern bool g_Track_45_Only_Allowed;
|
2010-06-16 15:01:45 +00:00
|
|
|
extern bool g_Alternate_Track_Posture;
|
2009-06-18 17:32:27 +00:00
|
|
|
extern bool Segments_45_Only;
|
|
|
|
extern wxString g_Shapes3DExtBuffer;
|
|
|
|
extern wxString g_DocModulesFileName;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-29 15:51:48 +00:00
|
|
|
/* Variables used in footprint handling */
|
2010-07-20 18:11:34 +00:00
|
|
|
extern wxSize g_ModuleTextSize; /* Default footprint texts size */
|
|
|
|
extern int g_ModuleTextWidth;
|
|
|
|
extern int g_ModuleSegmentWidth;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
/* Layer pair for auto routing and switch layers by hotkey */
|
2009-06-18 17:32:27 +00:00
|
|
|
extern int Route_Layer_TOP;
|
|
|
|
extern int Route_Layer_BOTTOM;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-06-18 17:32:27 +00:00
|
|
|
extern int g_MaxLinksShowed; // Max count links showed in routing
|
|
|
|
extern bool g_TwoSegmentTrackBuild;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-06-18 17:32:27 +00:00
|
|
|
extern int g_MagneticPadOption;
|
|
|
|
extern int g_MagneticTrackOption;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-06-18 17:32:27 +00:00
|
|
|
extern wxPoint g_Offset_Module; /* Offset de trace du modul en depl */
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
enum MagneticPadOptionValues {
|
2007-08-04 04:40:07 +00:00
|
|
|
no_effect,
|
|
|
|
capture_cursor_in_track_tool,
|
|
|
|
capture_always
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
2007-08-04 04:40:07 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#endif /* PCBNEW_H */
|