2011-10-31 20:49:48 +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) 2004-2011 KiCad Developers, see change_log.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
|
|
|
|
*/
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2011-10-31 20:49:48 +00:00
|
|
|
/**
|
|
|
|
* @file class_libentry.h
|
|
|
|
* @brief Class LIB_PIN definition.
|
2010-03-04 09:32:51 +00:00
|
|
|
*/
|
|
|
|
#ifndef CLASS_PIN_H
|
|
|
|
#define CLASS_PIN_H
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <lib_draw_item.h>
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
|
2013-05-19 19:35:49 +00:00
|
|
|
#define TARGET_PIN_RADIUS 12 // Circle diameter drawn at the active end of pins
|
|
|
|
#define DEFAULT_PIN_LENGTH 300 // Default Length of a pin when it is created.
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2013-05-19 19:35:49 +00:00
|
|
|
// pins: special symbols sizes
|
|
|
|
#define INVERT_PIN_RADIUS 30 // Radius of inverted pin circle.
|
|
|
|
#define CLOCK_PIN_DIM 40 // Dim of clock pin symbol.
|
|
|
|
#define IEEE_SYMBOL_PIN_DIM 40 // Dim of special pin symbol.
|
|
|
|
#define NONLOGIC_PIN_DIM 30 // Dim of nonlogic pin symbol (X).
|
2010-03-04 09:32:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The component library pin object electrical types used in ERC tests.
|
|
|
|
*/
|
|
|
|
enum ElectricPinType {
|
|
|
|
PIN_INPUT,
|
|
|
|
PIN_OUTPUT,
|
|
|
|
PIN_BIDI,
|
|
|
|
PIN_TRISTATE,
|
|
|
|
PIN_PASSIVE,
|
|
|
|
PIN_UNSPECIFIED,
|
|
|
|
PIN_POWER_IN,
|
|
|
|
PIN_POWER_OUT,
|
|
|
|
PIN_OPENCOLLECTOR,
|
|
|
|
PIN_OPENEMITTER,
|
|
|
|
PIN_NC, /* No connect */
|
|
|
|
PIN_NMAX /* End of List (no used as pin type) */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Electrical pin type names. */
|
|
|
|
extern const wxChar* MsgPinElectricType[];
|
|
|
|
|
|
|
|
/* Pin visibility flag bit. */
|
2011-05-06 13:56:26 +00:00
|
|
|
#define PIN_INVISIBLE 1 /* Set makes pin invisible */
|
2010-03-04 09:32:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The component library pin object drawing shapes.
|
|
|
|
*/
|
|
|
|
enum DrawPinShape {
|
|
|
|
NONE = 0,
|
|
|
|
INVERT = 1,
|
|
|
|
CLOCK = 2,
|
|
|
|
LOWLEVEL_IN = 4,
|
2010-09-24 16:00:40 +00:00
|
|
|
LOWLEVEL_OUT = 8,
|
|
|
|
CLOCK_FALL = 0x10, /* this is common form for inverted clock in Eastern Block */
|
2010-10-04 12:58:07 +00:00
|
|
|
NONLOGIC = 0x20
|
2010-03-04 09:32:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The component library pin object orientations.
|
|
|
|
*/
|
|
|
|
enum DrawPinOrient {
|
|
|
|
PIN_RIGHT = 'R',
|
|
|
|
PIN_LEFT = 'L',
|
|
|
|
PIN_UP = 'U',
|
2010-10-04 12:58:07 +00:00
|
|
|
PIN_DOWN = 'D'
|
2010-03-04 09:32:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
class LIB_PIN : public LIB_ITEM
|
2010-03-04 09:32:51 +00:00
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
wxPoint m_position; ///< Position of the pin.
|
|
|
|
int m_length; ///< Length of the pin.
|
|
|
|
int m_orientation; ///< Pin orientation (Up, Down, Left, Right)
|
|
|
|
int m_shape; ///< Bitwise ORed of pin shapes (see enum DrawPinShape)
|
|
|
|
int m_width; ///< Line width of the pin.
|
|
|
|
int m_type; ///< Electrical type of the pin. See enum ElectricPinType.
|
|
|
|
int m_attributes; ///< Set bit 0 to indicate pin is invisible.
|
|
|
|
wxString m_name;
|
|
|
|
long m_number; ///< Pin number defined as 4 ASCII characters like "12", "anod",
|
|
|
|
///< "G6", or "12". It is stored as "12\0\0" and does not
|
|
|
|
///< depend on endian type.
|
2011-12-08 21:05:43 +00:00
|
|
|
int m_numTextSize;
|
|
|
|
int m_nameTextSize; /* Pin num and Pin name sizes */
|
2010-12-07 16:10:42 +00:00
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void drawGraphic( EDA_DRAW_PANEL* aPanel, wxDC* aDC, const wxPoint& aOffset,
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T aColor, GR_DRAWMODE aDrawMode, void* aData,
|
2012-09-01 13:38:27 +00:00
|
|
|
const TRANSFORM& aTransform );
|
2010-10-20 20:24:26 +00:00
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
public:
|
2011-12-01 16:49:28 +00:00
|
|
|
LIB_PIN( LIB_COMPONENT* aParent );
|
2012-01-09 20:26:55 +00:00
|
|
|
|
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
~LIB_PIN() { }
|
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
wxString GetClass() const
|
2010-03-04 09:32:51 +00:00
|
|
|
{
|
|
|
|
return wxT( "LIB_PIN" );
|
|
|
|
}
|
|
|
|
|
2010-08-03 05:11:05 +00:00
|
|
|
#if defined(DEBUG)
|
2011-12-14 17:25:42 +00:00
|
|
|
void Show( int nestLevel, std::ostream& os ) const; // virtual override
|
2010-08-03 05:11:05 +00:00
|
|
|
#endif
|
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
bool Save( OUTPUTFORMATTER& aFormatter );
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
bool Load( LINE_READER& aLineReader, wxString& aErrorMsg );
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
bool HitTest( const wxPoint& aPosition );
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
bool HitTest( wxPoint aPosRef, int aThreshold, const TRANSFORM& aTransform );
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
void GetMsgPanelInfo( std::vector< MSG_PANEL_ITEM >& aList );
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
bool Matches( wxFindReplaceData& aSearchData, void* aAuxData, wxPoint* aFindLocation );
|
2011-12-01 16:49:28 +00:00
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
const EDA_RECT GetBoundingBox() const; // Virtual
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2011-10-31 20:49:48 +00:00
|
|
|
/**
|
|
|
|
* Function ReturnPinEndPoint
|
|
|
|
*
|
|
|
|
* @return The pin end position for a component in the normal orientation.
|
|
|
|
*/
|
2010-10-25 15:43:42 +00:00
|
|
|
wxPoint ReturnPinEndPoint() const;
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2011-02-28 13:53:49 +00:00
|
|
|
/**
|
|
|
|
* Function ReturnPinDrawOrient
|
|
|
|
* returns the pin real orientation (PIN_UP, PIN_DOWN, PIN_RIGHT, PIN_LEFT),
|
|
|
|
* according to its orientation and the matrix transform (rot, mirror) \a aTransform
|
2012-03-26 23:47:08 +00:00
|
|
|
*
|
|
|
|
* @param aTransform Transform matrix
|
2011-02-28 13:53:49 +00:00
|
|
|
*/
|
2011-05-25 10:42:56 +00:00
|
|
|
int ReturnPinDrawOrient( const TRANSFORM& aTransform ) const;
|
2010-03-04 09:32:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fill a string buffer with pin number.
|
|
|
|
*
|
|
|
|
* Pin numbers are coded as a long or 4 ASCII characters. Used to print
|
|
|
|
* or draw the pin number.
|
|
|
|
*
|
2010-12-07 16:10:42 +00:00
|
|
|
* @param aStringBuffer - the wxString to store the pin num as an unicode string
|
2010-03-04 09:32:51 +00:00
|
|
|
*/
|
2010-12-07 16:10:42 +00:00
|
|
|
void ReturnPinStringNum( wxString& aStringBuffer ) const;
|
2010-08-03 02:13:33 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
long GetNumber() const { return m_number; }
|
2010-08-03 02:13:33 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
wxString GetNumberString() const { return ReturnPinStringNum( m_number ); }
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function ReturnPinStringNum (static function)
|
2010-03-04 09:32:51 +00:00
|
|
|
* Pin num is coded as a long or 4 ascii chars
|
|
|
|
* @param aPinNum = a long containing a pin num
|
|
|
|
* @return aStringBuffer = the wxString to store the pin num as an
|
|
|
|
* unicode string
|
|
|
|
*/
|
|
|
|
static wxString ReturnPinStringNum( long aPinNum );
|
|
|
|
|
2011-10-31 20:49:48 +00:00
|
|
|
/**
|
|
|
|
* Function SetPinNumFromString
|
|
|
|
* fill the pin number buffer with \a aBuffer.
|
|
|
|
*/
|
2011-02-28 13:53:49 +00:00
|
|
|
void SetPinNumFromString( wxString& aBuffer );
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
wxString GetName() const { return m_name; }
|
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
/**
|
|
|
|
* Set the pin name.
|
|
|
|
*
|
|
|
|
* This will also all of the pin names marked by EnableEditMode().
|
|
|
|
*
|
2012-03-26 23:47:08 +00:00
|
|
|
* @param aName New pin name.
|
2010-03-04 09:32:51 +00:00
|
|
|
*/
|
|
|
|
void SetName( const wxString& aName );
|
|
|
|
|
|
|
|
/**
|
2010-10-20 20:24:26 +00:00
|
|
|
* Set the \a aSize of the pin name text.
|
2010-03-04 09:32:51 +00:00
|
|
|
*
|
|
|
|
* This will also update the text size of the name of the pins marked
|
|
|
|
* by EnableEditMode().
|
|
|
|
*
|
2012-03-26 23:47:08 +00:00
|
|
|
* @param aSize The text size of the pin name in schematic units ( mils ).
|
2010-03-04 09:32:51 +00:00
|
|
|
*/
|
|
|
|
void SetNameTextSize( int aSize );
|
|
|
|
|
2011-12-08 21:05:43 +00:00
|
|
|
int GetNameTextSize() const { return m_nameTextSize; }
|
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
/**
|
|
|
|
* Set the pin number.
|
|
|
|
*
|
|
|
|
* Others pin numbers marked by EnableEditMode() are not modified
|
|
|
|
* because each pin has its own number
|
2012-03-26 23:47:08 +00:00
|
|
|
* @param aNumber New pin number.
|
2010-03-04 09:32:51 +00:00
|
|
|
*/
|
|
|
|
void SetNumber( const wxString& aNumber );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the size of the pin number text.
|
|
|
|
*
|
|
|
|
* This will also update the text size of the number of the pins marked
|
|
|
|
* by EnableEditMode().
|
|
|
|
*
|
2012-03-26 23:47:08 +00:00
|
|
|
* @param aSize The text size of the pin number in schematic units ( mils ).
|
2010-03-04 09:32:51 +00:00
|
|
|
*/
|
|
|
|
void SetNumberTextSize( int aSize );
|
|
|
|
|
2011-12-08 21:05:43 +00:00
|
|
|
int GetNumberTextSize() const { return m_numTextSize; }
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
int GetOrientation() const { return m_orientation; }
|
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
/**
|
|
|
|
* Set orientation on the pin.
|
|
|
|
*
|
2010-12-07 16:10:42 +00:00
|
|
|
* This will also update the orientation of the pins marked by EnableEditMode().
|
2010-03-04 09:32:51 +00:00
|
|
|
*
|
|
|
|
* @param aOrientation - The orientation of the pin.
|
|
|
|
*/
|
|
|
|
void SetOrientation( int aOrientation );
|
|
|
|
|
2011-02-28 13:53:49 +00:00
|
|
|
void Rotate();
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
int GetShape() const { return m_shape; }
|
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
/**
|
2010-12-07 16:10:42 +00:00
|
|
|
* Set the shape of the pin to \a aShape.
|
2010-03-04 09:32:51 +00:00
|
|
|
*
|
2010-12-07 16:10:42 +00:00
|
|
|
* This will also update the draw style of the pins marked by EnableEditMode().
|
2010-03-04 09:32:51 +00:00
|
|
|
*
|
2010-12-07 16:10:42 +00:00
|
|
|
* @param aShape - The draw shape of the pin. See enum DrawPinShape.
|
2010-03-04 09:32:51 +00:00
|
|
|
*/
|
2010-12-07 16:10:42 +00:00
|
|
|
void SetShape( int aShape );
|
|
|
|
|
2011-02-08 12:01:14 +00:00
|
|
|
/**
|
|
|
|
* Get the electrical type of the pin.
|
|
|
|
*
|
|
|
|
* @return The electrical type of the pin (see enun ElectricPinType for values).
|
|
|
|
*/
|
2010-12-07 16:10:42 +00:00
|
|
|
int GetType() const { return m_type; }
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2011-02-08 12:01:14 +00:00
|
|
|
/**
|
|
|
|
* return a string giving the electrical type of the pin.
|
|
|
|
*
|
|
|
|
* @return The electrical name of the pin (see enun MsgPinElectricType for names).
|
|
|
|
*/
|
|
|
|
wxString GetTypeString() const { return MsgPinElectricType[m_type]; }
|
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
/**
|
|
|
|
* Set the electrical type of the pin.
|
|
|
|
*
|
|
|
|
* This will also update the electrical type of the pins marked by
|
|
|
|
* EnableEditMode().
|
|
|
|
*
|
2011-02-08 12:01:14 +00:00
|
|
|
* @param aType - The electrical type of the pin(see enun ElectricPinType for values).
|
2010-03-04 09:32:51 +00:00
|
|
|
*/
|
2010-12-07 16:10:42 +00:00
|
|
|
void SetType( int aType );
|
2010-03-04 09:32:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the pin length.
|
|
|
|
*
|
|
|
|
* This will also update the length of the pins marked by EnableEditMode().
|
|
|
|
*
|
|
|
|
* @param aLength - The length of the pin in mils.
|
|
|
|
*/
|
|
|
|
void SetLength( int aLength );
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
int GetLength() { return m_length; }
|
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
/**
|
|
|
|
* Set the pin part number.
|
|
|
|
*
|
|
|
|
* If the pin is changed from not common to common to all parts, any
|
|
|
|
* linked pins will be removed from the parent component.
|
|
|
|
*
|
|
|
|
* @param aPart - Number of the part the pin belongs to. Set to zero to
|
|
|
|
* make pin common to all parts in a multi-part component.
|
|
|
|
*/
|
|
|
|
void SetPartNumber( int aPart );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the body style (conversion) of the pin.
|
|
|
|
*
|
|
|
|
* If the pin is changed from not common to common to all body styles, any
|
|
|
|
* linked pins will be removed from the parent component.
|
|
|
|
*
|
2010-12-14 15:56:30 +00:00
|
|
|
* @param aConversion - Body style of the pin. Set to zero to make pin
|
|
|
|
* common to all body styles.
|
2010-03-04 09:32:51 +00:00
|
|
|
*/
|
|
|
|
void SetConversion( int aConversion );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set or clear the visibility flag for the pin.
|
|
|
|
*
|
|
|
|
* This will also update the visibility of the pins marked by
|
|
|
|
* EnableEditMode().
|
|
|
|
*
|
|
|
|
* @param aVisible - True to make the pin visible or false to hide the pin.
|
|
|
|
*/
|
|
|
|
void SetVisible( bool aVisible );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable or clear pin editing mode.
|
|
|
|
*
|
|
|
|
* The pin editing mode marks or unmarks all pins common to this
|
2011-10-31 20:49:48 +00:00
|
|
|
* pin object for further editing. If any of the pin modification
|
2010-03-04 09:32:51 +00:00
|
|
|
* methods are called after enabling the editing mode, all pins
|
|
|
|
* marked for editing will have the same attribute changed. The
|
|
|
|
* only case were this is not true making this pin common to all
|
|
|
|
* parts or body styles in the component. See SetCommonToAllParts()
|
|
|
|
* and SetCommonToAllBodyStyles() for more information.
|
|
|
|
*
|
2012-03-26 23:47:08 +00:00
|
|
|
* @param aEnable True marks all common pins for editing mode. False
|
|
|
|
* clears the editing mode.
|
|
|
|
* @param aEditPinByPin Enables the edit pin by pin mode.
|
2010-03-04 09:32:51 +00:00
|
|
|
*/
|
|
|
|
void EnableEditMode( bool aEnable, bool aEditPinByPin = false );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the visibility status of the draw object.
|
|
|
|
*
|
|
|
|
* @return True if draw object is visible otherwise false.
|
|
|
|
*/
|
2011-05-06 13:56:26 +00:00
|
|
|
bool IsVisible() { return ( m_attributes & PIN_INVISIBLE ) == 0; }
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
int GetPenSize() const;
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2011-10-31 20:49:48 +00:00
|
|
|
/**
|
|
|
|
* Function DrawPinSymbol
|
|
|
|
* Draw the pin symbol without text.
|
|
|
|
* If \a aColor != 0, draw with \a aColor, else with the normal pin color.
|
|
|
|
*/
|
2011-01-21 19:30:59 +00:00
|
|
|
void DrawPinSymbol( EDA_DRAW_PANEL* aPanel, wxDC* aDC, const wxPoint& aPosition,
|
2012-09-01 13:38:27 +00:00
|
|
|
int aOrientation, GR_DRAWMODE aDrawMode,
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T aColor = UNSPECIFIED_COLOR );
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2011-10-31 20:49:48 +00:00
|
|
|
/**
|
|
|
|
* Function DrawPinTexts
|
|
|
|
* puts the pin number and pin text info, given the pin line coordinates.
|
2013-02-20 11:46:38 +00:00
|
|
|
* The line must be vertical or horizontal.
|
|
|
|
* If DrawPinName == false the pin name is not printed.
|
|
|
|
* If DrawPinNum = false the pin number is not printed.
|
2011-10-31 20:49:48 +00:00
|
|
|
* If TextInside then the text is been put inside,otherwise all is drawn outside.
|
|
|
|
* Pin Name: substring between '~' is negated
|
|
|
|
* DrawMode = GR_OR, XOR ...
|
|
|
|
*/
|
2011-01-21 19:30:59 +00:00
|
|
|
void DrawPinTexts( EDA_DRAW_PANEL* aPanel, wxDC* aDC, wxPoint& aPosition,
|
2010-03-04 09:32:51 +00:00
|
|
|
int aOrientation, int TextInside, bool DrawPinNum, bool DrawPinName,
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T aColor, GR_DRAWMODE aDrawMode );
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2011-10-31 20:49:48 +00:00
|
|
|
/**
|
|
|
|
* Function PlotPinTexts
|
|
|
|
* plots the pin number and pin text info, given the pin line coordinates.
|
|
|
|
* Same as DrawPinTexts((), but output is the plotter
|
|
|
|
* The line must be vertical or horizontal.
|
|
|
|
* If TextInside then the text is been put inside (moving from x1, y1 in
|
|
|
|
* the opposite direction to x2,y2), otherwise all is drawn outside.
|
|
|
|
*/
|
2010-03-04 09:32:51 +00:00
|
|
|
void PlotPinTexts( PLOTTER *aPlotter,
|
|
|
|
wxPoint& aPosition,
|
|
|
|
int aOrientation,
|
|
|
|
int aTextInside,
|
|
|
|
bool aDrawPinNum,
|
|
|
|
bool aDrawPinName,
|
|
|
|
int aWidth );
|
|
|
|
|
2011-06-17 13:24:22 +00:00
|
|
|
void PlotSymbol( PLOTTER* aPlotter, const wxPoint& aPosition, int aOrientation );
|
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
/**
|
|
|
|
* Get a list of pin orientation names.
|
|
|
|
*
|
|
|
|
* @return List of valid pin orientation names.
|
|
|
|
*/
|
|
|
|
static wxArrayString GetOrientationNames();
|
|
|
|
|
|
|
|
/**
|
2011-01-05 19:16:55 +00:00
|
|
|
* Get a list of pin orientation bitmaps for menus and dialogs.
|
2010-03-04 09:32:51 +00:00
|
|
|
*
|
|
|
|
* @return List of valid pin orientation bitmaps symbols in .xpm format
|
|
|
|
*/
|
2011-08-29 03:04:59 +00:00
|
|
|
static const BITMAP_DEF* GetOrientationSymbols();
|
2010-03-04 09:32:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the orientation code by index used to set the pin orientation.
|
|
|
|
*
|
|
|
|
* @param aIndex - The index of the orientation code to look up.
|
|
|
|
* @return Orientation code if index is valid. Returns right
|
|
|
|
* orientation on index error.
|
|
|
|
*/
|
|
|
|
static int GetOrientationCode( int aIndex );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the index of the orientation code.
|
|
|
|
*
|
|
|
|
* @param aCode - The orientation code to look up.
|
|
|
|
* @return The index of the orientation code if found. Otherwise,
|
|
|
|
* return wxNOT_FOUND.
|
|
|
|
*/
|
|
|
|
static int GetOrientationCodeIndex( int aCode );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of pin draw style names.
|
|
|
|
*
|
|
|
|
* @return List of valid pin draw style names.
|
|
|
|
*/
|
|
|
|
static wxArrayString GetStyleNames();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of pin styles bitmaps for menus and dialogs.
|
|
|
|
*
|
|
|
|
* @return List of valid pin electrical type bitmaps symbols in .xpm format.
|
|
|
|
*/
|
2011-08-29 03:04:59 +00:00
|
|
|
static const BITMAP_DEF* GetStyleSymbols();
|
2010-03-04 09:32:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the pin draw style code by index used to set the pin draw style.
|
|
|
|
*
|
|
|
|
* @param aIndex - The index of the pin draw style code to look up.
|
|
|
|
* @return Pin draw style code if index is valid. Returns NONE
|
|
|
|
* style on index error.
|
|
|
|
*/
|
|
|
|
static int GetStyleCode( int aIndex );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the index of the pin draw style code.
|
|
|
|
*
|
|
|
|
* @param aCode - The pin draw style code to look up.
|
|
|
|
* @return The index of the pin draw style code if found. Otherwise,
|
|
|
|
* return wxNOT_FOUND.
|
|
|
|
*/
|
|
|
|
static int GetStyleCodeIndex( int aCode );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of pin electrical type names.
|
|
|
|
*
|
|
|
|
* @return List of valid pin electrical type names.
|
|
|
|
*/
|
|
|
|
static wxArrayString GetElectricalTypeNames();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of pin electrical bitmaps for menus and dialogs.
|
|
|
|
*
|
|
|
|
* @return List of valid pin electrical type bitmaps symbols in .xpm format
|
|
|
|
*/
|
2011-08-29 03:04:59 +00:00
|
|
|
static const BITMAP_DEF* GetElectricalTypeSymbols();
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void SetOffset( const wxPoint& aOffset );
|
2012-02-27 23:02:08 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
bool Inside( EDA_RECT& aRect ) const;
|
2012-02-27 23:02:08 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void Move( const wxPoint& aPosition );
|
2012-02-27 23:02:08 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
wxPoint GetPosition() const { return m_position; }
|
2012-02-27 23:02:08 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void MirrorHorizontal( const wxPoint& aCenter );
|
2012-02-27 23:02:08 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void MirrorVertical( const wxPoint& aCenter );
|
2012-02-27 23:02:08 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void Rotate( const wxPoint& aCenter, bool aRotateCCW = true );
|
2012-02-27 23:02:08 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void Plot( PLOTTER* aPlotter, const wxPoint& aOffset, bool aFill,
|
|
|
|
const TRANSFORM& aTransform );
|
2012-02-27 23:02:08 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
int GetWidth() const { return m_width; }
|
2012-02-27 23:02:08 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void SetWidth( int aWidth );
|
2012-02-27 23:02:08 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
BITMAP_DEF GetMenuImage() const;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
wxString GetSelectMenuText() const;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
EDA_ITEM* Clone() const;
|
2012-03-17 14:39:27 +00:00
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
private:
|
2010-03-04 09:32:51 +00:00
|
|
|
|
|
|
|
/**
|
2012-03-26 23:47:08 +00:00
|
|
|
* @copydoc LIB_ITEM::compare()
|
2010-03-04 09:32:51 +00:00
|
|
|
*
|
2012-03-26 23:47:08 +00:00
|
|
|
* The pin specific sort order is as follows:
|
2010-03-04 09:32:51 +00:00
|
|
|
* - Pin number.
|
|
|
|
* - Pin name, case insensitive compare.
|
|
|
|
* - Pin horizontal (X) position.
|
|
|
|
* - Pin vertical (Y) position.
|
|
|
|
*/
|
2012-03-26 23:47:08 +00:00
|
|
|
int compare( const LIB_ITEM& aOther ) const;
|
2010-03-04 09:32:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // CLASS_PIN_H
|