2011-10-13 19:56:32 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-02-28 16:56:09 +00:00
|
|
|
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
|
|
|
* Copyright (C) 2015 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
* Copyright (C) 1992-2015 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-13 19:56:32 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file lib_pin.cpp
|
|
|
|
*/
|
2008-09-13 18:59:57 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
#include <pgm_base.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <gr_basic.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <trigo.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <drawtxt.h>
|
|
|
|
#include <plot_common.h>
|
2015-02-21 09:46:44 +00:00
|
|
|
#include <schframe.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <richio.h>
|
2012-04-13 18:51:24 +00:00
|
|
|
#include <base_units.h>
|
2013-01-12 17:32:24 +00:00
|
|
|
#include <msgpanel.h>
|
2009-09-22 12:27:57 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <general.h>
|
|
|
|
#include <libeditframe.h>
|
|
|
|
#include <class_libentry.h>
|
|
|
|
#include <lib_pin.h>
|
|
|
|
#include <transform.h>
|
|
|
|
#include <sch_component.h>
|
2009-09-22 12:27:57 +00:00
|
|
|
|
2008-09-13 18:59:57 +00:00
|
|
|
|
2015-04-03 09:13:06 +00:00
|
|
|
static const int pin_orientation_codes[] =
|
2009-10-30 19:26:25 +00:00
|
|
|
{
|
2015-04-02 18:51:47 +00:00
|
|
|
PIN_RIGHT,
|
|
|
|
PIN_LEFT,
|
|
|
|
PIN_UP,
|
|
|
|
PIN_DOWN
|
2009-10-30 19:26:25 +00:00
|
|
|
};
|
2011-04-18 20:22:17 +00:00
|
|
|
|
2015-04-02 18:51:47 +00:00
|
|
|
|
|
|
|
#define PIN_ORIENTATION_CNT DIM( pin_orientation_codes )
|
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
// bitmaps to show pins orientations in dialog editor
|
|
|
|
// must have same order than pin_orientation_names
|
2015-04-03 09:13:06 +00:00
|
|
|
static const BITMAP_DEF iconsPinsOrientations[] =
|
2010-03-04 09:32:51 +00:00
|
|
|
{
|
|
|
|
pinorient_right_xpm,
|
|
|
|
pinorient_left_xpm,
|
|
|
|
pinorient_up_xpm,
|
|
|
|
pinorient_down_xpm,
|
|
|
|
};
|
2009-10-30 19:26:25 +00:00
|
|
|
|
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
// bitmaps to show pins shapes in dialog editor
|
|
|
|
// must have same order than pin_style_names
|
2015-04-03 09:13:06 +00:00
|
|
|
static BITMAP_DEF iconsPinsShapes[] =
|
2010-03-04 09:32:51 +00:00
|
|
|
{
|
|
|
|
pinshape_normal_xpm,
|
|
|
|
pinshape_invert_xpm,
|
|
|
|
pinshape_clock_normal_xpm,
|
|
|
|
pinshape_clock_invert_xpm,
|
|
|
|
pinshape_active_low_input_xpm,
|
|
|
|
pinshape_clock_active_low_xpm,
|
|
|
|
pinshape_active_low_output_xpm,
|
2010-09-24 16:00:40 +00:00
|
|
|
pinshape_clock_fall_xpm,
|
|
|
|
pinshape_nonlogic_xpm
|
2010-03-04 09:32:51 +00:00
|
|
|
};
|
|
|
|
|
2009-10-30 19:26:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
static const int pin_style_codes[] =
|
|
|
|
{
|
|
|
|
NONE,
|
|
|
|
INVERT,
|
|
|
|
CLOCK,
|
|
|
|
CLOCK | INVERT,
|
|
|
|
LOWLEVEL_IN,
|
|
|
|
LOWLEVEL_IN | CLOCK,
|
2010-09-24 16:00:40 +00:00
|
|
|
LOWLEVEL_OUT,
|
|
|
|
CLOCK_FALL,
|
|
|
|
NONLOGIC
|
2009-10-30 19:26:25 +00:00
|
|
|
};
|
|
|
|
|
2015-04-02 18:51:47 +00:00
|
|
|
#define PIN_STYLE_CNT DIM( pin_style_codes )
|
2009-10-30 19:26:25 +00:00
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
// bitmaps to show pins electrical type in dialog editor
|
2015-04-02 18:51:47 +00:00
|
|
|
// must have same order than enum ElectricPinType (see lib_pin.h)
|
|
|
|
static const BITMAP_DEF iconsPinsElectricalType[] =
|
2010-03-04 09:32:51 +00:00
|
|
|
{
|
|
|
|
pintype_input_xpm,
|
|
|
|
pintype_output_xpm,
|
|
|
|
pintype_bidi_xpm,
|
|
|
|
pintype_3states_xpm,
|
|
|
|
pintype_passive_xpm,
|
|
|
|
pintype_notspecif_xpm,
|
|
|
|
pintype_powerinput_xpm,
|
|
|
|
pintype_poweroutput_xpm,
|
|
|
|
pintype_opencoll_xpm,
|
|
|
|
pintype_openemit_xpm,
|
|
|
|
pintype_noconnect_xpm
|
|
|
|
};
|
2009-10-30 19:26:25 +00:00
|
|
|
|
2015-04-02 18:51:47 +00:00
|
|
|
#define PIN_ELECTRICAL_TYPE_CNT DIM( iconsPinsElectricalType )
|
|
|
|
|
|
|
|
|
2015-04-07 13:19:30 +00:00
|
|
|
const wxString LIB_PIN::GetCanonicalElectricalTypeName( unsigned aType )
|
2015-04-02 18:51:47 +00:00
|
|
|
{
|
|
|
|
// These strings are the canonical name of the electrictal type
|
|
|
|
// Not translated, no space in name, only ASCII chars.
|
|
|
|
// to use when the string name must be known and well defined
|
|
|
|
// must have same order than enum ElectricPinType (see lib_pin.h)
|
|
|
|
static const wxChar* msgPinElectricType[] =
|
|
|
|
{
|
|
|
|
wxT( "input" ),
|
|
|
|
wxT( "output" ),
|
|
|
|
wxT( "BiDi" ),
|
|
|
|
wxT( "3state" ),
|
|
|
|
wxT( "passive" ),
|
|
|
|
wxT( "unspc" ),
|
|
|
|
wxT( "power_in" ),
|
|
|
|
wxT( "power_out" ),
|
|
|
|
wxT( "openCol" ),
|
|
|
|
wxT( "openEm" ),
|
|
|
|
wxT( "NotConnected" ),
|
|
|
|
wxT( "???" )
|
|
|
|
};
|
|
|
|
|
2015-04-07 13:19:30 +00:00
|
|
|
if( aType > PIN_NMAX )
|
2015-04-02 18:51:47 +00:00
|
|
|
aType = PIN_NMAX;
|
|
|
|
|
|
|
|
return msgPinElectricType[ aType ];
|
|
|
|
}
|
2010-12-07 16:10:42 +00:00
|
|
|
|
2009-10-05 17:52:41 +00:00
|
|
|
|
2015-04-02 18:51:47 +00:00
|
|
|
// Helper functions to get the pin orientation name from pin_orientation_codes
|
|
|
|
// Note: the strings are *not* static because they are translated and must be built
|
|
|
|
// on the fly, to be properly translated
|
2009-10-05 17:52:41 +00:00
|
|
|
|
2015-04-07 13:19:30 +00:00
|
|
|
static const wxString getPinOrientationName( unsigned aPinOrientationCode )
|
2009-06-13 17:06:07 +00:00
|
|
|
{
|
2015-04-02 18:51:47 +00:00
|
|
|
/* Note: The following name lists are sentence capitalized per the GNOME UI
|
|
|
|
* standards for list controls. Please do not change the capitalization
|
|
|
|
* of these strings unless the GNOME UI standards are changed.
|
|
|
|
*/
|
|
|
|
const wxString pin_orientation_names[] =
|
|
|
|
{
|
|
|
|
_( "Right" ),
|
|
|
|
_( "Left" ),
|
|
|
|
_( "Up" ),
|
2015-04-03 09:13:06 +00:00
|
|
|
_( "Down" ),
|
|
|
|
wxT( "???" )
|
2015-04-02 18:51:47 +00:00
|
|
|
};
|
|
|
|
|
2015-04-07 13:19:30 +00:00
|
|
|
if( aPinOrientationCode > PIN_ORIENTATION_CNT )
|
2015-04-03 09:13:06 +00:00
|
|
|
aPinOrientationCode = PIN_ORIENTATION_CNT;
|
|
|
|
|
|
|
|
return pin_orientation_names[ aPinOrientationCode ];
|
2015-04-02 18:51:47 +00:00
|
|
|
}
|
|
|
|
|
2015-04-07 13:19:30 +00:00
|
|
|
const wxString LIB_PIN::GetElectricalTypeName( unsigned aPinsElectricalType )
|
2015-04-02 18:51:47 +00:00
|
|
|
{
|
|
|
|
const wxString pin_electrical_type_names[] =
|
|
|
|
{ // Keep these translated strings not static
|
|
|
|
_( "Input" ),
|
|
|
|
_( "Output" ),
|
|
|
|
_( "Bidirectional" ),
|
|
|
|
_( "Tri-state" ),
|
|
|
|
_( "Passive" ),
|
|
|
|
_( "Unspecified" ),
|
|
|
|
_( "Power input" ),
|
|
|
|
_( "Power output" ),
|
|
|
|
_( "Open collector" ),
|
|
|
|
_( "Open emitter" ),
|
2015-04-03 09:13:06 +00:00
|
|
|
_( "Not connected" ),
|
|
|
|
wxT( "???" )
|
2015-04-02 18:51:47 +00:00
|
|
|
};
|
|
|
|
|
2015-04-07 13:19:30 +00:00
|
|
|
if( aPinsElectricalType > PIN_ELECTRICAL_TYPE_CNT )
|
2015-04-03 09:13:06 +00:00
|
|
|
aPinsElectricalType = PIN_ELECTRICAL_TYPE_CNT;
|
2015-04-02 18:51:47 +00:00
|
|
|
|
2015-04-03 09:13:06 +00:00
|
|
|
return pin_electrical_type_names[ aPinsElectricalType ];
|
2015-04-02 18:51:47 +00:00
|
|
|
}
|
|
|
|
|
2015-04-07 13:19:30 +00:00
|
|
|
static const wxString getPinStyleName( unsigned aPinsStyle )
|
2015-04-02 18:51:47 +00:00
|
|
|
{
|
|
|
|
const wxString pin_style_names[] =
|
|
|
|
{ // Keep these translated strings not static
|
|
|
|
_( "Line" ),
|
|
|
|
_( "Inverted" ),
|
|
|
|
_( "Clock" ),
|
|
|
|
_( "Inverted clock" ),
|
|
|
|
_( "Input low" ),
|
|
|
|
_( "Clock low" ),
|
|
|
|
_( "Output low" ),
|
|
|
|
_( "Falling edge clock" ),
|
2015-04-03 09:13:06 +00:00
|
|
|
_( "NonLogic" ),
|
|
|
|
wxT( "???" )
|
2015-04-02 18:51:47 +00:00
|
|
|
};
|
|
|
|
|
2015-04-07 13:19:30 +00:00
|
|
|
if( aPinsStyle > PIN_STYLE_CNT )
|
2015-04-03 09:13:06 +00:00
|
|
|
aPinsStyle = PIN_STYLE_CNT;
|
2015-04-02 18:51:47 +00:00
|
|
|
|
2015-04-03 09:13:06 +00:00
|
|
|
return pin_style_names[ aPinsStyle ];
|
2015-04-02 18:51:47 +00:00
|
|
|
}
|
2008-09-13 18:59:57 +00:00
|
|
|
|
2009-10-30 19:26:25 +00:00
|
|
|
|
2014-05-13 19:24:12 +00:00
|
|
|
/// Utility for getting the size of the 'internal' pin decorators (as a radius)
|
|
|
|
// i.e. the clock symbols (falling clock is actually external but is of
|
|
|
|
// the same kind)
|
|
|
|
|
|
|
|
static int InternalPinDecoSize( const LIB_PIN &aPin )
|
|
|
|
{
|
|
|
|
return aPin.GetNameTextSize() / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Utility for getting the size of the 'external' pin decorators (as a radius)
|
|
|
|
// i.e. the negation circle, the polarity 'slopes' and the nonlogic
|
|
|
|
// marker
|
|
|
|
static int ExternalPinDecoSize( const LIB_PIN &aPin )
|
|
|
|
{
|
|
|
|
return aPin.GetNumberTextSize() / 2;
|
|
|
|
}
|
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
LIB_PIN::LIB_PIN( LIB_PART* aParent ) :
|
2011-04-27 19:44:32 +00:00
|
|
|
LIB_ITEM( LIB_PIN_T, aParent )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2014-08-25 16:31:32 +00:00
|
|
|
m_length = LIB_EDIT_FRAME::GetDefaultPinLength();
|
2013-05-19 19:35:49 +00:00
|
|
|
m_orientation = PIN_RIGHT; // Pin orient: Up, Down, Left, Right
|
|
|
|
m_shape = NONE; // Pin shape, bitwise.
|
|
|
|
m_type = PIN_UNSPECIFIED; // electrical type of pin
|
|
|
|
m_attributes = 0; // bit 0 != 0: pin invisible
|
|
|
|
m_number = 0; // pin number (i.e. 4 ASCII chars)
|
2014-08-25 16:31:32 +00:00
|
|
|
m_numTextSize = LIB_EDIT_FRAME::GetPinNumDefaultSize();
|
|
|
|
m_nameTextSize = LIB_EDIT_FRAME::GetPinNameDefaultSize();
|
2011-12-08 21:05:43 +00:00
|
|
|
m_width = 0;
|
2011-04-18 20:22:17 +00:00
|
|
|
m_typeName = _( "Pin" );
|
2009-06-13 17:06:07 +00:00
|
|
|
}
|
|
|
|
|
2009-04-06 10:56:17 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
void LIB_PIN::SetName( const wxString& aName )
|
2009-10-30 19:26:25 +00:00
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
wxString tmp = ( aName.IsEmpty() ) ? wxT( "~" ) : aName;
|
2011-04-18 20:22:17 +00:00
|
|
|
|
2009-10-30 19:26:25 +00:00
|
|
|
tmp.Replace( wxT( " " ), wxT( "_" ) );
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_name != tmp )
|
2009-10-30 19:26:25 +00:00
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
m_name = tmp;
|
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( GetParent() == NULL )
|
|
|
|
return;
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
LIB_PINS pinList;
|
2009-10-30 19:26:25 +00:00
|
|
|
GetParent()->GetPins( pinList );
|
|
|
|
|
|
|
|
for( size_t i = 0; i < pinList.size(); i++ )
|
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
if( ( pinList[i]->m_Flags & IS_LINKED ) == 0 || pinList[i]->m_name == m_name )
|
2009-10-30 19:26:25 +00:00
|
|
|
continue;
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
pinList[i]->m_name = m_name;
|
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_PIN::SetNameTextSize( int size )
|
|
|
|
{
|
2011-12-08 21:05:43 +00:00
|
|
|
if( size != m_nameTextSize )
|
2009-10-30 19:26:25 +00:00
|
|
|
{
|
2011-12-08 21:05:43 +00:00
|
|
|
m_nameTextSize = size;
|
2010-12-07 16:10:42 +00:00
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( GetParent() == NULL )
|
|
|
|
return;
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
LIB_PINS pinList;
|
2009-10-30 19:26:25 +00:00
|
|
|
GetParent()->GetPins( pinList );
|
|
|
|
|
|
|
|
for( size_t i = 0; i < pinList.size(); i++ )
|
|
|
|
{
|
2011-12-08 21:05:43 +00:00
|
|
|
if( ( pinList[i]->m_Flags & IS_LINKED ) == 0 || pinList[i]->m_nameTextSize == size )
|
2009-10-30 19:26:25 +00:00
|
|
|
continue;
|
|
|
|
|
2011-12-08 21:05:43 +00:00
|
|
|
pinList[i]->m_nameTextSize = size;
|
2010-12-07 16:10:42 +00:00
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_PIN::SetNumber( const wxString& number )
|
|
|
|
{
|
|
|
|
wxString tmp = ( number.IsEmpty() ) ? wxT( "~" ) : number;
|
2011-04-18 20:22:17 +00:00
|
|
|
|
2009-10-30 19:26:25 +00:00
|
|
|
tmp.Replace( wxT( " " ), wxT( "_" ) );
|
2011-04-18 20:22:17 +00:00
|
|
|
long oldNumber = m_number;
|
2009-10-30 19:26:25 +00:00
|
|
|
SetPinNumFromString( tmp );
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_number != oldNumber )
|
2013-03-30 19:55:26 +00:00
|
|
|
SetFlags( IS_CHANGED );
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2010-02-25 19:45:34 +00:00
|
|
|
/* Others pin numbers marked by EnableEditMode() are not modified
|
|
|
|
* because each pin has its own number
|
|
|
|
*/
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_PIN::SetNumberTextSize( int size )
|
|
|
|
{
|
2011-12-08 21:05:43 +00:00
|
|
|
if( size != m_numTextSize )
|
2009-10-30 19:26:25 +00:00
|
|
|
{
|
2011-12-08 21:05:43 +00:00
|
|
|
m_numTextSize = size;
|
2010-12-07 16:10:42 +00:00
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( GetParent() == NULL )
|
|
|
|
return;
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
LIB_PINS pinList;
|
2009-10-30 19:26:25 +00:00
|
|
|
GetParent()->GetPins( pinList );
|
|
|
|
|
|
|
|
for( size_t i = 0; i < pinList.size(); i++ )
|
|
|
|
{
|
2011-12-08 21:05:43 +00:00
|
|
|
if( ( pinList[i]->m_Flags & IS_LINKED ) == 0 || pinList[i]->m_numTextSize == size )
|
2009-10-30 19:26:25 +00:00
|
|
|
continue;
|
|
|
|
|
2011-12-08 21:05:43 +00:00
|
|
|
pinList[i]->m_numTextSize = size;
|
2010-12-07 16:10:42 +00:00
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_PIN::SetOrientation( int orientation )
|
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_orientation != orientation )
|
2009-10-30 19:26:25 +00:00
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
m_orientation = orientation;
|
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( GetParent() == NULL )
|
|
|
|
return;
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
LIB_PINS pinList;
|
2009-10-30 19:26:25 +00:00
|
|
|
GetParent()->GetPins( pinList );
|
|
|
|
|
|
|
|
for( size_t i = 0; i < pinList.size(); i++ )
|
|
|
|
{
|
2013-06-27 19:12:01 +00:00
|
|
|
if( ( pinList[i]->m_Flags & IS_LINKED ) == 0 ||
|
|
|
|
pinList[i]->m_orientation == orientation )
|
2009-10-30 19:26:25 +00:00
|
|
|
continue;
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
pinList[i]->m_orientation = orientation;
|
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
void LIB_PIN::SetShape( int aShape )
|
2009-10-30 19:26:25 +00:00
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_shape != aShape )
|
2009-10-30 19:26:25 +00:00
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
m_shape = aShape;
|
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( GetParent() == NULL )
|
|
|
|
return;
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
LIB_PINS pinList;
|
2009-10-30 19:26:25 +00:00
|
|
|
GetParent()->GetPins( pinList );
|
|
|
|
|
|
|
|
for( size_t i = 0; i < pinList.size(); i++ )
|
|
|
|
{
|
2011-02-16 10:14:02 +00:00
|
|
|
if( ( pinList[i]->m_Flags & IS_LINKED ) == 0
|
2011-04-18 20:22:17 +00:00
|
|
|
|| pinList[i]->m_Convert != m_Convert
|
|
|
|
|| pinList[i]->m_shape == aShape )
|
2009-10-30 19:26:25 +00:00
|
|
|
continue;
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
pinList[i]->m_shape = aShape;
|
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
void LIB_PIN::SetType( int aType )
|
2009-10-30 19:26:25 +00:00
|
|
|
{
|
2013-06-28 06:31:24 +00:00
|
|
|
if( aType < 0 )
|
|
|
|
aType = 0;
|
|
|
|
|
|
|
|
if( aType >= (int)PIN_ELECTRICAL_TYPE_CNT )
|
|
|
|
aType = PIN_ELECTRICAL_TYPE_CNT - 1;
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_type != aType )
|
2009-10-30 19:26:25 +00:00
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
m_type = aType;
|
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( GetParent() == NULL )
|
|
|
|
return;
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
LIB_PINS pinList;
|
2009-10-30 19:26:25 +00:00
|
|
|
GetParent()->GetPins( pinList );
|
|
|
|
|
|
|
|
for( size_t i = 0; i < pinList.size(); i++ )
|
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
if( ( pinList[i]->m_Flags & IS_LINKED ) == 0 || pinList[i]->m_type == aType )
|
2009-10-30 19:26:25 +00:00
|
|
|
continue;
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
pinList[i]->m_type = aType;
|
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_PIN::SetLength( int length )
|
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_length != length )
|
2009-10-30 19:26:25 +00:00
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
m_length = length;
|
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( GetParent() == NULL )
|
|
|
|
return;
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
LIB_PINS pinList;
|
2009-10-30 19:26:25 +00:00
|
|
|
GetParent()->GetPins( pinList );
|
|
|
|
|
|
|
|
for( size_t i = 0; i < pinList.size(); i++ )
|
|
|
|
{
|
|
|
|
if( ( pinList[i]->m_Flags & IS_LINKED ) == 0
|
2011-04-18 20:22:17 +00:00
|
|
|
|| pinList[i]->m_Convert != m_Convert
|
|
|
|
|| pinList[i]->m_length == length )
|
2009-10-30 19:26:25 +00:00
|
|
|
continue;
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
pinList[i]->m_length = length;
|
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_PIN::SetPartNumber( int part )
|
|
|
|
{
|
|
|
|
if( m_Unit == part )
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_Unit = part;
|
2010-12-07 16:10:42 +00:00
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
|
|
|
|
if( m_Unit == 0 )
|
|
|
|
{
|
|
|
|
LIB_PIN* pin;
|
|
|
|
LIB_PIN* tmp = GetParent()->GetNextPin();
|
|
|
|
|
|
|
|
while( tmp != NULL )
|
|
|
|
{
|
|
|
|
pin = tmp;
|
|
|
|
tmp = GetParent()->GetNextPin( pin );
|
|
|
|
|
|
|
|
if( pin->m_Flags == 0 || pin == this
|
2011-04-18 20:22:17 +00:00
|
|
|
|| ( m_Convert && ( m_Convert != pin->m_Convert ) )
|
|
|
|
|| ( m_position != pin->m_position )
|
|
|
|
|| ( pin->m_orientation != m_orientation ) )
|
2009-10-30 19:26:25 +00:00
|
|
|
continue;
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
GetParent()->RemoveDrawItem( (LIB_ITEM*) pin );
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_PIN::SetConversion( int style )
|
|
|
|
{
|
|
|
|
if( m_Convert == style )
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_Convert = style;
|
2013-03-30 19:55:26 +00:00
|
|
|
SetFlags( IS_CHANGED );
|
2009-10-30 19:26:25 +00:00
|
|
|
|
|
|
|
if( style == 0 )
|
|
|
|
{
|
|
|
|
LIB_PIN* pin;
|
|
|
|
LIB_PIN* tmp = GetParent()->GetNextPin();
|
|
|
|
|
|
|
|
while( tmp != NULL )
|
|
|
|
{
|
|
|
|
pin = tmp;
|
|
|
|
tmp = GetParent()->GetNextPin( pin );
|
|
|
|
|
|
|
|
if( ( pin->m_Flags & IS_LINKED ) == 0
|
2011-04-18 20:22:17 +00:00
|
|
|
|| ( pin == this )
|
|
|
|
|| ( m_Unit && ( m_Unit != pin->m_Unit ) )
|
|
|
|
|| ( m_position != pin->m_position )
|
|
|
|
|| ( pin->m_orientation != m_orientation ) )
|
2009-10-30 19:26:25 +00:00
|
|
|
continue;
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
GetParent()->RemoveDrawItem( (LIB_ITEM*) pin );
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_PIN::SetVisible( bool visible )
|
|
|
|
{
|
|
|
|
if( visible == IsVisible() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( visible )
|
2011-05-06 13:56:26 +00:00
|
|
|
m_attributes &= ~PIN_INVISIBLE;
|
2009-10-30 19:26:25 +00:00
|
|
|
else
|
2011-05-06 13:56:26 +00:00
|
|
|
m_attributes |= PIN_INVISIBLE;
|
2009-10-30 19:26:25 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
|
|
|
|
if( GetParent() == NULL )
|
|
|
|
return;
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
LIB_PINS pinList;
|
2009-10-30 19:26:25 +00:00
|
|
|
GetParent()->GetPins( pinList );
|
|
|
|
|
|
|
|
for( size_t i = 0; i < pinList.size(); i++ )
|
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
if( ( pinList[i]->m_Flags & IS_LINKED ) == 0 || pinList[i]->IsVisible() == visible )
|
2009-10-30 19:26:25 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if( visible )
|
2011-05-06 13:56:26 +00:00
|
|
|
pinList[i]->m_attributes &= ~PIN_INVISIBLE;
|
2009-10-30 19:26:25 +00:00
|
|
|
else
|
2011-05-06 13:56:26 +00:00
|
|
|
pinList[i]->m_attributes |= PIN_INVISIBLE;
|
2009-10-30 19:26:25 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
SetModified();
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_PIN::EnableEditMode( bool enable, bool editPinByPin )
|
|
|
|
{
|
2011-04-27 19:44:32 +00:00
|
|
|
LIB_PINS pinList;
|
2009-10-30 19:26:25 +00:00
|
|
|
|
|
|
|
if( GetParent() == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
GetParent()->GetPins( pinList );
|
|
|
|
|
|
|
|
for( size_t i = 0; i < pinList.size(); i++ )
|
|
|
|
{
|
|
|
|
if( pinList[i] == this )
|
|
|
|
continue;
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( ( pinList[i]->m_position == m_position )
|
2011-04-18 20:22:17 +00:00
|
|
|
&& ( pinList[i]->m_orientation == m_orientation )
|
|
|
|
&& !IsNew()
|
|
|
|
&& editPinByPin == false
|
|
|
|
&& enable )
|
2013-03-30 19:55:26 +00:00
|
|
|
pinList[i]->SetFlags( IS_LINKED | IN_EDIT );
|
2009-10-30 19:26:25 +00:00
|
|
|
else
|
2013-03-30 19:55:26 +00:00
|
|
|
pinList[i]->ClearFlags( IS_LINKED | IN_EDIT );
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
bool LIB_PIN::HitTest( const wxPoint& aPosition ) const
|
2009-06-13 17:06:07 +00:00
|
|
|
{
|
2011-04-27 19:44:32 +00:00
|
|
|
return HitTest( aPosition, 0, DefaultTransform );
|
2009-06-13 17:06:07 +00:00
|
|
|
}
|
|
|
|
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
bool LIB_PIN::HitTest( const wxPoint &aPosition, int aThreshold, const TRANSFORM& aTransform ) const
|
2009-06-13 17:06:07 +00:00
|
|
|
{
|
2011-05-25 10:42:56 +00:00
|
|
|
if( aThreshold < 0 )
|
|
|
|
aThreshold = 0;
|
|
|
|
|
2011-05-05 17:45:35 +00:00
|
|
|
TRANSFORM transform = DefaultTransform;
|
|
|
|
DefaultTransform = aTransform;
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
EDA_RECT rect = GetBoundingBox();
|
|
|
|
rect.Inflate( aThreshold );
|
2009-06-13 17:06:07 +00:00
|
|
|
|
2011-05-05 17:45:35 +00:00
|
|
|
//Restore matrix
|
|
|
|
DefaultTransform = transform;
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
return rect.Contains( aPosition );
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-01 15:06:26 +00:00
|
|
|
bool LIB_PIN::Save( OUTPUTFORMATTER& aFormatter )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
|
|
|
wxString StringPinNum;
|
|
|
|
int Etype;
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
switch( m_type )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
|
|
|
default:
|
|
|
|
case PIN_INPUT:
|
|
|
|
Etype = 'I';
|
|
|
|
break;
|
2009-04-06 10:56:17 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
case PIN_OUTPUT:
|
|
|
|
Etype = 'O';
|
|
|
|
break;
|
2009-04-06 10:56:17 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
case PIN_BIDI:
|
|
|
|
Etype = 'B';
|
|
|
|
break;
|
2009-04-06 10:56:17 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
case PIN_TRISTATE:
|
|
|
|
Etype = 'T';
|
|
|
|
break;
|
2009-04-06 10:56:17 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
case PIN_PASSIVE:
|
|
|
|
Etype = 'P';
|
|
|
|
break;
|
2009-04-06 10:56:17 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
case PIN_UNSPECIFIED:
|
|
|
|
Etype = 'U';
|
|
|
|
break;
|
2009-04-06 10:56:17 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
case PIN_POWER_IN:
|
|
|
|
Etype = 'W';
|
|
|
|
break;
|
2009-04-06 10:56:17 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
case PIN_POWER_OUT:
|
|
|
|
Etype = 'w';
|
|
|
|
break;
|
2009-04-06 10:56:17 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
case PIN_OPENCOLLECTOR:
|
|
|
|
Etype = 'C';
|
|
|
|
break;
|
2009-04-06 10:56:17 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
case PIN_OPENEMITTER:
|
|
|
|
Etype = 'E';
|
|
|
|
break;
|
2010-10-22 07:52:55 +00:00
|
|
|
|
|
|
|
case PIN_NC:
|
|
|
|
Etype = 'N';
|
|
|
|
break;
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
PinStringNum( StringPinNum );
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
if( StringPinNum.IsEmpty() )
|
|
|
|
StringPinNum = wxT( "~" );
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( !m_name.IsEmpty() )
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
2011-11-01 15:06:26 +00:00
|
|
|
if( aFormatter.Print( 0, "X %s", TO_UTF8( m_name ) ) < 0 )
|
2009-09-14 13:24:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
2009-04-05 20:49:15 +00:00
|
|
|
else
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
2011-11-01 15:06:26 +00:00
|
|
|
if( aFormatter.Print( 0, "X ~" ) < 0 )
|
2009-09-14 13:24:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2011-11-01 15:06:26 +00:00
|
|
|
if( aFormatter.Print( 0, " %s %d %d %d %c %d %d %d %d %c",
|
|
|
|
TO_UTF8( StringPinNum ), m_position.x, m_position.y,
|
2011-12-08 21:05:43 +00:00
|
|
|
(int) m_length, (int) m_orientation, m_numTextSize, m_nameTextSize,
|
2011-11-01 15:06:26 +00:00
|
|
|
m_Unit, m_Convert, Etype ) < 0 )
|
2009-09-14 13:24:17 +00:00
|
|
|
return false;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2011-05-06 13:56:26 +00:00
|
|
|
if( m_shape || !IsVisible() )
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
2011-11-01 15:06:26 +00:00
|
|
|
if( aFormatter.Print( 0, " " ) < 0 )
|
2009-09-14 13:24:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
2011-11-01 15:06:26 +00:00
|
|
|
|
|
|
|
if( !IsVisible() && aFormatter.Print( 0, "N" ) < 0 )
|
2009-09-14 13:24:17 +00:00
|
|
|
return false;
|
2011-11-01 15:06:26 +00:00
|
|
|
|
|
|
|
if( m_shape & INVERT && aFormatter.Print( 0, "I" ) < 0 )
|
2009-09-14 13:24:17 +00:00
|
|
|
return false;
|
2011-11-01 15:06:26 +00:00
|
|
|
|
|
|
|
if( m_shape & CLOCK && aFormatter.Print( 0, "C" ) < 0 )
|
2009-09-14 13:24:17 +00:00
|
|
|
return false;
|
2011-11-01 15:06:26 +00:00
|
|
|
|
|
|
|
if( m_shape & LOWLEVEL_IN && aFormatter.Print( 0, "L" ) < 0 )
|
2009-09-14 13:24:17 +00:00
|
|
|
return false;
|
2011-11-01 15:06:26 +00:00
|
|
|
|
|
|
|
if( m_shape & LOWLEVEL_OUT && aFormatter.Print( 0, "V" ) < 0 )
|
2009-09-14 13:24:17 +00:00
|
|
|
return false;
|
2011-11-01 15:06:26 +00:00
|
|
|
|
|
|
|
if( m_shape & CLOCK_FALL && aFormatter.Print( 0, "F" ) < 0 )
|
2010-09-26 05:35:29 +00:00
|
|
|
return false;
|
2011-11-01 15:06:26 +00:00
|
|
|
|
|
|
|
if( m_shape & NONLOGIC && aFormatter.Print( 0, "X" ) < 0 )
|
2010-09-26 05:35:29 +00:00
|
|
|
return false;
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-11-01 15:06:26 +00:00
|
|
|
if( aFormatter.Print( 0, "\n" ) < 0 )
|
2009-09-14 13:24:17 +00:00
|
|
|
return false;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2013-03-30 19:55:26 +00:00
|
|
|
ClearFlags( IS_CHANGED );
|
2009-10-30 19:26:25 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-31 20:49:48 +00:00
|
|
|
bool LIB_PIN::Load( LINE_READER& aLineReader, wxString& aErrorMsg )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2009-04-06 10:56:17 +00:00
|
|
|
int i, j;
|
2009-04-05 20:49:15 +00:00
|
|
|
char pinAttrs[64];
|
|
|
|
char pinName[256];
|
|
|
|
char pinNum[64];
|
|
|
|
char pinOrient[64];
|
|
|
|
char pinType[64];
|
2011-10-31 20:49:48 +00:00
|
|
|
char* line = (char*) aLineReader;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
*pinAttrs = 0;
|
|
|
|
|
|
|
|
i = sscanf( line + 2, "%s %s %d %d %d %s %d %d %d %d %s %s", pinName,
|
2011-12-08 21:05:43 +00:00
|
|
|
pinNum, &m_position.x, &m_position.y, &m_length, pinOrient, &m_numTextSize,
|
|
|
|
&m_nameTextSize, &m_Unit, &m_Convert, pinType, pinAttrs );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
if( i < 11 )
|
|
|
|
{
|
2011-10-31 20:49:48 +00:00
|
|
|
aErrorMsg.Printf( wxT( "pin only had %d parameters of the required 11 or 12" ), i );
|
2009-04-05 20:49:15 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
m_orientation = pinOrient[0] & 255;
|
|
|
|
strncpy( (char*) &m_number, pinNum, 4 );
|
2011-02-28 18:36:19 +00:00
|
|
|
m_name = FROM_UTF8( pinName );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
switch( *pinType & 255 )
|
|
|
|
{
|
|
|
|
case 'I':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_type = PIN_INPUT;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'O':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_type = PIN_OUTPUT;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'B':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_type = PIN_BIDI;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'T':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_type = PIN_TRISTATE;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'P':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_type = PIN_PASSIVE;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'U':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_type = PIN_UNSPECIFIED;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'W':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_type = PIN_POWER_IN;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'w':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_type = PIN_POWER_OUT;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'C':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_type = PIN_OPENCOLLECTOR;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'E':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_type = PIN_OPENEMITTER;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
2010-10-22 07:52:55 +00:00
|
|
|
case 'N':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_type = PIN_NC;
|
2010-10-22 07:52:55 +00:00
|
|
|
break;
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
default:
|
2011-10-31 20:49:48 +00:00
|
|
|
aErrorMsg.Printf( wxT( "unknown pin type [%c]" ), *pinType & 255 );
|
2009-04-05 20:49:15 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-09-04 18:57:37 +00:00
|
|
|
if( i == 12 ) /* Special Symbol defined */
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
|
|
|
for( j = strlen( pinAttrs ); j > 0; )
|
|
|
|
{
|
|
|
|
switch( pinAttrs[--j] )
|
|
|
|
{
|
|
|
|
case '~':
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'N':
|
2011-05-06 13:56:26 +00:00
|
|
|
m_attributes |= PIN_INVISIBLE;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'I':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_shape |= INVERT;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'C':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_shape |= CLOCK;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'L':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_shape |= LOWLEVEL_IN;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'V':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_shape |= LOWLEVEL_OUT;
|
2009-04-05 20:49:15 +00:00
|
|
|
break;
|
|
|
|
|
2010-09-26 05:35:29 +00:00
|
|
|
case 'F':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_shape |= CLOCK_FALL;
|
2010-09-26 05:35:29 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'X':
|
2010-12-07 16:10:42 +00:00
|
|
|
m_shape |= NONLOGIC;
|
2010-09-26 05:35:29 +00:00
|
|
|
break;
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
default:
|
2011-10-31 20:49:48 +00:00
|
|
|
aErrorMsg.Printf( wxT( "unknown pin attribute [%c]" ), pinAttrs[j] );
|
2009-04-05 20:49:15 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-18 20:22:17 +00:00
|
|
|
int LIB_PIN::GetPenSize() const
|
2009-06-30 17:57:27 +00:00
|
|
|
{
|
2012-09-28 17:47:41 +00:00
|
|
|
return ( m_width == 0 ) ? GetDefaultLineThickness() : m_width;
|
2009-06-30 17:57:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void LIB_PIN::drawGraphic( EDA_DRAW_PANEL* aPanel,
|
|
|
|
wxDC* aDC,
|
|
|
|
const wxPoint& aOffset,
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T aColor,
|
2012-09-01 13:38:27 +00:00
|
|
|
GR_DRAWMODE aDrawMode,
|
2011-01-21 19:30:59 +00:00
|
|
|
void* aData,
|
|
|
|
const TRANSFORM& aTransform )
|
2008-09-13 18:59:57 +00:00
|
|
|
{
|
2011-05-06 13:56:26 +00:00
|
|
|
// Invisible pins are only drawn on request.
|
2012-09-28 17:47:41 +00:00
|
|
|
// They are drawn in GetInvisibleItemColor().
|
2011-12-09 16:37:11 +00:00
|
|
|
// in schematic, they are drawn only if m_showAllPins is true.
|
2011-05-06 13:56:26 +00:00
|
|
|
// In other windows, they are always drawn because we must see them.
|
|
|
|
if( ! IsVisible() )
|
2008-09-19 08:19:15 +00:00
|
|
|
{
|
2011-05-06 13:56:26 +00:00
|
|
|
EDA_DRAW_FRAME* frame = NULL;
|
2011-12-09 16:37:11 +00:00
|
|
|
|
2011-05-06 13:56:26 +00:00
|
|
|
if( aPanel && aPanel->GetParent() )
|
|
|
|
frame = (EDA_DRAW_FRAME*)aPanel->GetParent();
|
|
|
|
|
2014-04-19 18:47:20 +00:00
|
|
|
if( frame && frame->IsType( FRAME_SCH ) &&
|
2011-12-09 16:37:11 +00:00
|
|
|
! ((SCH_EDIT_FRAME*)frame)->GetShowAllPins() )
|
2008-09-19 08:19:15 +00:00
|
|
|
return;
|
2011-05-06 13:56:26 +00:00
|
|
|
|
2012-09-28 17:47:41 +00:00
|
|
|
aColor = GetInvisibleItemColor();
|
2008-09-19 08:19:15 +00:00
|
|
|
}
|
|
|
|
|
2015-02-28 16:56:09 +00:00
|
|
|
// aData is used here as bool: if not null, draw pin texts
|
|
|
|
//(i.e = true to draw pin texts, false to draw only the pin shape, which
|
|
|
|
// is useful to draw moving component in fast mode)
|
2009-09-04 18:57:37 +00:00
|
|
|
|
2015-02-28 16:56:09 +00:00
|
|
|
LIB_PART* Entry = GetParent();
|
|
|
|
bool drawPinText = aData ? true : false;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
2009-09-02 18:12:45 +00:00
|
|
|
/* Calculate pin orient taking in account the component orientation. */
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
int orient = PinDrawOrient( aTransform );
|
2008-09-13 18:59:57 +00:00
|
|
|
|
|
|
|
/* Calculate the pin position */
|
2010-12-07 16:10:42 +00:00
|
|
|
wxPoint pos1 = aTransform.TransformCoordinate( m_position ) + aOffset;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
2009-10-30 19:26:25 +00:00
|
|
|
/* Drawing from the pin and the special symbol combination */
|
2008-09-13 18:59:57 +00:00
|
|
|
DrawPinSymbol( aPanel, aDC, pos1, orient, aDrawMode, aColor );
|
|
|
|
|
2015-02-28 16:56:09 +00:00
|
|
|
if( drawPinText )
|
2008-09-13 18:59:57 +00:00
|
|
|
{
|
2010-06-24 18:31:43 +00:00
|
|
|
DrawPinTexts( aPanel, aDC, pos1, orient, Entry->GetPinNameOffset(),
|
|
|
|
Entry->ShowPinNumbers(), Entry->ShowPinNames(),
|
2008-12-08 15:27:13 +00:00
|
|
|
aColor, aDrawMode );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
2009-10-01 14:17:47 +00:00
|
|
|
|
|
|
|
/* Set to one (1) to draw bounding box around pin to validate bounding
|
|
|
|
* box calculation. */
|
|
|
|
#if 0
|
2011-12-29 20:11:42 +00:00
|
|
|
EDA_RECT* clipbox = aPanel ? aPanel->GetClipBox() : NULL;
|
2011-05-05 17:45:35 +00:00
|
|
|
TRANSFORM transform = DefaultTransform;
|
|
|
|
DefaultTransform = aTransform;
|
2011-04-18 20:22:17 +00:00
|
|
|
EDA_RECT bBox = GetBoundingBox();
|
|
|
|
bBox.Move( aOffset );
|
2011-05-05 17:45:35 +00:00
|
|
|
//Restore matrix
|
|
|
|
DefaultTransform = transform;
|
2011-04-18 20:22:17 +00:00
|
|
|
GRRect( clipbox, aDC, bBox, 0, LIGHTMAGENTA );
|
2009-10-01 14:17:47 +00:00
|
|
|
#endif
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void LIB_PIN::DrawPinSymbol( EDA_DRAW_PANEL* aPanel,
|
|
|
|
wxDC* aDC,
|
|
|
|
const wxPoint& aPinPos,
|
|
|
|
int aOrient,
|
2012-09-01 13:38:27 +00:00
|
|
|
GR_DRAWMODE aDrawMode,
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T aColor )
|
2008-09-13 18:59:57 +00:00
|
|
|
{
|
2011-04-18 20:22:17 +00:00
|
|
|
int MapX1, MapY1, x1, y1;
|
|
|
|
int width = GetPenSize();
|
|
|
|
int posX = aPinPos.x, posY = aPinPos.y, len = m_length;
|
2011-12-29 20:11:42 +00:00
|
|
|
EDA_RECT* clipbox = aPanel ? aPanel->GetClipBox() : NULL;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
2013-04-04 21:35:01 +00:00
|
|
|
EDA_COLOR_T color = GetLayerColor( LAYER_PIN );
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2008-09-13 18:59:57 +00:00
|
|
|
if( aColor < 0 ) // Used normal color or selected color
|
|
|
|
{
|
2011-12-21 13:42:02 +00:00
|
|
|
if( IsSelected() )
|
2012-09-28 17:47:41 +00:00
|
|
|
color = GetItemSelectedColor();
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
color = aColor;
|
|
|
|
|
|
|
|
GRSetDrawMode( aDC, aDrawMode );
|
|
|
|
|
2010-11-18 21:10:52 +00:00
|
|
|
MapX1 = MapY1 = 0;
|
2011-04-18 20:22:17 +00:00
|
|
|
x1 = posX;
|
|
|
|
y1 = posY;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
|
|
|
switch( aOrient )
|
|
|
|
{
|
|
|
|
case PIN_UP:
|
2011-04-18 20:22:17 +00:00
|
|
|
y1 = posY - len;
|
2010-11-18 21:10:52 +00:00
|
|
|
MapY1 = 1;
|
2008-09-13 18:59:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_DOWN:
|
2011-04-18 20:22:17 +00:00
|
|
|
y1 = posY + len;
|
2010-11-18 21:10:52 +00:00
|
|
|
MapY1 = -1;
|
2008-09-13 18:59:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_LEFT:
|
2011-04-18 20:22:17 +00:00
|
|
|
x1 = posX - len;
|
2010-11-18 21:10:52 +00:00
|
|
|
MapX1 = 1;
|
2008-09-13 18:59:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_RIGHT:
|
2011-04-18 20:22:17 +00:00
|
|
|
x1 = posX + len;
|
2010-11-18 21:10:52 +00:00
|
|
|
MapX1 = -1;
|
2008-09-13 18:59:57 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_shape & INVERT )
|
2008-09-13 18:59:57 +00:00
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
const int radius = ExternalPinDecoSize( *this );
|
|
|
|
GRCircle( clipbox, aDC, MapX1 * radius + x1,
|
|
|
|
MapY1 * radius + y1,
|
|
|
|
radius, width, color );
|
2008-09-13 18:59:57 +00:00
|
|
|
|
2014-05-13 19:24:12 +00:00
|
|
|
GRMoveTo( MapX1 * radius * 2 + x1,
|
|
|
|
MapY1 * radius * 2 + y1 );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox, aDC, posX, posY, width, color );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
2010-12-07 16:10:42 +00:00
|
|
|
else if( m_shape & CLOCK_FALL ) /* an alternative for Inverted Clock */
|
2010-09-24 16:00:40 +00:00
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
const int clock_size = InternalPinDecoSize( *this );
|
|
|
|
if( MapY1 == 0 ) /* MapX1 = +- 1 */
|
|
|
|
{
|
|
|
|
GRMoveTo( x1, y1 + clock_size );
|
|
|
|
GRLineTo( clipbox,
|
|
|
|
aDC,
|
|
|
|
x1 + MapX1 * clock_size * 2,
|
|
|
|
y1,
|
|
|
|
width,
|
|
|
|
color );
|
|
|
|
GRLineTo( clipbox,
|
|
|
|
aDC,
|
|
|
|
x1,
|
|
|
|
y1 - clock_size,
|
|
|
|
width,
|
|
|
|
color );
|
|
|
|
}
|
|
|
|
else /* MapX1 = 0 */
|
|
|
|
{
|
|
|
|
GRMoveTo( x1 + clock_size, y1 );
|
|
|
|
GRLineTo( clipbox,
|
|
|
|
aDC,
|
|
|
|
x1,
|
|
|
|
y1 + MapY1 * clock_size * 2,
|
|
|
|
width,
|
|
|
|
color );
|
|
|
|
GRLineTo( clipbox,
|
|
|
|
aDC,
|
|
|
|
x1 - clock_size,
|
|
|
|
y1,
|
|
|
|
width,
|
|
|
|
color );
|
|
|
|
}
|
|
|
|
GRMoveTo( MapX1 * clock_size * 2 + x1,
|
|
|
|
MapY1 * clock_size * 2 + y1 );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox, aDC, posX, posY, width, color );
|
2010-09-24 16:00:40 +00:00
|
|
|
}
|
2008-09-13 18:59:57 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
GRMoveTo( x1, y1 );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox, aDC, posX, posY, width, color );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_shape & CLOCK )
|
2008-09-13 18:59:57 +00:00
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
const int clock_size = InternalPinDecoSize( *this );
|
2008-09-13 18:59:57 +00:00
|
|
|
if( MapY1 == 0 ) /* MapX1 = +- 1 */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
GRMoveTo( x1, y1 + clock_size );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox,
|
2009-04-06 10:56:17 +00:00
|
|
|
aDC,
|
2014-05-13 19:24:12 +00:00
|
|
|
x1 - MapX1 * clock_size * 2,
|
2009-04-06 10:56:17 +00:00
|
|
|
y1,
|
|
|
|
width,
|
|
|
|
color );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox,
|
2009-04-06 10:56:17 +00:00
|
|
|
aDC,
|
|
|
|
x1,
|
2014-05-13 19:24:12 +00:00
|
|
|
y1 - clock_size,
|
2009-04-06 10:56:17 +00:00
|
|
|
width,
|
2008-12-08 15:27:13 +00:00
|
|
|
color );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
else /* MapX1 = 0 */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
GRMoveTo( x1 + clock_size, y1 );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox,
|
2009-04-06 10:56:17 +00:00
|
|
|
aDC,
|
|
|
|
x1,
|
2014-05-13 19:24:12 +00:00
|
|
|
y1 - MapY1 * clock_size * 2,
|
2009-04-06 10:56:17 +00:00
|
|
|
width,
|
|
|
|
color );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox,
|
2009-04-06 10:56:17 +00:00
|
|
|
aDC,
|
2014-05-13 19:24:12 +00:00
|
|
|
x1 - clock_size,
|
2009-04-06 10:56:17 +00:00
|
|
|
y1,
|
|
|
|
width,
|
2008-12-08 15:27:13 +00:00
|
|
|
color );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-18 20:22:17 +00:00
|
|
|
if( m_shape & LOWLEVEL_IN ) /* IEEE symbol "Active Low Input" */
|
2008-09-13 18:59:57 +00:00
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
const int symbol_size = ExternalPinDecoSize( *this );
|
2008-09-13 18:59:57 +00:00
|
|
|
if( MapY1 == 0 ) /* MapX1 = +- 1 */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
GRMoveTo( x1 + MapX1 * symbol_size * 2, y1 );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox,
|
2009-04-06 10:56:17 +00:00
|
|
|
aDC,
|
2014-05-13 19:24:12 +00:00
|
|
|
x1 + MapX1 * symbol_size * 2,
|
|
|
|
y1 - symbol_size * 2,
|
2009-04-06 10:56:17 +00:00
|
|
|
width,
|
|
|
|
color );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox, aDC, x1, y1, width, color );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
else /* MapX1 = 0 */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
GRMoveTo( x1, y1 + MapY1 * symbol_size * 2 );
|
|
|
|
GRLineTo( clipbox, aDC, x1 - symbol_size * 2,
|
|
|
|
y1 + MapY1 * symbol_size * 2, width, color );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox, aDC, x1, y1, width, color );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-18 20:22:17 +00:00
|
|
|
if( m_shape & LOWLEVEL_OUT ) /* IEEE symbol "Active Low Output" */
|
2008-09-13 18:59:57 +00:00
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
const int symbol_size = ExternalPinDecoSize( *this );
|
2008-09-13 18:59:57 +00:00
|
|
|
if( MapY1 == 0 ) /* MapX1 = +- 1 */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
GRMoveTo( x1, y1 - symbol_size * 2 );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox,
|
2009-04-06 10:56:17 +00:00
|
|
|
aDC,
|
2014-05-13 19:24:12 +00:00
|
|
|
x1 + MapX1 * symbol_size * 2,
|
2009-04-06 10:56:17 +00:00
|
|
|
y1,
|
|
|
|
width,
|
|
|
|
color );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
else /* MapX1 = 0 */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
GRMoveTo( x1 - symbol_size * 2, y1 );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox,
|
2009-04-06 10:56:17 +00:00
|
|
|
aDC,
|
|
|
|
x1,
|
2014-05-13 19:24:12 +00:00
|
|
|
y1 + MapY1 * symbol_size * 2,
|
2009-04-06 10:56:17 +00:00
|
|
|
width,
|
|
|
|
color );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
}
|
2010-12-07 16:10:42 +00:00
|
|
|
else if( m_shape & NONLOGIC ) /* NonLogic pin symbol */
|
2010-09-24 16:00:40 +00:00
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
const int symbol_size = ExternalPinDecoSize( *this );
|
|
|
|
GRMoveTo( x1 - (MapX1 + MapY1) * symbol_size,
|
|
|
|
y1 - (MapY1 - MapX1) * symbol_size );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox,
|
2010-09-24 16:00:40 +00:00
|
|
|
aDC,
|
2014-05-13 19:24:12 +00:00
|
|
|
x1 + (MapX1 + MapY1) * symbol_size,
|
|
|
|
y1 + (MapY1 - MapX1) * symbol_size,
|
2010-09-24 16:00:40 +00:00
|
|
|
width,
|
|
|
|
color );
|
2014-05-13 19:24:12 +00:00
|
|
|
GRMoveTo( x1 - (MapX1 - MapY1) * symbol_size,
|
|
|
|
y1 - (MapY1 + MapX1) * symbol_size );
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLineTo( clipbox,
|
2010-09-24 16:00:40 +00:00
|
|
|
aDC,
|
2014-05-13 19:24:12 +00:00
|
|
|
x1 + (MapX1 - MapY1) * symbol_size,
|
|
|
|
y1 + (MapY1 + MapX1) * symbol_size,
|
2010-09-24 16:00:40 +00:00
|
|
|
width,
|
|
|
|
color );
|
|
|
|
}
|
|
|
|
|
2011-10-31 20:49:48 +00:00
|
|
|
// Draw the pin end target (active end of the pin)
|
2011-04-18 20:22:17 +00:00
|
|
|
BASE_SCREEN* screen = aPanel ? aPanel->GetScreen() : NULL;
|
2011-05-25 10:42:56 +00:00
|
|
|
#define NCSYMB_PIN_DIM TARGET_PIN_RADIUS
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_type == PIN_NC ) // Draw a N.C. symbol
|
2010-10-22 07:52:55 +00:00
|
|
|
{
|
2011-04-18 20:22:17 +00:00
|
|
|
GRLine( clipbox, aDC,
|
|
|
|
posX - NCSYMB_PIN_DIM, posY - NCSYMB_PIN_DIM,
|
|
|
|
posX + NCSYMB_PIN_DIM, posY + NCSYMB_PIN_DIM,
|
|
|
|
width, color );
|
|
|
|
GRLine( clipbox, aDC,
|
|
|
|
posX + NCSYMB_PIN_DIM, posY - NCSYMB_PIN_DIM,
|
|
|
|
posX - NCSYMB_PIN_DIM, posY + NCSYMB_PIN_DIM,
|
|
|
|
width, color );
|
2010-10-22 07:52:55 +00:00
|
|
|
}
|
2011-10-31 20:49:48 +00:00
|
|
|
// Draw but do not print the pin end target 1 pixel width
|
2011-04-18 20:22:17 +00:00
|
|
|
else if( screen == NULL || !screen->m_IsPrinting )
|
2010-12-07 16:10:42 +00:00
|
|
|
{
|
2011-05-25 10:42:56 +00:00
|
|
|
GRCircle( clipbox, aDC, posX, posY, TARGET_PIN_RADIUS, 0, color );
|
2010-12-07 16:10:42 +00:00
|
|
|
}
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void LIB_PIN::DrawPinTexts( EDA_DRAW_PANEL* panel,
|
|
|
|
wxDC* DC,
|
|
|
|
wxPoint& pin_pos,
|
|
|
|
int orient,
|
|
|
|
int TextInside,
|
|
|
|
bool DrawPinNum,
|
|
|
|
bool DrawPinName,
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T Color,
|
2012-09-01 13:38:27 +00:00
|
|
|
GR_DRAWMODE DrawMode )
|
2008-09-13 18:59:57 +00:00
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
int x, y, x1, y1;
|
|
|
|
wxString StringPinNum;
|
|
|
|
EDA_COLOR_T NameColor, NumColor;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
wxSize PinNameSize( m_nameTextSize, m_nameTextSize );
|
|
|
|
wxSize PinNumSize( m_numTextSize, m_numTextSize );
|
2008-09-13 18:59:57 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
int nameLineWidth = GetPenSize();
|
2009-06-13 17:06:07 +00:00
|
|
|
|
2011-12-08 21:05:43 +00:00
|
|
|
nameLineWidth = Clamp_Text_PenSize( nameLineWidth, m_nameTextSize, false );
|
2011-04-18 20:22:17 +00:00
|
|
|
int numLineWidth = GetPenSize();
|
2011-12-08 21:05:43 +00:00
|
|
|
numLineWidth = Clamp_Text_PenSize( numLineWidth, m_numTextSize, false );
|
2008-09-13 18:59:57 +00:00
|
|
|
|
|
|
|
GRSetDrawMode( DC, DrawMode );
|
2013-06-29 09:52:22 +00:00
|
|
|
EDA_RECT* clipbox = panel? panel->GetClipBox() : NULL;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
|
|
|
/* Get the num and name colors */
|
2011-12-21 13:42:02 +00:00
|
|
|
if( (Color < 0) && IsSelected() )
|
2012-09-28 17:47:41 +00:00
|
|
|
Color = GetItemSelectedColor();
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2013-02-06 11:54:51 +00:00
|
|
|
NameColor = (EDA_COLOR_T) ( Color == UNSPECIFIED_COLOR ?
|
2013-04-04 21:35:01 +00:00
|
|
|
GetLayerColor( LAYER_PINNAM ) : Color );
|
2013-02-06 11:54:51 +00:00
|
|
|
NumColor = (EDA_COLOR_T) ( Color == UNSPECIFIED_COLOR ?
|
2013-04-04 21:35:01 +00:00
|
|
|
GetLayerColor( LAYER_PINNUM ) : Color );
|
2008-09-13 18:59:57 +00:00
|
|
|
|
|
|
|
/* Create the pin num string */
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
PinStringNum( StringPinNum );
|
2008-09-13 18:59:57 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
x1 = pin_pos.x;
|
|
|
|
y1 = pin_pos.y;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
|
|
|
switch( orient )
|
|
|
|
{
|
|
|
|
case PIN_UP:
|
2010-12-07 16:10:42 +00:00
|
|
|
y1 -= m_length;
|
|
|
|
break;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
|
|
|
case PIN_DOWN:
|
2010-12-07 16:10:42 +00:00
|
|
|
y1 += m_length;
|
|
|
|
break;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
|
|
|
case PIN_LEFT:
|
2010-12-07 16:10:42 +00:00
|
|
|
x1 -= m_length;
|
|
|
|
break;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
|
|
|
case PIN_RIGHT:
|
2010-12-07 16:10:42 +00:00
|
|
|
x1 += m_length;
|
|
|
|
break;
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_name.IsEmpty() )
|
2012-01-22 17:20:22 +00:00
|
|
|
DrawPinName = false;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
|
|
|
if( TextInside ) /* Draw the text inside, but the pin numbers outside. */
|
|
|
|
{
|
|
|
|
if( (orient == PIN_LEFT) || (orient == PIN_RIGHT) )
|
|
|
|
{
|
2009-04-06 10:56:17 +00:00
|
|
|
// It is an horizontal line
|
2009-04-13 05:58:11 +00:00
|
|
|
if( DrawPinName )
|
2008-09-13 18:59:57 +00:00
|
|
|
{
|
|
|
|
if( orient == PIN_RIGHT )
|
|
|
|
{
|
|
|
|
x = x1 + TextInside;
|
2013-06-29 09:52:22 +00:00
|
|
|
DrawGraphicText( clipbox, DC, wxPoint( x, y1 ), NameColor,
|
2010-12-07 16:10:42 +00:00
|
|
|
m_name,
|
2009-04-06 10:56:17 +00:00
|
|
|
TEXT_ORIENT_HORIZ,
|
|
|
|
PinNameSize,
|
2008-12-08 15:27:13 +00:00
|
|
|
GR_TEXT_HJUSTIFY_LEFT,
|
2009-06-02 07:26:49 +00:00
|
|
|
GR_TEXT_VJUSTIFY_CENTER, nameLineWidth,
|
2009-05-28 17:39:40 +00:00
|
|
|
false, false );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
else // Orient == PIN_LEFT
|
|
|
|
{
|
|
|
|
x = x1 - TextInside;
|
2013-06-29 09:52:22 +00:00
|
|
|
DrawGraphicText( clipbox, DC, wxPoint( x, y1 ), NameColor,
|
2010-12-07 16:10:42 +00:00
|
|
|
m_name,
|
2009-04-06 10:56:17 +00:00
|
|
|
TEXT_ORIENT_HORIZ,
|
|
|
|
PinNameSize,
|
2008-12-08 15:27:13 +00:00
|
|
|
GR_TEXT_HJUSTIFY_RIGHT,
|
2009-06-02 07:26:49 +00:00
|
|
|
GR_TEXT_VJUSTIFY_CENTER, nameLineWidth,
|
2009-05-28 17:39:40 +00:00
|
|
|
false, false );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( DrawPinNum )
|
|
|
|
{
|
2013-06-29 09:52:22 +00:00
|
|
|
DrawGraphicText( clipbox, DC,
|
2009-04-06 10:56:17 +00:00
|
|
|
wxPoint( (x1 + pin_pos.x) / 2,
|
2011-04-18 20:22:17 +00:00
|
|
|
y1 - TXTMARGE ), NumColor,
|
2009-04-06 10:56:17 +00:00
|
|
|
StringPinNum,
|
|
|
|
TEXT_ORIENT_HORIZ, PinNumSize,
|
2008-12-08 15:27:13 +00:00
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
2009-06-02 07:26:49 +00:00
|
|
|
GR_TEXT_VJUSTIFY_BOTTOM, numLineWidth,
|
|
|
|
false, false );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* Its a vertical line. */
|
|
|
|
{
|
2009-04-06 10:56:17 +00:00
|
|
|
// Text is drawn from bottom to top (i.e. to negative value for Y axis)
|
2009-05-12 12:12:34 +00:00
|
|
|
if( orient == PIN_DOWN )
|
2008-09-13 18:59:57 +00:00
|
|
|
{
|
2009-05-12 12:12:34 +00:00
|
|
|
y = y1 + TextInside;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
if( DrawPinName )
|
2013-06-29 09:52:22 +00:00
|
|
|
DrawGraphicText( clipbox, DC, wxPoint( x1, y ), NameColor,
|
2010-12-07 16:10:42 +00:00
|
|
|
m_name,
|
2009-04-06 10:56:17 +00:00
|
|
|
TEXT_ORIENT_VERT, PinNameSize,
|
2009-05-12 12:12:34 +00:00
|
|
|
GR_TEXT_HJUSTIFY_RIGHT,
|
2009-06-02 07:26:49 +00:00
|
|
|
GR_TEXT_VJUSTIFY_CENTER, nameLineWidth,
|
2009-05-28 17:39:40 +00:00
|
|
|
false, false );
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
if( DrawPinNum )
|
2013-06-29 09:52:22 +00:00
|
|
|
DrawGraphicText( clipbox, DC,
|
2009-05-12 12:12:34 +00:00
|
|
|
wxPoint( x1 - TXTMARGE,
|
|
|
|
(y1 + pin_pos.y) / 2 ), NumColor,
|
|
|
|
StringPinNum,
|
|
|
|
TEXT_ORIENT_VERT, PinNumSize,
|
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
2009-06-02 07:26:49 +00:00
|
|
|
GR_TEXT_VJUSTIFY_BOTTOM, numLineWidth,
|
2009-06-13 17:06:07 +00:00
|
|
|
false, false );
|
2009-05-12 12:12:34 +00:00
|
|
|
}
|
|
|
|
else /* PIN_UP */
|
|
|
|
{
|
|
|
|
y = y1 - TextInside;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
if( DrawPinName )
|
2013-06-29 09:52:22 +00:00
|
|
|
DrawGraphicText( clipbox, DC, wxPoint( x1, y ), NameColor,
|
2010-12-07 16:10:42 +00:00
|
|
|
m_name,
|
2009-04-06 10:56:17 +00:00
|
|
|
TEXT_ORIENT_VERT, PinNameSize,
|
2009-05-12 12:12:34 +00:00
|
|
|
GR_TEXT_HJUSTIFY_LEFT,
|
2009-06-02 07:26:49 +00:00
|
|
|
GR_TEXT_VJUSTIFY_CENTER, nameLineWidth,
|
2009-05-28 17:39:40 +00:00
|
|
|
false, false );
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
if( DrawPinNum )
|
2013-06-29 09:52:22 +00:00
|
|
|
DrawGraphicText( clipbox, DC,
|
2009-05-12 12:12:34 +00:00
|
|
|
wxPoint( x1 - TXTMARGE,
|
|
|
|
(y1 + pin_pos.y) / 2 ), NumColor,
|
|
|
|
StringPinNum,
|
|
|
|
TEXT_ORIENT_VERT, PinNumSize,
|
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
2009-06-02 07:26:49 +00:00
|
|
|
GR_TEXT_VJUSTIFY_BOTTOM, numLineWidth,
|
2009-06-13 17:06:07 +00:00
|
|
|
false, false );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /**** Draw num & text pin outside ****/
|
|
|
|
{
|
|
|
|
if( (orient == PIN_LEFT) || (orient == PIN_RIGHT) )
|
|
|
|
{
|
2009-04-06 10:56:17 +00:00
|
|
|
/* Its an horizontal line. */
|
2009-04-13 05:58:11 +00:00
|
|
|
if( DrawPinName )
|
2008-09-13 18:59:57 +00:00
|
|
|
{
|
|
|
|
x = (x1 + pin_pos.x) / 2;
|
2013-06-29 09:52:22 +00:00
|
|
|
DrawGraphicText( clipbox, DC, wxPoint( x, y1 - TXTMARGE ),
|
2010-12-07 16:10:42 +00:00
|
|
|
NameColor, m_name,
|
2009-04-06 10:56:17 +00:00
|
|
|
TEXT_ORIENT_HORIZ, PinNameSize,
|
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
2009-06-02 07:26:49 +00:00
|
|
|
GR_TEXT_VJUSTIFY_BOTTOM, nameLineWidth,
|
2009-05-28 17:39:40 +00:00
|
|
|
false, false );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
if( DrawPinNum )
|
|
|
|
{
|
|
|
|
x = (x1 + pin_pos.x) / 2;
|
2013-06-29 09:52:22 +00:00
|
|
|
DrawGraphicText( clipbox, DC, wxPoint( x, y1 + TXTMARGE ),
|
2009-04-06 10:56:17 +00:00
|
|
|
NumColor, StringPinNum,
|
|
|
|
TEXT_ORIENT_HORIZ, PinNumSize,
|
2009-05-12 12:12:34 +00:00
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
2009-06-02 07:26:49 +00:00
|
|
|
GR_TEXT_VJUSTIFY_TOP, numLineWidth,
|
2009-06-13 17:06:07 +00:00
|
|
|
false, false );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* Its a vertical line. */
|
|
|
|
{
|
2009-04-13 05:58:11 +00:00
|
|
|
if( DrawPinName )
|
2008-09-13 18:59:57 +00:00
|
|
|
{
|
|
|
|
y = (y1 + pin_pos.y) / 2;
|
2013-06-29 09:52:22 +00:00
|
|
|
DrawGraphicText( clipbox, DC, wxPoint( x1 - TXTMARGE, y ),
|
2010-12-07 16:10:42 +00:00
|
|
|
NameColor, m_name,
|
2009-04-06 10:56:17 +00:00
|
|
|
TEXT_ORIENT_VERT, PinNameSize,
|
2009-05-12 12:12:34 +00:00
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
2009-06-02 07:26:49 +00:00
|
|
|
GR_TEXT_VJUSTIFY_BOTTOM, nameLineWidth,
|
|
|
|
false, false );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( DrawPinNum )
|
|
|
|
{
|
2013-06-29 09:52:22 +00:00
|
|
|
DrawGraphicText( clipbox, DC,
|
2009-09-02 18:12:45 +00:00
|
|
|
wxPoint( x1 + TXTMARGE, (y1 + pin_pos.y) / 2 ),
|
2009-04-06 10:56:17 +00:00
|
|
|
NumColor, StringPinNum,
|
|
|
|
TEXT_ORIENT_VERT, PinNumSize,
|
2009-05-12 12:12:34 +00:00
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
2009-06-02 07:26:49 +00:00
|
|
|
GR_TEXT_VJUSTIFY_TOP, numLineWidth,
|
|
|
|
false, false );
|
2008-09-13 18:59:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-09-13 19:06:31 +00:00
|
|
|
|
2009-06-13 17:06:07 +00:00
|
|
|
|
2011-06-17 13:24:22 +00:00
|
|
|
void LIB_PIN::PlotSymbol( PLOTTER* aPlotter, const wxPoint& aPosition, int aOrientation )
|
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
int MapX1, MapY1, x1, y1;
|
2013-04-04 21:35:01 +00:00
|
|
|
EDA_COLOR_T color = GetLayerColor( LAYER_PIN );
|
2011-06-17 13:24:22 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->SetColor( color );
|
2011-06-17 13:24:22 +00:00
|
|
|
|
|
|
|
MapX1 = MapY1 = 0;
|
|
|
|
x1 = aPosition.x; y1 = aPosition.y;
|
|
|
|
|
|
|
|
switch( aOrientation )
|
|
|
|
{
|
|
|
|
case PIN_UP:
|
|
|
|
y1 = aPosition.y - m_length;
|
|
|
|
MapY1 = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_DOWN:
|
|
|
|
y1 = aPosition.y + m_length;
|
|
|
|
MapY1 = -1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_LEFT:
|
|
|
|
x1 = aPosition.x - m_length;
|
|
|
|
MapX1 = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_RIGHT:
|
|
|
|
x1 = aPosition.x + m_length;
|
|
|
|
MapX1 = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( m_shape & INVERT )
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
const int radius = ExternalPinDecoSize( *this );
|
|
|
|
aPlotter->Circle( wxPoint( MapX1 * radius + x1,
|
|
|
|
MapY1 * radius + y1 ),
|
|
|
|
radius * 2, // diameter
|
2013-02-20 11:46:38 +00:00
|
|
|
NO_FILL, // fill option
|
|
|
|
GetPenSize() ); // width
|
2011-06-17 13:24:22 +00:00
|
|
|
|
2014-05-13 19:24:12 +00:00
|
|
|
aPlotter->MoveTo( wxPoint( MapX1 * radius * 2 + x1,
|
|
|
|
MapY1 * radius * 2 + y1 ) );
|
|
|
|
aPlotter->FinishTo( aPosition );
|
|
|
|
}
|
|
|
|
else if( m_shape & CLOCK_FALL )
|
|
|
|
{
|
|
|
|
const int clock_size = InternalPinDecoSize( *this );
|
|
|
|
if( MapY1 == 0 ) /* MapX1 = +- 1 */
|
|
|
|
{
|
|
|
|
aPlotter->MoveTo( wxPoint( x1, y1 + clock_size ) );
|
|
|
|
aPlotter->LineTo( wxPoint( x1 + MapX1 * clock_size * 2, y1 ) );
|
|
|
|
aPlotter->FinishTo( wxPoint( x1, y1 - clock_size ) );
|
|
|
|
}
|
|
|
|
else /* MapX1 = 0 */
|
|
|
|
{
|
|
|
|
aPlotter->MoveTo( wxPoint( x1 + clock_size, y1 ) );
|
|
|
|
aPlotter->LineTo( wxPoint( x1, y1 + MapY1 * clock_size * 2 ) );
|
|
|
|
aPlotter->FinishTo( wxPoint( x1 - clock_size, y1 ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
aPlotter->MoveTo( wxPoint( MapX1 * clock_size * 2 + x1,
|
|
|
|
MapY1 * clock_size * 2 + y1 ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->FinishTo( aPosition );
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->MoveTo( wxPoint( x1, y1 ) );
|
|
|
|
aPlotter->FinishTo( aPosition );
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( m_shape & CLOCK )
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
const int clock_size = InternalPinDecoSize( *this );
|
2011-06-17 13:24:22 +00:00
|
|
|
if( MapY1 == 0 ) /* MapX1 = +- 1 */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
aPlotter->MoveTo( wxPoint( x1, y1 + clock_size ) );
|
|
|
|
aPlotter->LineTo( wxPoint( x1 - MapX1 * clock_size * 2, y1 ) );
|
|
|
|
aPlotter->FinishTo( wxPoint( x1, y1 - clock_size ) );
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|
|
|
|
else /* MapX1 = 0 */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
aPlotter->MoveTo( wxPoint( x1 + clock_size, y1 ) );
|
|
|
|
aPlotter->LineTo( wxPoint( x1, y1 - MapY1 * clock_size * 2 ) );
|
|
|
|
aPlotter->FinishTo( wxPoint( x1 - clock_size, y1 ) );
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( m_shape & LOWLEVEL_IN ) /* IEEE symbol "Active Low Input" */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
const int symbol_size = ExternalPinDecoSize( *this );
|
2011-06-17 13:24:22 +00:00
|
|
|
if( MapY1 == 0 ) /* MapX1 = +- 1 */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
aPlotter->MoveTo( wxPoint( x1 + MapX1 * symbol_size * 2, y1 ) );
|
|
|
|
aPlotter->LineTo( wxPoint( x1 + MapX1 * symbol_size * 2,
|
|
|
|
y1 - symbol_size * 2 ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->FinishTo( wxPoint( x1, y1 ) );
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|
|
|
|
else /* MapX1 = 0 */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
aPlotter->MoveTo( wxPoint( x1, y1 + MapY1 * symbol_size * 2 ) );
|
|
|
|
aPlotter->LineTo( wxPoint( x1 - symbol_size * 2,
|
|
|
|
y1 + MapY1 * symbol_size * 2 ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->FinishTo( wxPoint( x1, y1 ) );
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if( m_shape & LOWLEVEL_OUT ) /* IEEE symbol "Active Low Output" */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
const int symbol_size = ExternalPinDecoSize( *this );
|
2011-06-17 13:24:22 +00:00
|
|
|
if( MapY1 == 0 ) /* MapX1 = +- 1 */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
aPlotter->MoveTo( wxPoint( x1, y1 - symbol_size * 2 ) );
|
|
|
|
aPlotter->FinishTo( wxPoint( x1 + MapX1 * symbol_size * 2, y1 ) );
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|
|
|
|
else /* MapX1 = 0 */
|
|
|
|
{
|
2014-05-13 19:24:12 +00:00
|
|
|
aPlotter->MoveTo( wxPoint( x1 - symbol_size * 2, y1 ) );
|
|
|
|
aPlotter->FinishTo( wxPoint( x1, y1 + MapY1 * symbol_size * 2 ) );
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-13 19:24:12 +00:00
|
|
|
else if( m_shape & NONLOGIC ) /* NonLogic pin symbol */
|
|
|
|
{
|
|
|
|
const int symbol_size = ExternalPinDecoSize( *this );
|
|
|
|
aPlotter->MoveTo( wxPoint( x1 - (MapX1 + MapY1) * symbol_size,
|
|
|
|
y1 - (MapY1 - MapX1) * symbol_size ) );
|
|
|
|
aPlotter->FinishTo( wxPoint( x1 + (MapX1 + MapY1) * symbol_size,
|
|
|
|
y1 + (MapY1 - MapX1) * symbol_size ) );
|
|
|
|
aPlotter->MoveTo( wxPoint( x1 - (MapX1 - MapY1) * symbol_size,
|
|
|
|
y1 - (MapY1 + MapX1) * symbol_size ) );
|
|
|
|
aPlotter->FinishTo( wxPoint( x1 + (MapX1 - MapY1) * symbol_size,
|
|
|
|
y1 + (MapY1 + MapX1) * symbol_size ) );
|
|
|
|
}
|
|
|
|
if( m_type == PIN_NC ) // Draw a N.C. symbol
|
|
|
|
{
|
|
|
|
const int ex1 = aPosition.x;
|
|
|
|
const int ey1 = aPosition.y;
|
|
|
|
aPlotter->MoveTo( wxPoint( ex1 - NCSYMB_PIN_DIM, ey1 - NCSYMB_PIN_DIM ) );
|
|
|
|
aPlotter->FinishTo( wxPoint( ex1 + NCSYMB_PIN_DIM, ey1 + NCSYMB_PIN_DIM ) );
|
|
|
|
aPlotter->MoveTo( wxPoint( ex1 + NCSYMB_PIN_DIM, ey1 - NCSYMB_PIN_DIM ) );
|
|
|
|
aPlotter->FinishTo( wxPoint( ex1 - NCSYMB_PIN_DIM, ey1 + NCSYMB_PIN_DIM ) );
|
|
|
|
}
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-18 20:22:17 +00:00
|
|
|
void LIB_PIN::PlotPinTexts( PLOTTER* plotter,
|
2009-10-08 13:19:28 +00:00
|
|
|
wxPoint& pin_pos,
|
|
|
|
int orient,
|
|
|
|
int TextInside,
|
|
|
|
bool DrawPinNum,
|
|
|
|
bool DrawPinName,
|
|
|
|
int aWidth )
|
2008-09-13 19:06:31 +00:00
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
int x, y, x1, y1;
|
|
|
|
wxString StringPinNum;
|
|
|
|
EDA_COLOR_T NameColor, NumColor;
|
|
|
|
wxSize PinNameSize = wxSize( m_nameTextSize, m_nameTextSize );
|
|
|
|
wxSize PinNumSize = wxSize( m_numTextSize, m_numTextSize );
|
2008-09-13 19:06:31 +00:00
|
|
|
|
|
|
|
/* Get the num and name colors */
|
2013-04-04 21:35:01 +00:00
|
|
|
NameColor = GetLayerColor( LAYER_PINNAM );
|
|
|
|
NumColor = GetLayerColor( LAYER_PINNUM );
|
2008-09-13 19:06:31 +00:00
|
|
|
|
|
|
|
/* Create the pin num string */
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
PinStringNum( StringPinNum );
|
2010-11-18 21:10:52 +00:00
|
|
|
x1 = pin_pos.x;
|
|
|
|
y1 = pin_pos.y;
|
2008-09-13 19:06:31 +00:00
|
|
|
|
|
|
|
switch( orient )
|
|
|
|
{
|
|
|
|
case PIN_UP:
|
2010-12-07 16:10:42 +00:00
|
|
|
y1 -= m_length;
|
2010-11-18 21:10:52 +00:00
|
|
|
break;
|
2008-09-13 19:06:31 +00:00
|
|
|
|
|
|
|
case PIN_DOWN:
|
2010-12-07 16:10:42 +00:00
|
|
|
y1 += m_length;
|
2010-11-18 21:10:52 +00:00
|
|
|
break;
|
2008-09-13 19:06:31 +00:00
|
|
|
|
|
|
|
case PIN_LEFT:
|
2010-12-07 16:10:42 +00:00
|
|
|
x1 -= m_length;
|
2010-11-18 21:10:52 +00:00
|
|
|
break;
|
2008-09-13 19:06:31 +00:00
|
|
|
|
|
|
|
case PIN_RIGHT:
|
2010-12-07 16:10:42 +00:00
|
|
|
x1 += m_length;
|
2010-11-18 21:10:52 +00:00
|
|
|
break;
|
2008-09-13 19:06:31 +00:00
|
|
|
}
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_name.IsEmpty() )
|
2012-01-22 17:20:22 +00:00
|
|
|
DrawPinName = false;
|
2008-09-13 19:06:31 +00:00
|
|
|
|
2009-10-30 19:26:25 +00:00
|
|
|
/* Draw the text inside, but the pin numbers outside. */
|
|
|
|
if( TextInside )
|
2008-09-13 19:06:31 +00:00
|
|
|
{
|
2009-04-06 10:56:17 +00:00
|
|
|
if( (orient == PIN_LEFT) || (orient == PIN_RIGHT) ) /* Its an horizontal line. */
|
|
|
|
{
|
2009-04-13 05:58:11 +00:00
|
|
|
if( DrawPinName )
|
2008-09-13 19:06:31 +00:00
|
|
|
{
|
|
|
|
if( orient == PIN_RIGHT )
|
|
|
|
{
|
|
|
|
x = x1 + TextInside;
|
2012-05-03 18:37:56 +00:00
|
|
|
plotter->Text( wxPoint( x, y1 ), NameColor,
|
2010-12-07 16:10:42 +00:00
|
|
|
m_name,
|
2009-09-02 18:12:45 +00:00
|
|
|
TEXT_ORIENT_HORIZ,
|
|
|
|
PinNameSize,
|
|
|
|
GR_TEXT_HJUSTIFY_LEFT,
|
|
|
|
GR_TEXT_VJUSTIFY_CENTER,
|
|
|
|
aWidth, false, false );
|
2008-09-13 19:06:31 +00:00
|
|
|
}
|
|
|
|
else // orient == PIN_LEFT
|
|
|
|
{
|
|
|
|
x = x1 - TextInside;
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
if( DrawPinName )
|
2012-05-03 18:37:56 +00:00
|
|
|
plotter->Text( wxPoint( x, y1 ),
|
2010-12-07 16:10:42 +00:00
|
|
|
NameColor, m_name, TEXT_ORIENT_HORIZ,
|
2009-09-02 18:12:45 +00:00
|
|
|
PinNameSize,
|
|
|
|
GR_TEXT_HJUSTIFY_RIGHT,
|
|
|
|
GR_TEXT_VJUSTIFY_CENTER,
|
|
|
|
aWidth, false, false );
|
2009-05-12 12:12:34 +00:00
|
|
|
}
|
2009-09-25 13:59:42 +00:00
|
|
|
}
|
|
|
|
if( DrawPinNum )
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
plotter->Text( wxPoint( (x1 + pin_pos.x) / 2, y1 - TXTMARGE ),
|
2009-09-25 13:59:42 +00:00
|
|
|
NumColor, StringPinNum,
|
|
|
|
TEXT_ORIENT_HORIZ, PinNumSize,
|
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
|
|
|
GR_TEXT_VJUSTIFY_BOTTOM,
|
|
|
|
aWidth, false, false );
|
2008-09-13 19:06:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* Its a vertical line. */
|
|
|
|
{
|
2009-05-12 12:12:34 +00:00
|
|
|
if( orient == PIN_DOWN )
|
2008-09-13 19:06:31 +00:00
|
|
|
{
|
2009-05-12 12:12:34 +00:00
|
|
|
y = y1 + TextInside;
|
2008-09-13 19:06:31 +00:00
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
if( DrawPinName )
|
2012-05-03 18:37:56 +00:00
|
|
|
plotter->Text( wxPoint( x1, y ), NameColor,
|
2010-12-07 16:10:42 +00:00
|
|
|
m_name,
|
2009-09-02 18:12:45 +00:00
|
|
|
TEXT_ORIENT_VERT, PinNameSize,
|
|
|
|
GR_TEXT_HJUSTIFY_RIGHT,
|
|
|
|
GR_TEXT_VJUSTIFY_CENTER,
|
|
|
|
aWidth, false, false );
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
if( DrawPinNum )
|
2008-09-13 19:06:31 +00:00
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
plotter->Text( wxPoint( x1 - TXTMARGE, (y1 + pin_pos.y) / 2 ),
|
2009-09-02 18:12:45 +00:00
|
|
|
NumColor, StringPinNum,
|
|
|
|
TEXT_ORIENT_VERT, PinNumSize,
|
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
|
|
|
GR_TEXT_VJUSTIFY_BOTTOM,
|
|
|
|
aWidth, false, false );
|
2009-05-12 12:12:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* PIN_UP */
|
|
|
|
{
|
|
|
|
y = y1 - TextInside;
|
2008-09-13 19:06:31 +00:00
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
if( DrawPinName )
|
2012-05-03 18:37:56 +00:00
|
|
|
plotter->Text( wxPoint( x1, y ), NameColor,
|
2010-12-07 16:10:42 +00:00
|
|
|
m_name,
|
2009-09-02 18:12:45 +00:00
|
|
|
TEXT_ORIENT_VERT, PinNameSize,
|
|
|
|
GR_TEXT_HJUSTIFY_LEFT,
|
|
|
|
GR_TEXT_VJUSTIFY_CENTER,
|
|
|
|
aWidth, false, false );
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
if( DrawPinNum )
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
plotter->Text( wxPoint( x1 - TXTMARGE, (y1 + pin_pos.y) / 2 ),
|
2009-09-02 18:12:45 +00:00
|
|
|
NumColor, StringPinNum,
|
|
|
|
TEXT_ORIENT_VERT, PinNumSize,
|
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
|
|
|
GR_TEXT_VJUSTIFY_BOTTOM,
|
|
|
|
aWidth, false, false );
|
2008-09-13 19:06:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* Draw num & text pin outside */
|
|
|
|
{
|
|
|
|
if( (orient == PIN_LEFT) || (orient == PIN_RIGHT) )
|
|
|
|
{
|
2009-04-06 10:56:17 +00:00
|
|
|
/* Its an horizontal line. */
|
2009-04-13 05:58:11 +00:00
|
|
|
if( DrawPinName )
|
2008-09-13 19:06:31 +00:00
|
|
|
{
|
|
|
|
x = (x1 + pin_pos.x) / 2;
|
2012-05-03 18:37:56 +00:00
|
|
|
plotter->Text( wxPoint( x, y1 - TXTMARGE ),
|
2010-12-07 16:10:42 +00:00
|
|
|
NameColor, m_name,
|
2009-09-02 18:12:45 +00:00
|
|
|
TEXT_ORIENT_HORIZ, PinNameSize,
|
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
|
|
|
GR_TEXT_VJUSTIFY_BOTTOM,
|
|
|
|
aWidth, false, false );
|
2008-09-13 19:06:31 +00:00
|
|
|
}
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2008-09-13 19:06:31 +00:00
|
|
|
if( DrawPinNum )
|
|
|
|
{
|
2010-11-18 21:10:52 +00:00
|
|
|
x = ( x1 + pin_pos.x ) / 2;
|
2012-05-03 18:37:56 +00:00
|
|
|
plotter->Text( wxPoint( x, y1 + TXTMARGE ),
|
2009-09-02 18:12:45 +00:00
|
|
|
NumColor, StringPinNum,
|
|
|
|
TEXT_ORIENT_HORIZ, PinNumSize,
|
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
|
|
|
GR_TEXT_VJUSTIFY_TOP,
|
|
|
|
aWidth, false, false );
|
2008-09-13 19:06:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* Its a vertical line. */
|
|
|
|
{
|
2009-04-13 05:58:11 +00:00
|
|
|
if( DrawPinName )
|
2008-09-13 19:06:31 +00:00
|
|
|
{
|
2010-11-18 21:10:52 +00:00
|
|
|
y = ( y1 + pin_pos.y ) / 2;
|
2012-05-03 18:37:56 +00:00
|
|
|
plotter->Text( wxPoint( x1 - TXTMARGE, y ),
|
2010-12-07 16:10:42 +00:00
|
|
|
NameColor, m_name,
|
2009-09-02 18:12:45 +00:00
|
|
|
TEXT_ORIENT_VERT, PinNameSize,
|
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
|
|
|
GR_TEXT_VJUSTIFY_BOTTOM,
|
|
|
|
aWidth, false, false );
|
2008-09-13 19:06:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( DrawPinNum )
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
plotter->Text( wxPoint( x1 + TXTMARGE, ( y1 + pin_pos.y ) / 2 ),
|
2009-09-02 18:12:45 +00:00
|
|
|
NumColor, StringPinNum,
|
|
|
|
TEXT_ORIENT_VERT, PinNumSize,
|
|
|
|
GR_TEXT_HJUSTIFY_CENTER,
|
|
|
|
GR_TEXT_VJUSTIFY_TOP,
|
|
|
|
aWidth, false, false );
|
2008-09-13 19:06:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-09-14 04:27:22 +00:00
|
|
|
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
wxPoint LIB_PIN::PinEndPoint() const
|
2008-09-14 04:27:22 +00:00
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
wxPoint pos = m_position;
|
2008-09-14 04:27:22 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
switch( m_orientation )
|
2008-09-14 04:27:22 +00:00
|
|
|
{
|
|
|
|
case PIN_UP:
|
2010-12-07 16:10:42 +00:00
|
|
|
pos.y += m_length;
|
2010-11-18 21:10:52 +00:00
|
|
|
break;
|
2008-09-14 04:27:22 +00:00
|
|
|
|
|
|
|
case PIN_DOWN:
|
2010-12-07 16:10:42 +00:00
|
|
|
pos.y -= m_length;
|
2010-11-18 21:10:52 +00:00
|
|
|
break;
|
2008-09-14 04:27:22 +00:00
|
|
|
|
|
|
|
case PIN_LEFT:
|
2010-12-07 16:10:42 +00:00
|
|
|
pos.x -= m_length;
|
2010-11-18 21:10:52 +00:00
|
|
|
break;
|
2008-09-14 04:27:22 +00:00
|
|
|
|
|
|
|
case PIN_RIGHT:
|
2010-12-07 16:10:42 +00:00
|
|
|
pos.x += m_length;
|
2010-11-18 21:10:52 +00:00
|
|
|
break;
|
2008-09-14 04:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
int LIB_PIN::PinDrawOrient( const TRANSFORM& aTransform ) const
|
2008-09-14 04:27:22 +00:00
|
|
|
{
|
2008-12-08 15:27:13 +00:00
|
|
|
int orient;
|
2010-12-07 16:10:42 +00:00
|
|
|
wxPoint end; // position of pin end starting at 0,0 according to its orientation, length = 1
|
2008-09-14 04:27:22 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
switch( m_orientation )
|
2008-09-14 04:27:22 +00:00
|
|
|
{
|
|
|
|
case PIN_UP:
|
2010-11-18 21:10:52 +00:00
|
|
|
end.y = 1;
|
|
|
|
break;
|
2008-09-14 04:27:22 +00:00
|
|
|
|
|
|
|
case PIN_DOWN:
|
2010-11-18 21:10:52 +00:00
|
|
|
end.y = -1;
|
|
|
|
break;
|
2008-09-14 04:27:22 +00:00
|
|
|
|
|
|
|
case PIN_LEFT:
|
2010-11-18 21:10:52 +00:00
|
|
|
end.x = -1;
|
|
|
|
break;
|
2008-09-14 04:27:22 +00:00
|
|
|
|
|
|
|
case PIN_RIGHT:
|
2010-11-18 21:10:52 +00:00
|
|
|
end.x = 1;
|
|
|
|
break;
|
2008-09-14 04:27:22 +00:00
|
|
|
}
|
|
|
|
|
2009-10-30 19:26:25 +00:00
|
|
|
// = pos of end point, according to the component orientation
|
2011-04-18 20:22:17 +00:00
|
|
|
end = aTransform.TransformCoordinate( end );
|
2008-09-14 04:27:22 +00:00
|
|
|
orient = PIN_UP;
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2008-09-26 19:51:36 +00:00
|
|
|
if( end.x == 0 )
|
2008-09-14 04:27:22 +00:00
|
|
|
{
|
2008-09-26 19:51:36 +00:00
|
|
|
if( end.y > 0 )
|
2008-09-14 04:27:22 +00:00
|
|
|
orient = PIN_DOWN;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
orient = PIN_RIGHT;
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2008-09-26 19:51:36 +00:00
|
|
|
if( end.x < 0 )
|
2008-09-14 04:27:22 +00:00
|
|
|
orient = PIN_LEFT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return orient;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
void LIB_PIN::PinStringNum( wxString& aStringBuffer ) const
|
2009-07-05 12:09:41 +00:00
|
|
|
{
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
aStringBuffer = PinStringNum( m_number );
|
2009-07-05 12:09:41 +00:00
|
|
|
}
|
|
|
|
|
2009-10-30 19:26:25 +00:00
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
wxString LIB_PIN::PinStringNum( long aPinNum )
|
2008-09-14 04:27:22 +00:00
|
|
|
{
|
|
|
|
char ascii_buf[5];
|
|
|
|
|
2009-07-05 12:09:41 +00:00
|
|
|
memcpy( ascii_buf, &aPinNum, 4 );
|
2008-09-14 04:27:22 +00:00
|
|
|
ascii_buf[4] = 0;
|
|
|
|
|
2011-02-28 18:36:19 +00:00
|
|
|
wxString buffer = FROM_UTF8( ascii_buf );
|
2009-07-05 12:09:41 +00:00
|
|
|
|
|
|
|
return buffer;
|
2008-09-14 04:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-08 13:19:28 +00:00
|
|
|
void LIB_PIN::SetPinNumFromString( wxString& buffer )
|
2008-09-14 04:27:22 +00:00
|
|
|
{
|
|
|
|
char ascii_buf[4];
|
|
|
|
unsigned ii, len = buffer.Len();
|
|
|
|
|
|
|
|
ascii_buf[0] = ascii_buf[1] = ascii_buf[2] = ascii_buf[3] = 0;
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2008-09-14 04:27:22 +00:00
|
|
|
if( len > 4 )
|
|
|
|
len = 4;
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2008-09-14 04:27:22 +00:00
|
|
|
for( ii = 0; ii < len; ii++ )
|
|
|
|
{
|
2009-05-12 12:12:34 +00:00
|
|
|
ascii_buf[ii] = buffer.GetChar( ii );
|
2009-04-13 05:58:11 +00:00
|
|
|
ascii_buf[ii] &= 0xFF;
|
2008-09-14 04:27:22 +00:00
|
|
|
}
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
strncpy( (char*) &m_number, ascii_buf, 4 );
|
2008-09-14 04:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
EDA_ITEM* LIB_PIN::Clone() const
|
2008-09-14 04:27:22 +00:00
|
|
|
{
|
2011-04-27 19:44:32 +00:00
|
|
|
return new LIB_PIN( *this );
|
2008-09-14 04:27:22 +00:00
|
|
|
}
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
int LIB_PIN::compare( const LIB_ITEM& other ) const
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
2010-12-10 19:47:44 +00:00
|
|
|
wxASSERT( other.Type() == LIB_PIN_T );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-04-18 20:22:17 +00:00
|
|
|
const LIB_PIN* tmp = (LIB_PIN*) &other;
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_number != tmp->m_number )
|
|
|
|
return m_number - tmp->m_number;
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
int result = m_name.CmpNoCase( tmp->m_name );
|
2009-10-01 14:17:47 +00:00
|
|
|
|
|
|
|
if( result != 0 )
|
|
|
|
return result;
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_position.x != tmp->m_position.x )
|
|
|
|
return m_position.x - tmp->m_position.x;
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_position.y != tmp->m_position.y )
|
|
|
|
return m_position.y - tmp->m_position.y;
|
2009-10-01 14:17:47 +00:00
|
|
|
|
|
|
|
return 0;
|
2009-09-14 13:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_PIN::SetOffset( const wxPoint& aOffset )
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
2012-02-27 23:02:08 +00:00
|
|
|
m_position += aOffset;
|
2009-09-14 13:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
bool LIB_PIN::Inside( EDA_RECT& rect ) const
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
wxPoint end = PinEndPoint();
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2010-12-20 17:44:25 +00:00
|
|
|
return rect.Contains( m_position.x, -m_position.y ) || rect.Contains( end.x, -end.y );
|
2009-09-14 13:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_PIN::Move( const wxPoint& newPosition )
|
2009-09-25 18:49:04 +00:00
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_position != newPosition )
|
|
|
|
{
|
|
|
|
m_position = newPosition;
|
|
|
|
SetModified();
|
|
|
|
}
|
2009-09-25 18:49:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_PIN::MirrorHorizontal( const wxPoint& center )
|
2009-09-29 18:38:21 +00:00
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
m_position.x -= center.x;
|
|
|
|
m_position.x *= -1;
|
|
|
|
m_position.x += center.x;
|
|
|
|
|
|
|
|
if( m_orientation == PIN_RIGHT )
|
|
|
|
m_orientation = PIN_LEFT;
|
|
|
|
else if( m_orientation == PIN_LEFT )
|
|
|
|
m_orientation = PIN_RIGHT;
|
2009-09-29 18:38:21 +00:00
|
|
|
}
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_PIN::MirrorVertical( const wxPoint& center )
|
2011-05-20 18:29:35 +00:00
|
|
|
{
|
|
|
|
m_position.y -= center.y;
|
|
|
|
m_position.y *= -1;
|
|
|
|
m_position.y += center.y;
|
|
|
|
|
|
|
|
if( m_orientation == PIN_UP )
|
|
|
|
m_orientation = PIN_DOWN;
|
|
|
|
else if( m_orientation == PIN_DOWN )
|
|
|
|
m_orientation = PIN_UP;
|
|
|
|
}
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_PIN::Rotate( const wxPoint& center, bool aRotateCCW )
|
2011-05-20 18:29:35 +00:00
|
|
|
{
|
2011-05-22 19:08:34 +00:00
|
|
|
int rot_angle = aRotateCCW ? -900 : 900;
|
2011-05-20 18:29:35 +00:00
|
|
|
|
2011-05-22 19:08:34 +00:00
|
|
|
RotatePoint( &m_position, center, rot_angle );
|
|
|
|
|
|
|
|
if( aRotateCCW )
|
2011-05-20 18:29:35 +00:00
|
|
|
{
|
2011-05-22 19:08:34 +00:00
|
|
|
switch( m_orientation )
|
|
|
|
{
|
|
|
|
case PIN_RIGHT:
|
|
|
|
m_orientation = PIN_UP;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_UP:
|
|
|
|
m_orientation = PIN_LEFT;
|
|
|
|
break;
|
|
|
|
case PIN_LEFT:
|
|
|
|
m_orientation = PIN_DOWN;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_DOWN:
|
|
|
|
m_orientation = PIN_RIGHT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch( m_orientation )
|
|
|
|
{
|
|
|
|
case PIN_RIGHT:
|
|
|
|
m_orientation = PIN_DOWN;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_UP:
|
|
|
|
m_orientation = PIN_RIGHT;
|
|
|
|
break;
|
|
|
|
case PIN_LEFT:
|
|
|
|
m_orientation = PIN_UP;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_DOWN:
|
|
|
|
m_orientation = PIN_LEFT;
|
|
|
|
break;
|
|
|
|
}
|
2011-05-20 18:29:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-29 18:38:21 +00:00
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_PIN::Plot( PLOTTER* plotter, const wxPoint& offset, bool fill,
|
|
|
|
const TRANSFORM& aTransform )
|
2009-10-05 17:52:41 +00:00
|
|
|
{
|
2011-05-06 13:56:26 +00:00
|
|
|
if( ! IsVisible() )
|
2009-10-05 17:52:41 +00:00
|
|
|
return;
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
int orient = PinDrawOrient( aTransform );
|
2009-10-05 17:52:41 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
wxPoint pos = aTransform.TransformCoordinate( m_position ) + offset;
|
2009-10-05 17:52:41 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
plotter->SetCurrentLineWidth( GetPenSize() );
|
2011-06-17 13:24:22 +00:00
|
|
|
PlotSymbol( plotter, pos, orient );
|
2010-06-24 18:31:43 +00:00
|
|
|
PlotPinTexts( plotter, pos, orient, GetParent()->GetPinNameOffset(),
|
2011-06-17 13:24:22 +00:00
|
|
|
GetParent()->ShowPinNumbers(), GetParent()->ShowPinNames(),
|
|
|
|
GetPenSize() );
|
2009-10-05 17:52:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_PIN::SetWidth( int aWidth )
|
2010-12-07 16:10:42 +00:00
|
|
|
{
|
|
|
|
if( m_width != aWidth )
|
|
|
|
{
|
|
|
|
m_width = aWidth;
|
|
|
|
SetModified();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
void LIB_PIN::GetMsgPanelInfo( MSG_PANEL_ITEMS& aList )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2015-01-18 11:49:32 +00:00
|
|
|
wxString text;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
LIB_ITEM::GetMsgPanelInfo( aList );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Name" ), m_name, DARKCYAN ) );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
if( m_number == 0 )
|
2015-01-18 11:49:32 +00:00
|
|
|
text = wxT( "?" );
|
2009-04-05 20:49:15 +00:00
|
|
|
else
|
2015-01-18 11:49:32 +00:00
|
|
|
PinStringNum( text );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2015-01-18 11:49:32 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Number" ), text, DARKCYAN ) );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Type" ),
|
2015-04-02 18:51:47 +00:00
|
|
|
LIB_PIN::GetElectricalTypeName( m_type ),
|
2013-01-12 17:32:24 +00:00
|
|
|
RED ) );
|
2015-01-18 11:49:32 +00:00
|
|
|
|
|
|
|
int styleCodeIndex = GetStyleCodeIndex( m_shape );
|
2015-04-07 13:19:30 +00:00
|
|
|
|
2015-01-18 11:49:32 +00:00
|
|
|
if( styleCodeIndex >= 0 )
|
2015-04-02 18:51:47 +00:00
|
|
|
text = getPinStyleName( styleCodeIndex );
|
2015-01-18 11:49:32 +00:00
|
|
|
else
|
|
|
|
text = wxT( "?" );
|
|
|
|
|
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Style" ), text, BLUE ) );
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2009-10-30 19:26:25 +00:00
|
|
|
if( IsVisible() )
|
2015-01-18 11:49:32 +00:00
|
|
|
text = _( "Yes" );
|
2009-04-05 20:49:15 +00:00
|
|
|
else
|
2015-01-18 11:49:32 +00:00
|
|
|
text = _( "No" );
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2015-01-18 11:49:32 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Visible" ), text, DARKGREEN ) );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
// Display pin length
|
2015-01-18 11:49:32 +00:00
|
|
|
text = StringFromValue( g_UserUnit, m_length, true );
|
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Length" ), text, MAGENTA ) );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2015-04-07 13:19:30 +00:00
|
|
|
text = getPinOrientationName( (unsigned) GetOrientationCodeIndex( m_orientation ) );
|
2015-01-18 11:49:32 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Orientation" ), text, DARKMAGENTA ) );
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
const EDA_RECT LIB_PIN::GetBoundingBox() const
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
LIB_PART* entry = (LIB_PART* ) m_Parent;
|
2011-04-18 20:22:17 +00:00
|
|
|
EDA_RECT bbox;
|
|
|
|
wxPoint begin;
|
|
|
|
wxPoint end;
|
2011-04-27 19:44:32 +00:00
|
|
|
int nameTextOffset = 0;
|
|
|
|
bool showName = !m_name.IsEmpty() && (m_name != wxT( "~" ));
|
2011-05-05 17:45:35 +00:00
|
|
|
bool showNum = m_number != 0;
|
2011-05-25 10:42:56 +00:00
|
|
|
int minsizeV = TARGET_PIN_RADIUS;
|
|
|
|
|
2011-04-18 20:22:17 +00:00
|
|
|
|
|
|
|
if( entry )
|
2011-04-27 19:44:32 +00:00
|
|
|
{
|
|
|
|
if( entry->ShowPinNames() )
|
|
|
|
nameTextOffset = entry->GetPinNameOffset();
|
|
|
|
else
|
|
|
|
showName = false;
|
2011-05-05 17:45:35 +00:00
|
|
|
|
|
|
|
showNum = entry->ShowPinNumbers();
|
2011-04-27 19:44:32 +00:00
|
|
|
}
|
2011-04-18 20:22:17 +00:00
|
|
|
|
|
|
|
// First, calculate boundary box corners position
|
2011-12-08 21:05:43 +00:00
|
|
|
int numberTextLength = showNum ? m_numTextSize * GetNumberString().Len() : 0;
|
2011-04-18 20:22:17 +00:00
|
|
|
|
2011-05-25 10:42:56 +00:00
|
|
|
// Actual text height is bigger than text size
|
// Dick Hollenbeck's KiROUND R&D
// This provides better project control over rounding to int from double
// than wxRound() did. This scheme provides better logging in Debug builds
// and it provides for compile time calculation of constants.
#include <stdio.h>
#include <assert.h>
#include <limits.h>
//-----<KiROUND KIT>------------------------------------------------------------
/**
* KiROUND
* rounds a floating point number to an int using
* "round halfway cases away from zero".
* In Debug build an assert fires if will not fit into an int.
*/
#if defined( DEBUG )
// DEBUG: a macro to capture line and file, then calls this inline
static inline int KiRound( double v, int line, const char* filename )
{
v = v < 0 ? v - 0.5 : v + 0.5;
if( v > INT_MAX + 0.5 )
{
printf( "%s: in file %s on line %d, val: %.16g too ' > 0 ' for int\n", __FUNCTION__, filename, line, v );
}
else if( v < INT_MIN - 0.5 )
{
printf( "%s: in file %s on line %d, val: %.16g too ' < 0 ' for int\n", __FUNCTION__, filename, line, v );
}
return int( v );
}
#define KiROUND( v ) KiRound( v, __LINE__, __FILE__ )
#else
// RELEASE: a macro so compile can pre-compute constants.
#define KiROUND( v ) int( (v) < 0 ? (v) - 0.5 : (v) + 0.5 )
#endif
//-----</KiROUND KIT>-----------------------------------------------------------
// Only a macro is compile time calculated, an inline function causes a static constructor
// in a situation like this.
// Therefore the Release build is best done with a MACRO not an inline function.
int Computed = KiROUND( 14.3 * 8 );
int main( int argc, char** argv )
{
for( double d = double(INT_MAX)-1; d < double(INT_MAX)+8; d += 2.0 )
{
int i = KiROUND( d );
printf( "t: %d %.16g\n", i, d );
}
return 0;
}
2012-04-19 06:55:45 +00:00
|
|
|
int numberTextHeight = showNum ? KiROUND( m_numTextSize * 1.1 ) : 0;
|
2011-04-27 19:44:32 +00:00
|
|
|
|
|
|
|
if( m_shape & INVERT )
|
2014-05-13 19:24:12 +00:00
|
|
|
minsizeV = std::max( TARGET_PIN_RADIUS, ExternalPinDecoSize( *this ) );
|
2011-04-18 20:22:17 +00:00
|
|
|
|
|
|
|
// calculate top left corner position
|
|
|
|
// for the default pin orientation (PIN_RIGHT)
|
2012-09-22 11:19:37 +00:00
|
|
|
begin.y = std::max( minsizeV, numberTextHeight + TXTMARGE );
|
|
|
|
begin.x = std::min( -TARGET_PIN_RADIUS, m_length - (numberTextLength / 2) );
|
2011-04-18 20:22:17 +00:00
|
|
|
|
|
|
|
// calculate bottom right corner position and adjust top left corner position
|
2011-04-27 19:44:32 +00:00
|
|
|
int nameTextLength = 0;
|
2011-05-05 17:45:35 +00:00
|
|
|
int nameTextHeight = 0;
|
2011-04-27 19:44:32 +00:00
|
|
|
|
|
|
|
if( showName )
|
|
|
|
{
|
|
|
|
int length = m_name.Len();
|
|
|
|
|
|
|
|
// Don't count the line over text symbol.
|
|
|
|
if( m_name.Left( 1 ) == wxT( "~" ) )
|
|
|
|
length -= 1;
|
|
|
|
|
2011-12-08 21:05:43 +00:00
|
|
|
nameTextLength = ( m_nameTextSize * length ) + nameTextOffset;
|
|
|
|
|
2011-05-05 17:45:35 +00:00
|
|
|
// Actual text height are bigger than text size
|
// Dick Hollenbeck's KiROUND R&D
// This provides better project control over rounding to int from double
// than wxRound() did. This scheme provides better logging in Debug builds
// and it provides for compile time calculation of constants.
#include <stdio.h>
#include <assert.h>
#include <limits.h>
//-----<KiROUND KIT>------------------------------------------------------------
/**
* KiROUND
* rounds a floating point number to an int using
* "round halfway cases away from zero".
* In Debug build an assert fires if will not fit into an int.
*/
#if defined( DEBUG )
// DEBUG: a macro to capture line and file, then calls this inline
static inline int KiRound( double v, int line, const char* filename )
{
v = v < 0 ? v - 0.5 : v + 0.5;
if( v > INT_MAX + 0.5 )
{
printf( "%s: in file %s on line %d, val: %.16g too ' > 0 ' for int\n", __FUNCTION__, filename, line, v );
}
else if( v < INT_MIN - 0.5 )
{
printf( "%s: in file %s on line %d, val: %.16g too ' < 0 ' for int\n", __FUNCTION__, filename, line, v );
}
return int( v );
}
#define KiROUND( v ) KiRound( v, __LINE__, __FILE__ )
#else
// RELEASE: a macro so compile can pre-compute constants.
#define KiROUND( v ) int( (v) < 0 ? (v) - 0.5 : (v) + 0.5 )
#endif
//-----</KiROUND KIT>-----------------------------------------------------------
// Only a macro is compile time calculated, an inline function causes a static constructor
// in a situation like this.
// Therefore the Release build is best done with a MACRO not an inline function.
int Computed = KiROUND( 14.3 * 8 );
int main( int argc, char** argv )
{
for( double d = double(INT_MAX)-1; d < double(INT_MAX)+8; d += 2.0 )
{
int i = KiROUND( d );
printf( "t: %d %.16g\n", i, d );
}
return 0;
}
2012-04-19 06:55:45 +00:00
|
|
|
nameTextHeight = KiROUND( m_nameTextSize * 1.1 ) + TXTMARGE;
|
2011-04-27 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
2011-05-25 10:42:56 +00:00
|
|
|
if( nameTextOffset ) // for values > 0, pin name is inside the body
|
|
|
|
{
|
|
|
|
end.x = m_length + nameTextLength;
|
2012-09-22 11:19:37 +00:00
|
|
|
end.y = std::min( -minsizeV, -nameTextHeight / 2 );
|
2011-05-25 10:42:56 +00:00
|
|
|
}
|
|
|
|
else // if value == 0:
|
2011-10-31 20:49:48 +00:00
|
|
|
// pin name is outside the body, and above the pin line
|
2011-05-25 10:42:56 +00:00
|
|
|
// pin num is below the pin line
|
|
|
|
{
|
2012-09-22 11:19:37 +00:00
|
|
|
end.x = std::max(m_length, nameTextLength);
|
2011-05-25 10:42:56 +00:00
|
|
|
end.y = -begin.y;
|
2012-09-22 11:19:37 +00:00
|
|
|
begin.y = std::max( minsizeV, nameTextHeight );
|
2011-05-25 10:42:56 +00:00
|
|
|
}
|
2011-04-18 20:22:17 +00:00
|
|
|
|
|
|
|
// Now, calculate boundary box corners position for the actual pin orientation
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
int orient = PinDrawOrient( DefaultTransform );
|
2011-05-25 10:42:56 +00:00
|
|
|
|
|
|
|
/* Calculate the pin position */
|
|
|
|
switch( orient )
|
2011-04-18 20:22:17 +00:00
|
|
|
{
|
|
|
|
case PIN_UP:
|
|
|
|
// Pin is rotated and texts positions are mirrored
|
|
|
|
RotatePoint( &begin, wxPoint( 0, 0 ), -900 );
|
|
|
|
RotatePoint( &end, wxPoint( 0, 0 ), -900 );
|
|
|
|
break;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2011-04-18 20:22:17 +00:00
|
|
|
case PIN_DOWN:
|
|
|
|
RotatePoint( &begin, wxPoint( 0, 0 ), 900 );
|
|
|
|
RotatePoint( &end, wxPoint( 0, 0 ), 900 );
|
|
|
|
NEGATE( begin.x );
|
|
|
|
NEGATE( end.x );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_LEFT:
|
|
|
|
NEGATE( begin.x );
|
|
|
|
NEGATE( end.x );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_RIGHT:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-05-25 10:42:56 +00:00
|
|
|
// Draw Y axis is reversed in schematic:
|
|
|
|
NEGATE( begin.y );
|
|
|
|
NEGATE( end.y );
|
|
|
|
|
|
|
|
wxPoint pos1 = DefaultTransform.TransformCoordinate( m_position );
|
|
|
|
begin += pos1;
|
|
|
|
end += pos1;
|
2011-04-18 20:22:17 +00:00
|
|
|
|
2011-05-05 17:45:35 +00:00
|
|
|
bbox.SetOrigin( begin );
|
|
|
|
bbox.SetEnd( end );
|
2011-04-18 20:22:17 +00:00
|
|
|
bbox.Normalize();
|
2011-05-05 17:45:35 +00:00
|
|
|
bbox.Inflate( GetPenSize() / 2 );
|
2011-04-18 20:22:17 +00:00
|
|
|
|
|
|
|
return bbox;
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|
2009-10-30 19:26:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
wxArrayString LIB_PIN::GetOrientationNames( void )
|
|
|
|
{
|
2009-11-16 21:37:53 +00:00
|
|
|
wxArrayString tmp;
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2009-11-16 21:37:53 +00:00
|
|
|
for( unsigned ii = 0; ii < PIN_ORIENTATION_CNT; ii++ )
|
2015-04-02 18:51:47 +00:00
|
|
|
tmp.Add( getPinOrientationName( ii ) );
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2009-11-16 21:37:53 +00:00
|
|
|
return tmp;
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int LIB_PIN::GetOrientationCode( int index )
|
|
|
|
{
|
|
|
|
if( index >= 0 && index < (int) PIN_ORIENTATION_CNT )
|
|
|
|
return pin_orientation_codes[ index ];
|
|
|
|
|
|
|
|
return PIN_RIGHT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int LIB_PIN::GetOrientationCodeIndex( int code )
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for( i = 0; i < PIN_ORIENTATION_CNT; i++ )
|
|
|
|
{
|
|
|
|
if( pin_orientation_codes[i] == code )
|
|
|
|
return (int) i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wxNOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-28 13:53:49 +00:00
|
|
|
void LIB_PIN::Rotate()
|
|
|
|
{
|
2011-05-05 18:43:56 +00:00
|
|
|
int orient = PIN_RIGHT;
|
2011-02-28 13:53:49 +00:00
|
|
|
|
2011-05-05 18:43:56 +00:00
|
|
|
switch( GetOrientation() )
|
|
|
|
{
|
|
|
|
case PIN_UP:
|
|
|
|
orient = PIN_LEFT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_DOWN:
|
|
|
|
orient = PIN_RIGHT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_LEFT:
|
|
|
|
orient = PIN_DOWN;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PIN_RIGHT:
|
|
|
|
orient = PIN_UP;
|
|
|
|
break;
|
|
|
|
}
|
2011-02-28 13:53:49 +00:00
|
|
|
|
2011-04-18 20:22:17 +00:00
|
|
|
// Set the new orientation
|
2011-05-05 18:43:56 +00:00
|
|
|
SetOrientation( orient );
|
2011-02-28 13:53:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-30 19:26:25 +00:00
|
|
|
wxArrayString LIB_PIN::GetStyleNames( void )
|
|
|
|
{
|
2009-11-16 21:37:53 +00:00
|
|
|
wxArrayString tmp;
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2009-11-16 21:37:53 +00:00
|
|
|
for( unsigned ii = 0; ii < PIN_STYLE_CNT; ii++ )
|
2015-04-02 18:51:47 +00:00
|
|
|
tmp.Add( getPinStyleName( ii ) );
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2009-11-16 21:37:53 +00:00
|
|
|
return tmp;
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int LIB_PIN::GetStyleCode( int index )
|
|
|
|
{
|
|
|
|
if( index >= 0 && index < (int) PIN_STYLE_CNT )
|
|
|
|
return pin_style_codes[ index ];
|
|
|
|
|
|
|
|
return NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int LIB_PIN::GetStyleCodeIndex( int code )
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for( i = 0; i < PIN_STYLE_CNT; i++ )
|
|
|
|
{
|
|
|
|
if( pin_style_codes[i] == code )
|
|
|
|
return (int) i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wxNOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxArrayString LIB_PIN::GetElectricalTypeNames( void )
|
|
|
|
{
|
2009-11-16 21:37:53 +00:00
|
|
|
wxArrayString tmp;
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2009-11-16 21:37:53 +00:00
|
|
|
for( unsigned ii = 0; ii < PIN_ELECTRICAL_TYPE_CNT; ii++ )
|
2015-04-02 18:51:47 +00:00
|
|
|
tmp.Add( LIB_PIN::GetElectricalTypeName( ii ) );
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2009-11-16 21:37:53 +00:00
|
|
|
return tmp;
|
2009-10-30 19:26:25 +00:00
|
|
|
}
|
2010-03-04 09:32:51 +00:00
|
|
|
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2011-08-29 03:04:59 +00:00
|
|
|
const BITMAP_DEF* LIB_PIN::GetElectricalTypeSymbols()
|
2010-03-04 09:32:51 +00:00
|
|
|
{
|
2015-04-02 18:51:47 +00:00
|
|
|
return iconsPinsElectricalType;
|
2010-03-04 09:32:51 +00:00
|
|
|
}
|
|
|
|
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2011-08-29 03:04:59 +00:00
|
|
|
const BITMAP_DEF* LIB_PIN::GetOrientationSymbols()
|
2010-03-04 09:32:51 +00:00
|
|
|
{
|
2015-04-03 09:13:06 +00:00
|
|
|
return iconsPinsOrientations;
|
2010-03-04 09:32:51 +00:00
|
|
|
}
|
|
|
|
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2011-08-29 03:04:59 +00:00
|
|
|
const BITMAP_DEF* LIB_PIN::GetStyleSymbols()
|
2010-03-04 09:32:51 +00:00
|
|
|
{
|
2015-04-03 09:13:06 +00:00
|
|
|
return iconsPinsShapes;
|
2010-03-04 09:32:51 +00:00
|
|
|
}
|
|
|
|
|
2011-04-18 20:22:17 +00:00
|
|
|
|
2011-08-29 03:04:59 +00:00
|
|
|
BITMAP_DEF LIB_PIN::GetMenuImage() const
|
2011-03-25 19:16:05 +00:00
|
|
|
{
|
2015-04-02 18:51:47 +00:00
|
|
|
return iconsPinsElectricalType[m_type];
|
2011-03-25 19:16:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxString LIB_PIN::GetSelectMenuText() const
|
|
|
|
{
|
2011-03-26 10:08:50 +00:00
|
|
|
wxString tmp;
|
2015-01-18 11:49:32 +00:00
|
|
|
wxString style;
|
|
|
|
|
|
|
|
int styleCode = GetStyleCodeIndex( m_shape );
|
2015-04-02 18:51:47 +00:00
|
|
|
|
2015-01-18 11:49:32 +00:00
|
|
|
if( styleCode >= 0 )
|
2015-04-02 18:51:47 +00:00
|
|
|
style = getPinStyleName( styleCode );
|
2015-01-18 11:49:32 +00:00
|
|
|
else
|
|
|
|
style = wxT( "?" );
|
2011-04-18 20:22:17 +00:00
|
|
|
|
2011-03-26 10:08:50 +00:00
|
|
|
tmp.Printf( _( "Pin %s, %s, %s" ),
|
|
|
|
GetChars( GetNumberString() ),
|
2015-04-02 18:51:47 +00:00
|
|
|
GetChars( GetElectricalTypeName() ),
|
2015-01-18 11:49:32 +00:00
|
|
|
GetChars( style )
|
2011-04-18 20:22:17 +00:00
|
|
|
);
|
2011-03-26 10:08:50 +00:00
|
|
|
return tmp;
|
2011-03-25 19:16:05 +00:00
|
|
|
}
|
|
|
|
|
2010-11-18 21:10:52 +00:00
|
|
|
|
2011-12-01 16:49:28 +00:00
|
|
|
bool LIB_PIN::Matches( wxFindReplaceData& aSearchData, void* aAuxData, wxPoint* aFindLocation )
|
|
|
|
{
|
2011-12-13 15:37:33 +00:00
|
|
|
wxLogTrace( traceFindItem, wxT( " item " ) + GetSelectMenuText() );
|
2011-12-01 16:49:28 +00:00
|
|
|
|
2011-12-13 15:37:33 +00:00
|
|
|
// Note: this will have to be modified if we add find and replace capability to the
|
|
|
|
// compoment library editor. Otherwise, you wont be able to replace pin text.
|
2011-12-01 16:49:28 +00:00
|
|
|
if( !( aSearchData.GetFlags() & FR_SEARCH_ALL_PINS )
|
2011-12-13 15:37:33 +00:00
|
|
|
|| ( aSearchData.GetFlags() & FR_SEARCH_REPLACE ) )
|
2011-12-01 16:49:28 +00:00
|
|
|
return false;
|
|
|
|
|
2011-12-13 15:37:33 +00:00
|
|
|
wxLogTrace( traceFindItem, wxT( " child item " ) + GetSelectMenuText() );
|
2011-12-01 16:49:28 +00:00
|
|
|
|
|
|
|
if( EDA_ITEM::Matches( GetName(), aSearchData )
|
|
|
|
|| EDA_ITEM::Matches( GetNumberString(), aSearchData ) )
|
|
|
|
{
|
|
|
|
if( aFindLocation )
|
|
|
|
*aFindLocation = GetBoundingBox().Centre();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-03 05:11:05 +00:00
|
|
|
#if defined(DEBUG)
|
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
void LIB_PIN::Show( int nestLevel, std::ostream& os ) const
|
2010-08-03 05:11:05 +00:00
|
|
|
{
|
|
|
|
NestedSpace( nestLevel, os ) << '<' << GetClass().Lower().mb_str()
|
2010-12-07 16:10:42 +00:00
|
|
|
<< " num=\"" << GetNumberString().mb_str()
|
2010-08-03 05:11:05 +00:00
|
|
|
<< '"' << "/>\n";
|
|
|
|
|
|
|
|
// NestedSpace( nestLevel, os ) << "</" << GetClass().Lower().mb_str() << ">\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|