2011-09-23 13:57:12 +00:00
|
|
|
/**
|
|
|
|
* @file pcbnew.h
|
|
|
|
*/
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
#ifndef PCBNEW_H
|
|
|
|
#define PCBNEW_H
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-05-11 09:02:35 +00:00
|
|
|
#include <fctsys.h> // wxWidgets include.
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <base_struct.h> // IS_DRAGGED and IN_EDIT definitions.
|
2012-04-11 09:47:57 +00:00
|
|
|
#include <convert_to_biu.h> // to define DMils2iu() conversion function
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
// Arcs are approximated by segments: define the number of segments per 360 deg (KiCad uses 0.1
|
2011-09-23 13:57:12 +00:00
|
|
|
// deg approximation). Be aware 3600 / ARC_APPROX_SEGMENTS_COUNT_LOW_DEF is an integer.
|
|
|
|
#define ARC_APPROX_SEGMENTS_COUNT_LOW_DEF 16
|
2010-01-12 13:15:13 +00:00
|
|
|
#define ARC_APPROX_SEGMENTS_COUNT_HIGHT_DEF 32
|
|
|
|
|
2011-09-23 13:57:12 +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
|
|
|
|
2011-09-23 13:57:12 +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
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
#define START 0 /* Flag used in locate routines */
|
2007-08-04 04:40:07 +00:00
|
|
|
#define END 1
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
#define DIM_ANCRE_MODULE 3 /* Anchor size (footprint center) */
|
|
|
|
#define DIM_ANCRE_TEXTE 2 /* Anchor size (Text center) */
|
2008-03-24 20:54:45 +00:00
|
|
|
|
2012-04-08 23:32:32 +00:00
|
|
|
|
|
|
|
#define TEXTS_MIN_SIZE DMils2iu( 50 ) ///< Minimum text size in Pcbnew units value (50 * 0.0001 mils)
|
|
|
|
#define TEXTS_MAX_SIZE DMils2iu( 10000 ) ///< Maximum text size in Pcbnew units value (1 inch) )
|
|
|
|
#define TEXTS_MAX_WIDTH DMils2iu( 5000 ) ///< Maximum text 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
|
|
|
|
2012-03-08 17:47:23 +00:00
|
|
|
/* Name of the document footprint list
|
|
|
|
* usually located in share/modules/footprints_doc
|
|
|
|
* this is of the responsibility to users to create this file
|
|
|
|
* if they want to have a list of footprints
|
|
|
|
* default is "footprints_doc/footprints.pdf"
|
|
|
|
*/
|
|
|
|
extern wxString g_DocModulesFileName;
|
|
|
|
|
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_Raccord_45_Auto;
|
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;
|
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
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
extern int g_MaxLinksShowed; // Max count links showed in routing
|
2009-06-18 17:32:27 +00:00
|
|
|
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
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
extern wxPoint g_Offset_Module; /* Offset trace when moving footprint. */
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-09-27 20:43:18 +00:00
|
|
|
extern wxArrayString g_LibraryNames; ///< List of footprint library file names to load.
|
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 */
|