102 lines
2.7 KiB
C++
102 lines
2.7 KiB
C++
/*******************/
|
|
/* File: cvpcb.cpp */
|
|
/*******************/
|
|
|
|
#include "fctsys.h"
|
|
#include "appl_wxstruct.h"
|
|
#include "wxstruct.h"
|
|
#include "common.h"
|
|
#include "confirm.h"
|
|
#include "gestfich.h"
|
|
#include "id.h"
|
|
|
|
#include "cvpcb.h"
|
|
#include "zones.h"
|
|
#include "bitmaps.h"
|
|
#include "protos.h"
|
|
#include "cvstruct.h"
|
|
|
|
#include <wx/snglinst.h>
|
|
|
|
|
|
/* Constant string definitions for CvPcb */
|
|
const wxString ComponentFileExtension( wxT( "cmp" ) );
|
|
const wxString RetroFileExtension( wxT( "stf" ) );
|
|
const wxString FootprintAliasFileExtension( wxT( "equ" ) );
|
|
|
|
// Wildcard for schematic retroannotation (import footprint names in schematic):
|
|
const wxString RetroFileWildcard( _( "Kicad component list files " \
|
|
"(*.stf)|*.stf" ) );
|
|
const wxString FootprintAliasFileWildcard( _( "Kicad footprint alias files " \
|
|
"(*.equ)|*.equ" ) );
|
|
|
|
const wxString titleLibLoadError( _( "Library Load Error" ) );
|
|
|
|
|
|
// Create a new application object
|
|
IMPLEMENT_APP( WinEDA_App )
|
|
|
|
|
|
/************************************/
|
|
/* Called to initialize the program */
|
|
/************************************/
|
|
|
|
bool WinEDA_App::OnInit()
|
|
{
|
|
wxFileName fn;
|
|
wxString msg;
|
|
wxString currCWD = wxGetCwd();
|
|
WinEDA_CvpcbFrame* frame = NULL;
|
|
|
|
InitEDA_Appl( wxT( "Cvpcb" ), APP_TYPE_CVPCB );
|
|
|
|
if( m_Checker && m_Checker->IsAnotherRunning() )
|
|
{
|
|
if( !IsOK( NULL, _( "Cvpcb is already running, Continue?" ) ) )
|
|
return false;
|
|
}
|
|
|
|
GetSettings(); // read current setup
|
|
|
|
wxSetWorkingDirectory( currCWD ); // mofifie par GetSetting
|
|
|
|
if( argc > 1 )
|
|
{
|
|
wxLogDebug( wxT( "CvPcb opening file <%s>" ), argv[1] );
|
|
fn = argv[1];
|
|
wxSetWorkingDirectory( fn.GetPath() );
|
|
}
|
|
|
|
g_DrawBgColor = BLACK;
|
|
|
|
wxString Title = GetTitle() + wxT( " " ) + GetBuildVersion();
|
|
frame = new WinEDA_CvpcbFrame( Title );
|
|
|
|
// Show the frame
|
|
SetTopWindow( frame );
|
|
|
|
frame->LoadProjectFile( fn.GetFullPath() );
|
|
frame->Show( TRUE );
|
|
frame->BuildFootprintListBox();
|
|
|
|
if( fn.IsOk() && fn.FileExists() )
|
|
{
|
|
frame->m_NetlistFileName = fn;
|
|
|
|
if( frame->ReadNetList() )
|
|
{
|
|
frame->m_NetlistFileExtension = fn.GetExt();
|
|
return true;
|
|
}
|
|
}
|
|
|
|
LoadFootprintFiles( frame->m_ModuleLibNames, frame->m_footprints );
|
|
frame->m_NetlistFileExtension = wxT( "net" );
|
|
frame->m_NetlistFileName.Clear();
|
|
frame->SetTitle( GetTitle() + wxT( " " ) + GetBuildVersion() +
|
|
wxGetCwd() + wxFileName::GetPathSeparator() +
|
|
_( " [no file]" ) );
|
|
|
|
return true;
|
|
}
|