/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2004-2021 KiCad Developers, see change_log.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, you may find one here: * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * or you may search the http://www.gnu.org website for the version 2 license, * or you may write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #include #include #include #include #include // These are true singletons so it's OK for them to be globals. static std::vector g_typeIcons; static wxArrayString g_typeNames; static std::vector g_shapeIcons; static wxArrayString g_shapeNames; static std::vector g_orientationIcons; static wxArrayString g_orientationNames; struct pinTypeStruct { wxString name; BITMAPS bitmap; }; // clang-format off const std::map pinTypes = { { ELECTRICAL_PINTYPE::PT_INPUT, { _( "Input" ), BITMAPS::pintype_input } }, { ELECTRICAL_PINTYPE::PT_OUTPUT, { _( "Output" ), BITMAPS::pintype_output } }, { ELECTRICAL_PINTYPE::PT_BIDI, { _( "Bidirectional" ), BITMAPS::pintype_bidi } }, { ELECTRICAL_PINTYPE::PT_TRISTATE, { _( "Tri-state" ), BITMAPS::pintype_3states } }, { ELECTRICAL_PINTYPE::PT_PASSIVE, { _( "Passive" ), BITMAPS::pintype_passive } }, { ELECTRICAL_PINTYPE::PT_NIC, { _( "Free" ), BITMAPS::pintype_nic } }, { ELECTRICAL_PINTYPE::PT_UNSPECIFIED, { _( "Unspecified" ), BITMAPS::pintype_notspecif } }, { ELECTRICAL_PINTYPE::PT_POWER_IN, { _( "Power input" ), BITMAPS::pintype_powerinput } }, { ELECTRICAL_PINTYPE::PT_POWER_OUT, { _( "Power output" ), BITMAPS::pintype_poweroutput } }, { ELECTRICAL_PINTYPE::PT_OPENCOLLECTOR,{ _( "Open collector" ), BITMAPS::pintype_opencoll } }, { ELECTRICAL_PINTYPE::PT_OPENEMITTER, { _( "Open emitter" ), BITMAPS::pintype_openemit } }, { ELECTRICAL_PINTYPE::PT_NC, { _( "Unconnected" ), BITMAPS::pintype_noconnect } }, }; // clang-format on struct pinShapeStruct { wxString name; BITMAPS bitmap; }; // clang-format off const std::map pinShapes = { { GRAPHIC_PINSHAPE::LINE, { _( "Line" ), BITMAPS::pinshape_normal } }, { GRAPHIC_PINSHAPE::INVERTED, { _( "Inverted" ), BITMAPS::pinshape_invert } }, { GRAPHIC_PINSHAPE::CLOCK, { _( "Clock" ), BITMAPS::pinshape_clock_normal } }, { GRAPHIC_PINSHAPE::INVERTED_CLOCK, { _( "Inverted clock" ), BITMAPS::pinshape_clock_invert } }, { GRAPHIC_PINSHAPE::INPUT_LOW, { _( "Input low" ), BITMAPS::pinshape_active_low_input } }, { GRAPHIC_PINSHAPE::CLOCK_LOW, { _( "Clock low" ), BITMAPS::pinshape_clock_active_low } }, { GRAPHIC_PINSHAPE::OUTPUT_LOW, { _( "Output low" ), BITMAPS::pinshape_active_low_output } }, { GRAPHIC_PINSHAPE::FALLING_EDGE_CLOCK, { _( "Falling edge clock" ), BITMAPS::pinshape_clock_fall } }, { GRAPHIC_PINSHAPE::NONLOGIC, { _( "NonLogic" ), BITMAPS::pinshape_nonlogic } }, }; // clang-format on static const int pin_orientation_codes[] = { PIN_RIGHT, PIN_LEFT, PIN_UP, PIN_DOWN }; // bitmaps to show pins orientations in dialog editor // must have same order than pin_orientation_names static const BITMAPS iconsPinsOrientations[] = { BITMAPS::pinorient_right, BITMAPS::pinorient_left, BITMAPS::pinorient_up, BITMAPS::pinorient_down, }; #define PIN_ORIENTATION_CNT arrayDim( pin_orientation_codes ) // 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 wxString PinOrientationName( unsigned aPinOrientationCode ) { /* 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" ), _( "Down" ), wxT( "???" ) }; if( aPinOrientationCode > PIN_ORIENTATION_CNT ) aPinOrientationCode = PIN_ORIENTATION_CNT; return pin_orientation_names[ aPinOrientationCode ]; } int PinOrientationCode( int index ) { if( index >= 0 && index < (int) PIN_ORIENTATION_CNT ) return pin_orientation_codes[ index ]; return PIN_RIGHT; } int PinOrientationIndex( 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; } void InitTables() { for( unsigned i = 0; i < ELECTRICAL_PINTYPES_TOTAL; ++i ) { g_typeIcons.push_back( ElectricalPinTypeGetBitmap( static_cast( i ) ) ); g_typeNames.push_back( ElectricalPinTypeGetText( static_cast( i ) ) ); } for( unsigned i = 0; i < GRAPHIC_PINSHAPES_TOTAL; ++i ) { g_shapeIcons.push_back( PinShapeGetBitmap( static_cast( i ) ) ); g_shapeNames.push_back( PinShapeGetText( static_cast( i ) ) ); } for( unsigned i = 0; i < PIN_ORIENTATION_CNT; ++i ) { g_orientationIcons.push_back( iconsPinsOrientations[ i ] ); g_orientationNames.push_back( PinOrientationName( i ) ); } } const wxArrayString& PinTypeNames() { if( g_typeNames.empty() ) InitTables(); return g_typeNames; } const std::vector& PinTypeIcons() { if( g_typeIcons.empty() ) InitTables(); return g_typeIcons; } const wxArrayString& PinShapeNames() { if( g_shapeNames.empty() ) InitTables(); return g_shapeNames; } const std::vector& PinShapeIcons() { if( g_shapeIcons.empty() ) InitTables(); return g_shapeIcons; } const wxArrayString& PinOrientationNames() { if( g_orientationNames.empty() ) InitTables(); return g_orientationNames; } const std::vector& PinOrientationIcons() { if( g_orientationIcons.empty() ) InitTables(); return g_orientationIcons; } wxString ElectricalPinTypeGetText( ELECTRICAL_PINTYPE aType ) { auto findIt = pinTypes.find( aType ); wxCHECK_MSG( findIt != pinTypes.end(), wxT( "???" ), "Could not find pin type in lookup map" ); return findIt->second.name; } BITMAPS ElectricalPinTypeGetBitmap( ELECTRICAL_PINTYPE aType ) { auto findIt = pinTypes.find( aType ); wxCHECK_MSG( findIt != pinTypes.end(), BITMAPS::INVALID_BITMAP, "Could not find pin type in lookup map" ); return findIt->second.bitmap; } wxString PinShapeGetText( GRAPHIC_PINSHAPE aShape ) { auto findIt = pinShapes.find( aShape ); wxCHECK_MSG( findIt != pinShapes.end(), wxT( "?" ), "Could not find pinshape in lookup map" ); return findIt->second.name; } BITMAPS PinShapeGetBitmap( GRAPHIC_PINSHAPE aShape ) { auto findIt = pinShapes.find( aShape ); wxCHECK_MSG( findIt != pinShapes.end(), BITMAPS::INVALID_BITMAP, "Could not find pinshape in lookup map" ); return findIt->second.bitmap; }