2012-01-14 19:50:32 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
|
|
|
* Copyright (C) 1992-2011 KiCad Developers, see AUTHORS.txt for contributors.
|
|
|
|
*
|
|
|
|
* 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-14 20:04:58 +00:00
|
|
|
/**
|
|
|
|
* @file class_track.h
|
|
|
|
* @brief Definitions for tracks, vias and zones.
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#ifndef CLASS_TRACK_H
|
|
|
|
#define CLASS_TRACK_H
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_board_item.h>
|
|
|
|
#include <class_board_connected_item.h>
|
|
|
|
#include <PolyLine.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
class TRACK;
|
2011-11-30 11:45:49 +00:00
|
|
|
class D_PAD;
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2011-07-14 15:42:44 +00:00
|
|
|
// Via attributes (m_Shape parameter)
|
2012-04-01 20:51:56 +00:00
|
|
|
#define VIA_THROUGH 3 /* Always a through hole via */
|
|
|
|
#define VIA_BLIND_BURIED 2 /* this via can be on internal layers */
|
|
|
|
#define VIA_MICROVIA 1 /* this via which connect from an external layer
|
|
|
|
* to the near neighbor internal layer */
|
|
|
|
#define VIA_NOT_DEFINED 0 /* not yet used */
|
|
|
|
|
|
|
|
#define UNDEFINED_DRILL_DIAMETER -1 //< Undefined via drill diameter.
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetTrace
|
|
|
|
* is a helper function to locate a trace segment having an end point at \a aPosition
|
|
|
|
* on \a aLayerMask starting at \a aStartTrace and end at \a aEndTrace.
|
|
|
|
* <p>
|
|
|
|
* The segments of track that are flagged as deleted or busy are ignored. Layer
|
|
|
|
* visibility is also ignored.
|
|
|
|
* </p>
|
|
|
|
* @param aStartTrace A pointer to the TRACK object to begin searching.
|
|
|
|
* @param aEndTrace A pointer to the TRACK object to stop the search. A NULL value
|
|
|
|
* searches to the end of the list.
|
|
|
|
* @param aPosition A wxPoint object containing the position to test.
|
|
|
|
* @param aLayerMask A layer or layers to mask the hit test. Use -1 to ignore
|
|
|
|
* layer mask.
|
|
|
|
* @return A TRACK object pointer if found otherwise NULL.
|
|
|
|
*/
|
|
|
|
extern TRACK* GetTrace( TRACK* aStartTrace, TRACK* aEndTrace, const wxPoint& aPosition,
|
|
|
|
int aLayerMask );
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-11-18 18:13:55 +00:00
|
|
|
class TRACK : public BOARD_CONNECTED_ITEM
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2008-12-04 04:28:11 +00:00
|
|
|
// make SetNext() and SetBack() private so that they may not be called from anywhere.
|
|
|
|
// list management is done on TRACKs using DLIST<TRACK> only.
|
|
|
|
private:
|
2010-12-08 20:12:46 +00:00
|
|
|
void SetNext( EDA_ITEM* aNext ) { Pnext = aNext; }
|
|
|
|
void SetBack( EDA_ITEM* aBack ) { Pback = aBack; }
|
2008-12-04 04:28:11 +00:00
|
|
|
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
public:
|
2008-12-14 19:45:05 +00:00
|
|
|
int m_Width; // Thickness of track, or via diameter
|
2007-10-16 19:05:33 +00:00
|
|
|
wxPoint m_Start; // Line start point
|
|
|
|
wxPoint m_End; // Line end point
|
|
|
|
int m_Shape; // vias: shape and type, Track = shape..
|
|
|
|
|
2008-01-12 20:31:56 +00:00
|
|
|
protected:
|
2008-02-09 08:34:45 +00:00
|
|
|
int m_Drill; // for vias: via drill (- 1 for default value)
|
2008-01-12 20:31:56 +00:00
|
|
|
|
|
|
|
public:
|
2011-11-03 19:07:59 +00:00
|
|
|
BOARD_CONNECTED_ITEM* start; // pointers to a connected item (pad or track)
|
|
|
|
BOARD_CONNECTED_ITEM* end;
|
2007-10-16 19:05:33 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
double m_Param; // Auxiliary variable ( used in some computations )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
public:
|
2011-10-01 19:24:27 +00:00
|
|
|
TRACK( BOARD_ITEM* aParent, KICAD_T idtype = PCB_TRACE_T );
|
2007-09-01 12:00:30 +00:00
|
|
|
|
2012-01-14 19:50:32 +00:00
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-16 19:05:33 +00:00
|
|
|
TRACK* Next() const { return (TRACK*) Pnext; }
|
|
|
|
TRACK* Back() const { return (TRACK*) Pback; }
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2011-08-01 15:29:27 +00:00
|
|
|
virtual void Move( const wxPoint& aMoveVector )
|
2009-08-01 19:26:05 +00:00
|
|
|
{
|
|
|
|
m_Start += aMoveVector;
|
2011-12-01 22:50:41 +00:00
|
|
|
m_End += aMoveVector;
|
2009-08-01 19:26:05 +00:00
|
|
|
}
|
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
virtual void Rotate( const wxPoint& aRotCentre, double aAngle );
|
2009-08-01 19:26:05 +00:00
|
|
|
|
2011-08-01 15:29:27 +00:00
|
|
|
virtual void Flip( const wxPoint& aCentre );
|
2009-08-01 19:26:05 +00:00
|
|
|
|
2012-02-20 04:33:54 +00:00
|
|
|
void SetPosition( const wxPoint& aPos ) { m_Start = aPos; } // was overload
|
|
|
|
const wxPoint& GetPosition() const { return m_Start; } // was overload
|
2011-11-29 17:25:30 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
void SetWidth( int aWidth ) { m_Width = aWidth; }
|
|
|
|
int GetWidth() const { return m_Width; }
|
2011-11-30 07:43:46 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
void SetEnd( const wxPoint& aEnd ) { m_End = aEnd; }
|
|
|
|
const wxPoint& GetEnd() const { return m_End; }
|
2011-11-29 17:25:30 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
void SetStart( const wxPoint& aStart ) { m_Start = aStart; }
|
|
|
|
const wxPoint& GetStart() const { return m_Start; }
|
2011-11-30 07:43:46 +00:00
|
|
|
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT GetBoundingBox() const;
|
2008-03-05 22:39:33 +00:00
|
|
|
|
2007-10-31 06:40:15 +00:00
|
|
|
/**
|
|
|
|
* Function GetBestInsertPoint
|
|
|
|
* searches the "best" insertion point within the track linked list.
|
2007-11-02 18:21:43 +00:00
|
|
|
* The best point is the begging of the corresponding net code section.
|
|
|
|
* (The BOARD::m_Track and BOARD::m_Zone lists are sorted by netcode.)
|
2008-01-12 20:31:56 +00:00
|
|
|
* @param aPcb The BOARD to search for the insertion point.
|
2007-10-31 06:40:15 +00:00
|
|
|
* @return TRACK* - the item found in the linked list (or NULL if no track)
|
|
|
|
*/
|
2011-09-14 20:04:58 +00:00
|
|
|
TRACK* GetBestInsertPoint( BOARD* aPcb );
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Search (within the track linked list) the first segment matching the netcode
|
|
|
|
* ( the linked list is always sorted by net codes )
|
2007-10-16 19:05:33 +00:00
|
|
|
*/
|
2011-09-14 20:04:58 +00:00
|
|
|
TRACK* GetStartNetCode( int NetCode );
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Search (within the track linked list) the last segment matching the netcode
|
|
|
|
* ( the linked list is always sorted by net codes )
|
|
|
|
*/
|
2011-09-14 20:04:58 +00:00
|
|
|
TRACK* GetEndNetCode( int NetCode );
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-13 06:18:44 +00:00
|
|
|
/**
|
|
|
|
* Function GetLength
|
|
|
|
* returns the length of the track using the hypotenuse calculation.
|
|
|
|
* @return double - the length of the track
|
|
|
|
*/
|
2011-09-14 20:04:58 +00:00
|
|
|
double GetLength() const
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2011-12-14 04:29:25 +00:00
|
|
|
double dx = m_Start.x - m_End.x;
|
|
|
|
double dy = m_Start.y - m_End.y;
|
2008-01-12 20:31:56 +00:00
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
return hypot( dx, dy );
|
|
|
|
}
|
2007-10-16 19:05:33 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
/* Display on screen: */
|
2012-09-01 13:38:27 +00:00
|
|
|
void Draw( EDA_DRAW_PANEL* panel, wxDC* DC,
|
|
|
|
GR_DRAWMODE aDrawMode, const wxPoint& aOffset = ZeroOffset );
|
2007-08-08 20:51:08 +00:00
|
|
|
|
|
|
|
/* divers */
|
2011-12-14 04:29:25 +00:00
|
|
|
int GetShape() const { return m_Shape & 0xFF; }
|
2011-11-30 07:43:46 +00:00
|
|
|
void SetShape( int aShape ) { m_Shape = aShape; }
|
2008-02-09 08:34:45 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function TransformShapeWithClearanceToPolygon
|
2009-11-14 19:47:52 +00:00
|
|
|
* Convert the track shape to a closed polygon
|
|
|
|
* Used in filling zones calculations
|
|
|
|
* Circles (vias) and arcs (ends of tracks) are approximated by segments
|
|
|
|
* @param aCornerBuffer = a buffer to store the polygon
|
|
|
|
* @param aClearanceValue = the clearance around the pad
|
|
|
|
* @param aCircleToSegmentsCount = the number of segments to approximate a circle
|
|
|
|
* @param aCorrectionFactor = the correction to apply to circles radius to keep
|
2011-07-14 15:42:44 +00:00
|
|
|
* clearance when the circle is approximated by segment bigger or equal
|
2009-11-14 19:47:52 +00:00
|
|
|
* to the real clearance value (usually near from 1.0)
|
|
|
|
*/
|
2009-11-16 08:13:40 +00:00
|
|
|
void TransformShapeWithClearanceToPolygon( std::vector <CPolyPt>& aCornerBuffer,
|
2009-11-14 19:47:52 +00:00
|
|
|
int aClearanceValue,
|
|
|
|
int aCircleToSegmentsCount,
|
|
|
|
double aCorrectionFactor );
|
2008-02-09 08:34:45 +00:00
|
|
|
/**
|
2011-12-22 21:57:50 +00:00
|
|
|
* Function SetDrill
|
2011-12-29 20:11:42 +00:00
|
|
|
* sets the drill value for vias.
|
2011-12-22 21:57:50 +00:00
|
|
|
* @param aDrill is the new drill diameter
|
2008-02-09 08:34:45 +00:00
|
|
|
*/
|
2011-12-14 04:29:25 +00:00
|
|
|
void SetDrill( int aDrill ) { m_Drill = aDrill; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetDrill
|
|
|
|
* returns the local drill setting for this VIA. If you want the calculated value,
|
|
|
|
* use GetDrillValue() instead.
|
|
|
|
*/
|
|
|
|
int GetDrill() const { return m_Drill; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetDrillValue
|
|
|
|
* "calculates" the drill value for vias (m-Drill if > 0, or default
|
|
|
|
* drill value for the board.
|
|
|
|
* @return real drill_value
|
|
|
|
*/
|
|
|
|
int GetDrillValue() const;
|
2008-01-12 20:31:56 +00:00
|
|
|
|
2008-02-09 08:34:45 +00:00
|
|
|
/**
|
2008-01-12 20:31:56 +00:00
|
|
|
* Function SetDrillDefault
|
2012-04-01 20:51:56 +00:00
|
|
|
* sets the drill value for vias to the default value #UNDEFINED_DRILL_DIAMETER.
|
2008-02-09 08:34:45 +00:00
|
|
|
*/
|
2012-04-01 20:51:56 +00:00
|
|
|
void SetDrillDefault() { m_Drill = UNDEFINED_DRILL_DIAMETER; }
|
2008-02-09 08:34:45 +00:00
|
|
|
|
|
|
|
/**
|
2008-01-12 20:31:56 +00:00
|
|
|
* Function IsDrillDefault
|
2008-02-09 08:34:45 +00:00
|
|
|
* @return true if the drill value is default value (-1)
|
|
|
|
*/
|
2011-12-14 04:29:25 +00:00
|
|
|
bool IsDrillDefault() { return m_Drill <= 0; }
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-01 13:51:07 +00:00
|
|
|
/**
|
|
|
|
* Function ReturnMaskLayer
|
2007-10-16 19:05:33 +00:00
|
|
|
* returns a "layer mask", which is a bitmap of all layers on which the
|
2007-10-01 13:51:07 +00:00
|
|
|
* TRACK segment or SEGVIA physically resides.
|
2009-12-21 13:05:11 +00:00
|
|
|
* @return int - a layer mask, see pcbstruct.h's LAYER_BACK, etc.
|
2007-10-01 13:51:07 +00:00
|
|
|
*/
|
2011-10-31 13:44:13 +00:00
|
|
|
int ReturnMaskLayer() const;
|
2007-10-16 19:05:33 +00:00
|
|
|
|
2011-09-14 20:04:58 +00:00
|
|
|
/**
|
|
|
|
* Function IsPointOnEnds
|
|
|
|
* returns STARTPOINT if point if near (dist = min_dist) start point, ENDPOINT if
|
|
|
|
* point if near (dist = min_dist) end point,STARTPOINT|ENDPOINT if point if near
|
|
|
|
* (dist = min_dist) both ends, or 0 if none of the above.
|
|
|
|
* if min_dist < 0: min_dist = track_width/2
|
|
|
|
*/
|
|
|
|
int IsPointOnEnds( const wxPoint& point, int min_dist = 0 );
|
2007-10-16 19:05:33 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
/**
|
|
|
|
* Function IsNull
|
|
|
|
* returns true if segment length is zero.
|
|
|
|
*/
|
2011-09-14 20:04:58 +00:00
|
|
|
bool IsNull();
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2011-09-14 20:04:58 +00:00
|
|
|
void DisplayInfo( EDA_DRAW_FRAME* frame );
|
2007-10-16 19:05:33 +00:00
|
|
|
|
2009-10-14 18:14:58 +00:00
|
|
|
/**
|
|
|
|
* Function DisplayInfoBase
|
|
|
|
* has knowledge about the frame and how and where to put status information
|
|
|
|
* about this object into the frame's message panel.
|
|
|
|
* Display info about the track segment only, and does not calculate the full track length
|
2011-01-21 19:30:59 +00:00
|
|
|
* @param frame A EDA_DRAW_FRAME in which to print status information.
|
2009-10-14 18:14:58 +00:00
|
|
|
*/
|
2011-09-14 20:04:58 +00:00
|
|
|
void DisplayInfoBase( EDA_DRAW_FRAME* frame );
|
2007-08-20 19:33:15 +00:00
|
|
|
|
2007-10-11 00:11:59 +00:00
|
|
|
/**
|
|
|
|
* Function ShowWidth
|
|
|
|
* returns the width of the track in displayable user units.
|
|
|
|
*/
|
2011-09-14 20:04:58 +00:00
|
|
|
wxString ShowWidth() const;
|
2007-10-16 19:05:33 +00:00
|
|
|
|
2011-09-14 20:04:58 +00:00
|
|
|
SEARCH_RESULT Visit( INSPECTOR* inspector, const void* testData,
|
|
|
|
const KICAD_T scanTypes[] );
|
2007-10-16 19:05:33 +00:00
|
|
|
|
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
virtual bool HitTest( const wxPoint& aPosition );
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
virtual bool HitTest( const EDA_RECT& aRect ) const;
|
2011-09-14 20:04:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetVia
|
|
|
|
* finds the first SEGVIA object at \a aPosition on \a aLayer starting at the trace.
|
|
|
|
*
|
|
|
|
* @param aPosition The wxPoint to HitTest() against.
|
|
|
|
* @param aLayerMask The layer to match, pass -1 for a don't care.
|
|
|
|
* @return A pointer to a SEGVIA object if found, else NULL.
|
|
|
|
*/
|
|
|
|
TRACK* GetVia( const wxPoint& aPosition, int aLayerMask = -1 );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetVia
|
|
|
|
* finds the first SEGVIA object at \a aPosition on \a aLayer starting at the trace
|
|
|
|
* and ending at \a aEndTrace.
|
|
|
|
*
|
|
|
|
* @param aEndTrace Pointer to the last TRACK object to end search.
|
|
|
|
* @param aPosition The wxPoint to HitTest() against.
|
|
|
|
* @param aLayerMask The layers to match, pass -1 for a don't care.
|
|
|
|
* @return A pointer to a SEGVIA object if found, else NULL.
|
|
|
|
*/
|
|
|
|
TRACK* GetVia( TRACK* aEndTrace, const wxPoint& aPosition, int aLayerMask );
|
2008-01-06 12:43:57 +00:00
|
|
|
|
2011-09-16 14:13:02 +00:00
|
|
|
/**
|
|
|
|
* Function GetTrace
|
|
|
|
* return the trace segment connected to the segment at \a aEndPoint from \a
|
|
|
|
* aStartTrace to \a aEndTrace.
|
|
|
|
*
|
|
|
|
* @param aStartTrace A pointer to the TRACK object to begin searching.
|
|
|
|
* @param aEndTrace A pointer to the TRACK object to stop the search. A NULL value
|
|
|
|
* searches to the end of the list.
|
|
|
|
* @param aEndPoint The start or end point of the segment to test against.
|
|
|
|
* @return A TRACK object pointer if found otherwise NULL.
|
|
|
|
*/
|
|
|
|
TRACK* GetTrace( TRACK* aStartTrace, TRACK* aEndTrace, int aEndPoint );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetEndSegments
|
|
|
|
* get the segments connected to the end point of the track.
|
|
|
|
* return 1 if OK, 0 when a track is a closed loop
|
|
|
|
* and the beginning and the end of the track in *StartTrack and *EndTrack
|
|
|
|
* Modify *StartTrack en *EndTrack :
|
|
|
|
* (*StartTrack)->m_Start coordinate is the beginning of the track
|
|
|
|
* (*EndTrack)->m_End coordinate is the end of the track
|
|
|
|
* Segments connected must be consecutive in list
|
|
|
|
*/
|
|
|
|
int GetEndSegments( int NbSegm, TRACK** StartTrack, TRACK** EndTrack );
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
wxString GetClass() const
|
|
|
|
{
|
2007-10-16 19:05:33 +00:00
|
|
|
return wxT( "TRACK" );
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
2007-10-16 19:05:33 +00:00
|
|
|
|
2010-04-08 11:33:43 +00:00
|
|
|
/**
|
|
|
|
* Function GetClearance
|
|
|
|
* returns the clearance in internal units. If \a aItem is not NULL then the
|
|
|
|
* returned clearance is the greater of this object's clearance and
|
|
|
|
* aItem's clearance. If \a aItem is NULL, then this objects clearance
|
|
|
|
* is returned.
|
|
|
|
* @param aItem is another BOARD_CONNECTED_ITEM or NULL
|
|
|
|
* @return int - the clearance in internal units.
|
|
|
|
*/
|
|
|
|
virtual int GetClearance( BOARD_CONNECTED_ITEM* aItem = NULL ) const;
|
|
|
|
|
2011-07-14 15:42:44 +00:00
|
|
|
virtual wxString GetSelectMenuText() const;
|
2007-10-16 19:05:33 +00:00
|
|
|
|
2011-08-29 03:04:59 +00:00
|
|
|
virtual BITMAP_DEF GetMenuImage() const { return showtrack_xpm; }
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
virtual EDA_ITEM* Clone() const;
|
|
|
|
|
2007-10-16 19:05:33 +00:00
|
|
|
#if defined (DEBUG)
|
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
void Show( int nestLevel, std::ostream& os ) const; // overload
|
2008-12-04 04:28:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ShowState
|
|
|
|
* converts a set of state bits to a wxString
|
|
|
|
* @param stateBits Is an OR-ed together set of bits like BUSY, EDIT, etc.
|
|
|
|
*/
|
|
|
|
static wxString ShowState( int stateBits );
|
|
|
|
|
2007-10-16 19:05:33 +00:00
|
|
|
#endif
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
class SEGZONE : public TRACK
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
public:
|
2008-12-04 04:28:11 +00:00
|
|
|
SEGZONE( BOARD_ITEM* aParent );
|
2007-10-16 19:05:33 +00:00
|
|
|
|
2012-01-14 19:50:32 +00:00
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
wxString GetClass() const
|
|
|
|
{
|
2007-10-16 19:05:33 +00:00
|
|
|
return wxT( "ZONE" );
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
2007-09-13 11:28:58 +00:00
|
|
|
|
2007-10-16 19:05:33 +00:00
|
|
|
|
|
|
|
SEGZONE* Next() const { return (SEGZONE*) Pnext; }
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
wxString GetSelectMenuText() const;
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
BITMAP_DEF GetMenuImage() const { return add_zone_xpm; }
|
2012-01-14 19:50:32 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
EDA_ITEM* Clone() const;
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
class SEGVIA : public TRACK
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
public:
|
2008-12-04 04:28:11 +00:00
|
|
|
SEGVIA( BOARD_ITEM* aParent );
|
2007-09-01 12:00:30 +00:00
|
|
|
|
2012-01-14 19:50:32 +00:00
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
2007-10-16 19:05:33 +00:00
|
|
|
|
2012-09-01 13:38:27 +00:00
|
|
|
void Draw( EDA_DRAW_PANEL* panel, wxDC* DC,
|
|
|
|
GR_DRAWMODE aDrawMode, const wxPoint& aOffset = ZeroOffset );
|
2008-11-24 06:53:43 +00:00
|
|
|
|
2011-09-14 20:04:58 +00:00
|
|
|
bool IsOnLayer( int aLayer ) const;
|
2007-10-16 19:05:33 +00:00
|
|
|
|
2011-09-14 20:04:58 +00:00
|
|
|
/**
|
|
|
|
* Function SetLayerPair
|
|
|
|
* set the .m_Layer member param:
|
|
|
|
* For a via m_Layer contains the 2 layers :
|
|
|
|
* top layer and bottom layer used by the via.
|
|
|
|
* The via connect all layers from top layer to bottom layer
|
2012-04-01 20:51:56 +00:00
|
|
|
* 4 bits for the first layer and 4 next bits for the second layer
|
2011-09-14 20:04:58 +00:00
|
|
|
* @param top_layer = first layer connected by the via
|
|
|
|
* @param bottom_layer = last layer connected by the via
|
|
|
|
*/
|
|
|
|
void SetLayerPair( int top_layer, int bottom_layer );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ReturnLayerPair
|
|
|
|
* Return the 2 layers used by the via (the via actually uses
|
|
|
|
* all layers between these 2 layers)
|
|
|
|
* @param top_layer = pointer to the first layer (can be null)
|
|
|
|
* @param bottom_layer = pointer to the last layer (can be null)
|
|
|
|
*/
|
|
|
|
void ReturnLayerPair( int* top_layer, int* bottom_layer ) const;
|
2007-10-16 19:05:33 +00:00
|
|
|
|
2012-02-20 04:33:54 +00:00
|
|
|
const wxPoint& GetPosition() const { return m_Start; } // was overload
|
|
|
|
void SetPosition( const wxPoint& aPoint ) { m_Start = aPoint; m_End = aPoint; } // was overload
|
2008-01-12 20:31:56 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
wxString GetClass() const
|
|
|
|
{
|
2007-10-16 19:05:33 +00:00
|
|
|
return wxT( "VIA" );
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
2007-10-01 04:14:29 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
wxString GetSelectMenuText() const;
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
BITMAP_DEF GetMenuImage() const { return via_sketch_xpm; }
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
EDA_ITEM* Clone() const;
|
2012-03-17 14:39:27 +00:00
|
|
|
|
2007-10-16 19:05:33 +00:00
|
|
|
#if defined (DEBUG)
|
2011-12-14 17:25:42 +00:00
|
|
|
void Show( int nestLevel, std::ostream& os ) const; // overload
|
2007-10-16 19:05:33 +00:00
|
|
|
#endif
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* CLASS_TRACK_H */
|