2014-10-22 15:51:34 +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 20:47:37 +00:00
|
|
|
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-10-22 15:51:34 +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 pcbstruct.h
|
2011-09-30 18:15:37 +00:00
|
|
|
* @brief Classes and definitions used in Pcbnew.
|
2011-09-23 13:57:12 +00:00
|
|
|
*/
|
2007-05-28 18:09:49 +00:00
|
|
|
|
2012-04-16 03:18:41 +00:00
|
|
|
#ifndef PCBSTRUCT_H_
|
|
|
|
#define PCBSTRUCT_H_
|
2009-12-07 03:46:13 +00:00
|
|
|
|
2010-01-21 20:53:01 +00:00
|
|
|
|
2011-12-31 05:44:00 +00:00
|
|
|
/**
|
|
|
|
* Enum TRACE_CLEARANCE_DISPLAY_MODE_T
|
|
|
|
* is the set of values for DISPLAY_OPTIONS.ShowTrackClearanceMode parameter option.
|
|
|
|
* This parameter controls how to show tracks and vias clearance area.
|
2009-06-18 20:51:01 +00:00
|
|
|
*/
|
2011-09-24 18:33:28 +00:00
|
|
|
enum TRACE_CLEARANCE_DISPLAY_MODE_T {
|
2009-11-23 20:18:47 +00:00
|
|
|
DO_NOT_SHOW_CLEARANCE = 0, // Do not show clearance areas
|
2011-09-23 13:57:12 +00:00
|
|
|
SHOW_CLEARANCE_NEW_TRACKS, /* Show clearance areas only for new track
|
|
|
|
* during track creation. */
|
|
|
|
SHOW_CLEARANCE_NEW_TRACKS_AND_VIA_AREAS, /* Show clearance areas only for new track
|
|
|
|
* during track creation, and shows a via
|
|
|
|
* clearance area at end of current new
|
|
|
|
* segment (guide to place a new via
|
2009-11-23 20:18:47 +00:00
|
|
|
*/
|
2011-09-30 08:24:10 +00:00
|
|
|
SHOW_CLEARANCE_NEW_AND_EDITED_TRACKS_AND_VIA_AREAS,
|
|
|
|
/* Show clearance for new, moving and
|
|
|
|
* dragging tracks and vias
|
|
|
|
*/
|
2009-11-23 20:18:47 +00:00
|
|
|
SHOW_CLEARANCE_ALWAYS /* Show Always clearance areas
|
|
|
|
* for track and vias
|
|
|
|
*/
|
2009-06-18 20:51:01 +00:00
|
|
|
};
|
2007-05-28 18:09:49 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2011-12-31 05:44:00 +00:00
|
|
|
/**
|
|
|
|
* Class DISPLAY_OPTIONS
|
|
|
|
* handles display options like enable/disable some optional drawings.
|
|
|
|
*/
|
2008-03-01 13:15:41 +00:00
|
|
|
class DISPLAY_OPTIONS
|
2007-05-28 18:09:49 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-01-10 10:27:49 +00:00
|
|
|
bool m_DisplayPadFill;
|
|
|
|
bool m_DisplayViaFill;
|
|
|
|
bool m_DisplayPadNum; // show pads numbers
|
|
|
|
bool m_DisplayPadIsol;
|
2015-02-02 08:06:39 +00:00
|
|
|
bool m_DisplayModEdgeFill; // How to display module drawings ( sketch/ filled )
|
|
|
|
bool m_DisplayModTextFill; // How to display module texts ( sketch/ filled )
|
2015-01-10 10:27:49 +00:00
|
|
|
bool m_DisplayPcbTrackFill; // false : tracks are show in sketch mode, true = filled.
|
2011-09-24 18:33:28 +00:00
|
|
|
|
|
|
|
/// How trace clearances are displayed. @see TRACE_CLEARANCE_DISPLAY_MODE_T.
|
2015-01-10 10:27:49 +00:00
|
|
|
TRACE_CLEARANCE_DISPLAY_MODE_T m_ShowTrackClearanceMode;
|
2011-09-24 18:33:28 +00:00
|
|
|
|
2015-01-10 10:27:49 +00:00
|
|
|
int m_DisplayZonesMode;
|
|
|
|
int m_DisplayNetNamesMode; /* 0 do not show netnames,
|
2009-03-26 19:27:50 +00:00
|
|
|
* 1 show netnames on pads
|
|
|
|
* 2 show netnames on tracks
|
|
|
|
* 3 show netnames on tracks and pads
|
2009-05-21 17:42:42 +00:00
|
|
|
*/
|
2009-03-26 19:27:50 +00:00
|
|
|
|
2015-02-02 08:06:39 +00:00
|
|
|
bool m_DisplayDrawItemsFill; // How to display graphic items on board ( sketch/ filled )
|
2015-01-10 10:27:49 +00:00
|
|
|
bool m_ContrastModeDisplay;
|
|
|
|
int m_MaxLinksShowed; // in track creation: number of hairwires shown
|
|
|
|
bool m_Show_Module_Ratsnest; // When moving a footprint: allows displaying a ratsnest
|
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
|
|
|
};
|
|
|
|
|
2012-04-16 03:18:41 +00:00
|
|
|
#endif // PCBSTRUCT_H_
|