wxString GERBER_DRAW_ITEM::GetSelectMenuText( EDA_UNITS_T aUnits ) const { wxString layerName; layerName = GERBER_FILE_IMAGE_LIST::GetImagesList().GetDisplayName( GetLayer(), true ); return wxString::Format( _( "%s (D%d) on layer %d: %s" ), ShowGBRShape(), m_DCode, GetLayer() + 1, layerName ); }
void GERBER_DRAW_ITEM::GetMsgPanelInfo( std::vector< MSG_PANEL_ITEM >& aList ) { wxString msg; msg = ShowGBRShape(); aList.push_back( MSG_PANEL_ITEM( _( "Type" ), msg, DARKCYAN ) ); // Display D_Code value: msg.Printf( wxT( "%d" ), m_DCode ); aList.push_back( MSG_PANEL_ITEM( _( "D Code" ), msg, RED ) ); // Display graphic layer number msg.Printf( wxT( "%d" ), GetLayer() + 1 ); aList.push_back( MSG_PANEL_ITEM( _( "Graphic layer" ), msg, BROWN ) ); // Display item rotation // The full rotation is Image rotation + m_lyrRotation // but m_lyrRotation is specific to this object // so we display only this parameter msg.Printf( wxT( "%f" ), m_lyrRotation ); aList.push_back( MSG_PANEL_ITEM( _( "Rotation" ), msg, BLUE ) ); // Display item polarity (item specific) msg = m_LayerNegative ? _("Clear") : _("Dark"); aList.push_back( MSG_PANEL_ITEM( _( "Polarity" ), msg, BLUE ) ); // Display mirroring (item specific) msg.Printf( wxT( "A:%s B:%s" ), m_mirrorA ? _("Yes") : _("No"), m_mirrorB ? _("Yes") : _("No")); aList.push_back( MSG_PANEL_ITEM( _( "Mirror" ), msg, DARKRED ) ); // Display AB axis swap (item specific) msg = m_swapAxis ? wxT( "A=Y B=X" ) : wxT( "A=X B=Y" ); aList.push_back( MSG_PANEL_ITEM( _( "AB axis" ), msg, DARKRED ) ); }
void GERBER_DRAW_ITEM::GetMsgPanelInfo( EDA_UNITS_T aUnits, std::vector< MSG_PANEL_ITEM >& aList ) { wxString msg; wxString text; msg = ShowGBRShape(); aList.push_back( MSG_PANEL_ITEM( _( "Type" ), msg, DARKCYAN ) ); // Display D_Code value with its attributes: msg.Printf( _( "D Code %d" ), m_DCode ); D_CODE* apertDescr = GetDcodeDescr(); if( !apertDescr || apertDescr->m_AperFunction.IsEmpty() ) text = _( "No attribute" ); else text = apertDescr->m_AperFunction; aList.push_back( MSG_PANEL_ITEM( msg, text, RED ) ); // Display graphic layer name msg = GERBER_FILE_IMAGE_LIST::GetImagesList().GetDisplayName( GetLayer(), true ); aList.push_back( MSG_PANEL_ITEM( _( "Graphic Layer" ), msg, DARKGREEN ) ); // Display item rotation // The full rotation is Image rotation + m_lyrRotation // but m_lyrRotation is specific to this object // so we display only this parameter msg.Printf( wxT( "%f" ), m_lyrRotation ); aList.push_back( MSG_PANEL_ITEM( _( "Rotation" ), msg, BLUE ) ); // Display item polarity (item specific) msg = m_LayerNegative ? _("Clear") : _("Dark"); aList.push_back( MSG_PANEL_ITEM( _( "Polarity" ), msg, BLUE ) ); // Display mirroring (item specific) msg.Printf( wxT( "A:%s B:%s" ), m_mirrorA ? _("Yes") : _("No"), m_mirrorB ? _("Yes") : _("No")); aList.push_back( MSG_PANEL_ITEM( _( "Mirror" ), msg, DARKRED ) ); // Display AB axis swap (item specific) msg = m_swapAxis ? wxT( "A=Y B=X" ) : wxT( "A=X B=Y" ); aList.push_back( MSG_PANEL_ITEM( _( "AB axis" ), msg, DARKRED ) ); // Display net info, if exists if( m_netAttributes.m_NetAttribType == GBR_NETLIST_METADATA::GBR_NETINFO_UNSPECIFIED ) return; // Build full net info: wxString net_msg; wxString cmp_pad_msg; if( ( m_netAttributes.m_NetAttribType & GBR_NETLIST_METADATA::GBR_NETINFO_NET ) ) { net_msg = _( "Net:" ); net_msg << " "; if( m_netAttributes.m_Netname.IsEmpty() ) net_msg << "<no net name>"; else net_msg << m_netAttributes.m_Netname; } if( ( m_netAttributes.m_NetAttribType & GBR_NETLIST_METADATA::GBR_NETINFO_PAD ) ) { cmp_pad_msg.Printf( _( "Cmp: %s; Pad: %s" ), GetChars( m_netAttributes.m_Cmpref ), GetChars( m_netAttributes.m_Padname ) ); } else if( ( m_netAttributes.m_NetAttribType & GBR_NETLIST_METADATA::GBR_NETINFO_CMP ) ) { cmp_pad_msg = _( "Cmp:" ); cmp_pad_msg << " " << m_netAttributes.m_Cmpref; } aList.push_back( MSG_PANEL_ITEM( net_msg, cmp_pad_msg, DARKCYAN ) ); }