kicad/cvpcb/setvisu.cpp

76 lines
2.0 KiB
C++
Raw Normal View History

2007-05-06 16:03:28 +00:00
/*********************************************************************/
/** setvisu.cpp: initialisations de l'ecran d'affichage du composant **/
/*********************************************************************/
#include "fctsys.h"
#include "wxstruct.h"
#include "common.h"
#include "cvpcb.h"
#include "3d_viewer.h"
#include "id.h"
#include "bitmaps.h"
#include "protos.h"
/*******************************************/
void WinEDA_CvpcbFrame::CreateScreenCmp()
2007-05-06 16:03:28 +00:00
/*******************************************/
2007-05-06 16:03:28 +00:00
/* Creation de la fenetre d'affichage du composant
*/
2007-05-06 16:03:28 +00:00
{
wxString msg, FootprintName;
bool IsNew = FALSE;
2007-05-06 16:03:28 +00:00
FootprintName = m_FootprintList->GetSelectedFootprint();
2007-05-06 16:03:28 +00:00
if( DrawFrame == NULL )
{
DrawFrame = new WinEDA_DisplayFrame( this, m_Parent, _( "Module" ),
wxPoint( 0, 0 ), wxSize( 600, 400 ) );
2007-05-06 16:03:28 +00:00
IsNew = TRUE;
}
else
DrawFrame->Maximize( FALSE );
2007-05-06 16:03:28 +00:00
DrawFrame->SetFocus(); /* Active entree clavier */
DrawFrame->Show( TRUE );
2007-05-06 16:03:28 +00:00
if( !FootprintName.IsEmpty() )
{
msg = _( "Footprint: " ) + FootprintName;
DrawFrame->SetTitle( msg );
STOREMOD* Module = GetModuleDescrByName( FootprintName );
msg = _( "Lib: " );
if( Module )
msg += Module->m_LibName;
else
msg += wxT( "???" );
DrawFrame->SetStatusText( msg, 0 );
2007-05-06 16:03:28 +00:00
if( DrawFrame->m_Pcb->m_Modules )
{
// there is only one module in the list
DrawFrame->m_Pcb->m_Modules->DeleteStructure();
DrawFrame->m_Pcb->m_Modules = NULL;
}
2007-05-06 16:03:28 +00:00
DrawFrame->m_Pcb->m_Modules = DrawFrame->Get_Module( FootprintName );
DrawFrame->Zoom_Automatique( FALSE );
if( DrawFrame->m_Draw3DFrame )
DrawFrame->m_Draw3DFrame->NewDisplay();
}
else if( !IsNew )
{
DrawFrame->ReDrawPanel();
if( DrawFrame->m_Draw3DFrame )
DrawFrame->m_Draw3DFrame->NewDisplay();
}
}