/**********************************************************/ /* Routines d'affichage de parametres et caracteristiques */ /**********************************************************/ /* Fichier AFFICHE.CPP */ #include "fctsys.h" #include "gr_basic.h" #include "common.h" #include "program.h" #include "libcmp.h" #include "general.h" #include "protos.h" /***********************************************************/ void DrawSheetStruct::Display_Infos( WinEDA_DrawFrame* frame ) /************************************************************/ { frame->MsgPanel->EraseMsgBox(); Affiche_1_Parametre( frame, 1, _( "Name" ), m_SheetName, CYAN ); Affiche_1_Parametre( frame, 30, _( "FileName" ), m_FileName, BROWN ); } /***************************************************************/ void SCH_COMPONENT::Display_Infos( WinEDA_DrawFrame* frame ) /***************************************************************/ { EDA_LibComponentStruct* Entry = FindLibPart( m_ChipName.GetData(), wxEmptyString, FIND_ROOT );; wxString msg; frame->MsgPanel->EraseMsgBox(); Affiche_1_Parametre( frame, 1, _( "Ref" ), GetRef(((WinEDA_SchematicFrame*)frame)->GetSheet()), DARKCYAN ); if( Entry && Entry->m_Options == ENTRY_POWER ) msg = _( "Pwr Symb" ); else msg = _( "Val" ); Affiche_1_Parametre( frame, 10, msg, GetField(VALUE)->m_Text, DARKCYAN ); Affiche_1_Parametre( frame, 28, _( "RefLib" ), m_ChipName.GetData(), BROWN ); msg = FindLibName; Affiche_1_Parametre( frame, 40, _( "Lib" ), msg, DARKRED ); if( Entry ) { Affiche_1_Parametre( frame, 52, Entry->m_Doc, Entry->m_KeyWord, DARKCYAN ); } } /*******************************************************/ void LibDrawPin::Display_Infos( WinEDA_DrawFrame* frame ) /*******************************************************/ /* Affiche en bas d'ecran les caracteristiques de la pin */ { wxString Text; int ii; frame->MsgPanel->EraseMsgBox(); /* Affichage du nom */ Affiche_1_Parametre( frame, 30, _( "PinName" ), m_PinName, DARKCYAN ); /* Affichage du numero */ if( m_PinNum == 0 ) Text = wxT( "?" ); else ReturnPinStringNum( Text ); Affiche_1_Parametre( frame, 38, _( "PinNum" ), Text, DARKCYAN ); /* Affichage du type */ ii = m_PinType; Affiche_1_Parametre( frame, 44, _( "PinType" ), MsgPinElectricType[ii], RED ); /* Affichage de la visiblite */ ii = m_Attributs; if( ii & 1 ) Text = _( "no" ); else Text = _( "yes" ); Affiche_1_Parametre( frame, 50, _( "Display" ), Text, DARKGREEN ); /* Display pin length */ Text = ReturnStringFromValue( g_UnitMetric, m_PinLen, EESCHEMA_INTERNAL_UNIT, true ); Affiche_1_Parametre( frame, 56, _( "Length" ), Text, MAGENTA ); /* Affichage de l'orientation */ switch( m_Orient ) { case PIN_UP: Text = _( "Up" ); break; case PIN_DOWN: Text = _( "Down" ); break; case PIN_LEFT: Text = _( "Left" ); break; case PIN_RIGHT: Text = _( "Right" ); break; default: Text = wxT( "??" ); break; } Affiche_1_Parametre( frame, 62, _( "Orient" ), Text, MAGENTA ); } /***********************************************************************/ void LibEDA_BaseStruct::Display_Infos_DrawEntry( WinEDA_DrawFrame* frame ) /***********************************************************************/ /* Affiche en bas d'ecran les caracteristiques de l'element */ { wxString msg; frame->MsgPanel->EraseMsgBox(); /* affichage du type */ msg = wxT( "??" ); switch( Type() ) { case COMPONENT_ARC_DRAW_TYPE: msg = wxT( "Arc" ); break; case COMPONENT_CIRCLE_DRAW_TYPE: msg = wxT( "Circle" ); break; case COMPONENT_GRAPHIC_TEXT_DRAW_TYPE: msg = wxT( "Text" ); break; case COMPONENT_RECT_DRAW_TYPE: msg = wxT( "Rect" ); break; case COMPONENT_POLYLINE_DRAW_TYPE: msg = wxT( "PolyLine" ); break; case COMPONENT_LINE_DRAW_TYPE: msg = wxT( "Segment" ); break; case COMPONENT_PIN_DRAW_TYPE: ( (LibDrawPin*) this )->Display_Infos( frame ); msg = wxT( "Pin" ); break; default: ; } Affiche_1_Parametre( frame, 1, wxT( "Type" ), msg, CYAN ); /* Affichage de l'appartenance */ if( m_Unit == 0 ) msg = _( "All" ); else msg.Printf( wxT( "%d" ), m_Unit ); Affiche_1_Parametre( frame, 8, _( "Unit" ), msg, BROWN ); if( m_Convert == 0 ) msg = _( "All" ); else if( m_Convert == 1 ) msg = _( "no" ); else if( m_Convert == 2 ) msg = _( "yes" ); else msg = wxT( "?" ); Affiche_1_Parametre( frame, 14, _( "Convert" ), msg, BROWN ); if( m_Width ) msg = ReturnStringFromValue( g_UnitMetric, m_Width, EESCHEMA_INTERNAL_UNIT, true ); else msg = _( "default" ); Affiche_1_Parametre( frame, 20, _( "Width" ), msg, BLUE ); }