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
|
|
|
/// Values for m_DisplayViaMode member:
|
2011-09-24 18:33:28 +00:00
|
|
|
enum VIA_DISPLAY_MODE_T {
|
2007-08-04 04:42:49 +00:00
|
|
|
VIA_HOLE_NOT_SHOW = 0,
|
|
|
|
VIA_SPECIAL_HOLE_SHOW,
|
|
|
|
ALL_VIA_HOLE_SHOW,
|
|
|
|
OPT_VIA_HOLE_END
|
2007-05-28 18:09:49 +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:
|
2007-08-04 04:42:49 +00:00
|
|
|
bool DisplayPadFill;
|
2009-09-29 04:44:35 +00:00
|
|
|
bool DisplayViaFill;
|
2007-08-04 04:42:49 +00:00
|
|
|
bool DisplayPadNum;
|
|
|
|
bool DisplayPadIsol;
|
|
|
|
|
|
|
|
int DisplayModEdge;
|
|
|
|
int DisplayModText;
|
2011-11-08 16:37:25 +00:00
|
|
|
bool DisplayPcbTrackFill; /* false = sketch , true = filled */
|
2011-09-24 18:33:28 +00:00
|
|
|
|
|
|
|
/// How trace clearances are displayed. @see TRACE_CLEARANCE_DISPLAY_MODE_T.
|
|
|
|
TRACE_CLEARANCE_DISPLAY_MODE_T ShowTrackClearanceMode;
|
|
|
|
|
|
|
|
VIA_DISPLAY_MODE_T m_DisplayViaMode; /* 0 do not show via hole,
|
|
|
|
* 1 show via hole for non default value
|
|
|
|
* 2 show all via hole */
|
2007-08-04 04:42:49 +00:00
|
|
|
|
|
|
|
bool DisplayPolarCood;
|
2008-12-12 21:30:07 +00:00
|
|
|
int DisplayZonesMode;
|
2009-03-26 19:27:50 +00:00
|
|
|
int DisplayNetNamesMode; /* 0 do not show netnames,
|
|
|
|
* 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
|
|
|
|
2007-08-04 04:42:49 +00:00
|
|
|
int DisplayDrawItems;
|
|
|
|
bool ContrastModeDisplay;
|
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_
|