2014-10-23 17:53:38 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2016-05-10 21:37:51 +00:00
|
|
|
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-10-23 17:53:38 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
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.
|
2014-08-24 07:05:07 +00:00
|
|
|
#include <dlist.h>
|
2016-06-05 11:49:25 +00:00
|
|
|
#include <convert_to_biu.h> // to define Mils2iu() conversion function
|
2013-03-30 17:24:04 +00:00
|
|
|
#include <layers_id_colors_and_visibility.h>
|
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
|
2019-01-04 01:07:51 +00:00
|
|
|
#define ARC_APPROX_SEGMENTS_COUNT_HIGH_DEF 32
|
2010-01-12 13:15:13 +00:00
|
|
|
|
2018-03-22 18:02:45 +00:00
|
|
|
// The new absolute-error-based algorithm uses the stored segment count as a hint on whether
|
|
|
|
// to use ARC_HIGH_DEF or ARC_LOW_DEF. This defines the crossover point.
|
|
|
|
#define SEGMENT_COUNT_CROSSOVER 24
|
|
|
|
|
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
|
|
|
|
2014-04-25 17:13:33 +00:00
|
|
|
/// Flag used in locate routines (from which endpoint work)
|
|
|
|
enum ENDPOINT_T {
|
2014-06-24 16:17:18 +00:00
|
|
|
ENDPOINT_START = 0,
|
2014-04-25 17:13:33 +00:00
|
|
|
ENDPOINT_END = 1
|
|
|
|
};
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2013-04-09 16:00:46 +00:00
|
|
|
#define DIM_ANCRE_MODULE 3 // Anchor size (footprint center)
|
2008-03-24 20:54:45 +00:00
|
|
|
|
2012-04-08 23:32:32 +00:00
|
|
|
|
2018-09-25 19:23:54 +00:00
|
|
|
// These are only here for algorithmic safety, not to tell the user what to do
|
|
|
|
#define TEXTS_MIN_SIZE Mils2iu( 1 ) ///< Minimum text size in internal units (1 mil)
|
|
|
|
#define TEXTS_MAX_SIZE Mils2iu( 10000 ) ///< Maximum text size in internal units (10 inches)
|
|
|
|
#define TEXTS_MAX_WIDTH Mils2iu( 10000 ) ///< Maximum text width in internal units (10 inches)
|
2012-04-08 23:32:32 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
// Flag to force the SKETCH mode to display items (.m_Flags member)
|
2011-02-13 17:53:48 +00:00
|
|
|
#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;
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
// variables
|
|
|
|
extern bool g_Raccord_45_Auto;
|
|
|
|
extern bool g_Alternate_Track_Posture;
|
|
|
|
// Layer pair for auto routing and switch layers by hotkey
|
2017-03-13 03:19:33 +00:00
|
|
|
extern PCB_LAYER_ID g_Route_Layer_TOP;
|
|
|
|
extern PCB_LAYER_ID g_Route_Layer_BOTTOM;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
extern wxPoint g_Offset_Module; // Offset trace when moving footprint.
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2014-08-24 07:05:07 +00:00
|
|
|
/// List of segments of the trace currently being drawn.
|
|
|
|
class TRACK;
|
|
|
|
extern DLIST<TRACK> g_CurrentTrackList;
|
|
|
|
#define g_CurrentTrackSegment g_CurrentTrackList.GetLast() ///< most recently created segment
|
|
|
|
#define g_FirstTrackSegment g_CurrentTrackList.GetFirst() ///< first segment created
|
|
|
|
|
|
|
|
|
2007-08-04 04:40:07 +00:00
|
|
|
|
2017-01-29 11:25:19 +00:00
|
|
|
/**
|
|
|
|
* Helper function PythonPluginsReloadBase
|
|
|
|
* Reload Python plugins if they are newer than
|
|
|
|
* the already loaded, and load new plugins if any
|
|
|
|
* It calls the LoadPlugins(bundlepath) Python method
|
|
|
|
* see kicadplugins.i
|
|
|
|
*/
|
|
|
|
void PythonPluginsReloadBase();
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
#endif // PCBNEW_H
|