128 lines
3.6 KiB
C++
128 lines
3.6 KiB
C++
/*****************************************************************************/
|
|
|
|
/**
|
|
* @file kicad.cpp
|
|
* @brief Main kicad library manager file
|
|
*/
|
|
/*****************************************************************************/
|
|
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "fctsys.h"
|
|
#include "appl_wxstruct.h"
|
|
#include "common.h"
|
|
#include "bitmaps.h"
|
|
#include "colors.h"
|
|
|
|
#ifdef USE_SPLASH_IMAGE
|
|
#define SPLASH_IMAGE logo_kicad.png
|
|
#include "wx/splash.h"
|
|
#include "wx/mediactrl.h"
|
|
#endif
|
|
|
|
#include "kicad.h"
|
|
#include "macros.h"
|
|
|
|
#include "build_version.h"
|
|
|
|
#ifdef KICAD_PYTHON
|
|
#include <pyhandler.h>
|
|
using namespace boost::python;
|
|
#endif
|
|
|
|
|
|
/* Import functions */
|
|
char* GetFileName( char* FullPathName );
|
|
void ShowLogo( char* FonteFileName );
|
|
|
|
/* Local functions */
|
|
|
|
/************************************/
|
|
/* Called to initialize the program */
|
|
/************************************/
|
|
|
|
// Create a new application object
|
|
IMPLEMENT_APP( WinEDA_App )
|
|
|
|
|
|
/*****************************************************************************/
|
|
bool WinEDA_App::OnInit()
|
|
/*****************************************************************************/
|
|
{
|
|
WinEDA_MainFrame* frame;
|
|
|
|
InitEDA_Appl( wxT( "KiCad" ), APP_TYPE_KICAD );
|
|
|
|
// read current setup and reopen last directory if no filename to open in command line
|
|
bool reopenLastUsedDirectory = argc == 1;
|
|
GetSettings(reopenLastUsedDirectory);
|
|
|
|
/* Make nameless project translatable */
|
|
wxFileName namelessProject( wxGetCwd(), _( "noname" ), ProjectFileExtension );
|
|
|
|
frame = new WinEDA_MainFrame( NULL, wxT( "KiCad" ),
|
|
wxPoint( 30, 20 ), wxSize( 600, 400 ) );
|
|
|
|
if( argc > 1 )
|
|
frame->m_ProjectFileName = argv[1];
|
|
else if( m_fileHistory.GetCount() )
|
|
{
|
|
frame->m_ProjectFileName = m_fileHistory.GetHistoryFile( 0 );
|
|
if( !frame->m_ProjectFileName.FileExists() )
|
|
m_fileHistory.RemoveFileFromHistory( 0 );
|
|
else
|
|
{
|
|
wxCommandEvent cmd( 0, wxID_FILE1 );
|
|
frame->OnFileHistory( cmd );
|
|
}
|
|
}
|
|
|
|
if( !frame->m_ProjectFileName.FileExists() )
|
|
{
|
|
wxCommandEvent cmd( 0, wxID_ANY );
|
|
frame->m_ProjectFileName = namelessProject;
|
|
frame->OnLoadProject( cmd );
|
|
}
|
|
|
|
frame->SetTitle( GetTitle() + wxT( " " ) + GetBuildVersion() +
|
|
wxT( " " ) + frame->m_ProjectFileName.GetFullPath() );
|
|
frame->ReCreateMenuBar();
|
|
frame->RecreateBaseHToolbar();
|
|
|
|
frame->m_LeftWin->ReCreateTreePrj();
|
|
SetTopWindow( frame );
|
|
|
|
/* Splash screen logo */
|
|
#ifdef USE_SPLASH_IMAGE
|
|
wxBitmap bmp;
|
|
wxString binDir = GetTraits()->GetStandardPaths().GetExecutablePath() +
|
|
wxFileName::GetPathSeparator();
|
|
|
|
if( bmp.LoadFile( binDir + _T( "logokicad.png" ), wxBITMAP_TYPE_PNG ) )
|
|
{
|
|
wxSplashScreen* splash = new wxSplashScreen( splash_screen,
|
|
wxSPLASH_CENTRE_ON_SCREEN | wxSPLASH_TIMEOUT,
|
|
3000,
|
|
frame,
|
|
wxID_ANY,
|
|
wxDefaultPosition,
|
|
wxDefaultSize,
|
|
wxSIMPLE_BORDER | wxSTAY_ON_TOP );
|
|
}
|
|
#endif /* USE_SPLASH_IMAGE */
|
|
|
|
frame->Show( TRUE );
|
|
frame->Raise();
|
|
|
|
|
|
#ifdef KICAD_PYTHON
|
|
PyHandler::GetInstance()->AddToModule( wxT( "kicad" ), &py_kicad_init );
|
|
PyHandler::GetInstance()->AddToModule( wxT( "common" ), &py_common_init );
|
|
#endif
|
|
|
|
return TRUE;
|
|
}
|