Commit 2fbe1447 authored by dickelbeck's avatar dickelbeck

beautify

parent 0104e614
/*************************************************************/ /*************************************************************/
/** prjconfig.cpp : load and save configuration (file *.pro) */ /** prjconfig.cpp : load and save configuration (file *.pro) */
/*************************************************************/ /*************************************************************/
#ifdef KICAD_PYTHON #ifdef KICAD_PYTHON
#include <pyhandler.h> #include <pyhandler.h>
...@@ -20,25 +20,26 @@ ...@@ -20,25 +20,26 @@
void WinEDA_MainFrame::Load_Prj_Config() void WinEDA_MainFrame::Load_Prj_Config()
/*******************************************/ /*******************************************/
{ {
if( !wxFileExists( m_PrjFileName ) )
{
wxString msg = _( "Project File <" ) + m_PrjFileName + _( "> not found" );
DisplayError( this, msg );
return;
}
wxSetWorkingDirectory( wxPathOnly( m_PrjFileName ) );
SetTitle( g_Main_Title + wxT( " " ) + GetBuildVersion() + wxT( " " ) + m_PrjFileName );
ReCreateMenuBar();
m_LeftWin->ReCreateTreePrj();
wxString msg = _( "\nWorking dir: " ) + wxGetCwd();
msg << _( "\nProject: " ) << m_PrjFileName << wxT( "\n" );
PrintMsg( msg );
if ( ! wxFileExists(m_PrjFileName) ) #ifdef KICAD_PYTHON
{ PyHandler::GetInstance()->TriggerEvent( wxT( "kicad::LoadProject" ),
wxString msg = _("Project File <") + m_PrjFileName + _("> not found"); PyHandler::Convert( m_PrjFileName ) );
DisplayError(this, msg); #endif
return;
}
wxSetWorkingDirectory(wxPathOnly(m_PrjFileName) );
SetTitle(g_Main_Title + wxT(" ") + GetBuildVersion() + wxT(" ") + m_PrjFileName);
ReCreateMenuBar();
m_LeftWin->ReCreateTreePrj();
wxString msg = _("\nWorking dir: ") + wxGetCwd();
msg << _("\nProject: ") << m_PrjFileName << wxT("\n");
PrintMsg(msg);
#ifdef KICAD_PYTHON
PyHandler::GetInstance()->TriggerEvent( wxT("kicad::LoadProject"), PyHandler::Convert(m_PrjFileName) );
#endif
} }
...@@ -46,27 +47,31 @@ void WinEDA_MainFrame::Load_Prj_Config() ...@@ -46,27 +47,31 @@ void WinEDA_MainFrame::Load_Prj_Config()
void WinEDA_MainFrame::Save_Prj_Config() void WinEDA_MainFrame::Save_Prj_Config()
/*********************************************/ /*********************************************/
{ {
wxString FullFileName; wxString FullFileName;
wxString mask( wxT("*"));
wxString mask( wxT( "*" ) );
g_Prj_Config_Filename_ext = wxT(".pro");
mask += g_Prj_Config_Filename_ext; g_Prj_Config_Filename_ext = wxT( ".pro" );
FullFileName = m_PrjFileName; mask += g_Prj_Config_Filename_ext;
ChangeFileNameExt( FullFileName, g_Prj_Config_Filename_ext); FullFileName = m_PrjFileName;
ChangeFileNameExt( FullFileName, g_Prj_Config_Filename_ext );
FullFileName = EDA_FileSelector(_("Save project file"),
wxGetCwd(), /* Chemin par defaut */ FullFileName = EDA_FileSelector( _( "Save project file" ),
FullFileName, /* nom fichier par defaut */ wxGetCwd(), /* Chemin par defaut */
g_Prj_Config_Filename_ext, /* extension par defaut */ FullFileName, /* nom fichier par defaut */
mask, /* Masque d'affichage */ g_Prj_Config_Filename_ext, /* extension par defaut */
this, mask, /* Masque d'affichage */
wxFD_SAVE, this,
TRUE wxFD_SAVE,
); TRUE
if ( FullFileName.IsEmpty() ) return; );
/* ecriture de la configuration */ if( FullFileName.IsEmpty() )
g_EDA_Appl->WriteProjectConfig(FullFileName, wxT("/general"), CfgParamList); return;
/* ecriture de la configuration */
g_EDA_Appl->WriteProjectConfig( FullFileName, wxT( "/general" ), CfgParamList );
} }
// vim: set tabstop=4 : noexpandtab : // vim: set tabstop=4 : noexpandtab :
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment