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
|
2019-03-31 09:37:57 +00:00
|
|
|
* Copyright (C) 1992-2019 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
|
|
|
|
|
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.
|
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
|
|
|
|
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
|
|
|
|
|
|
|
|
2014-08-24 07:05:07 +00:00
|
|
|
/// List of segments of the trace currently being drawn.
|
|
|
|
class TRACK;
|
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
|