kicad/eeschema/eeschema.cpp

105 lines
3.0 KiB
C++
Raw Normal View History

/***********************************/
/* eeschema.cpp - module principal */
/***********************************/
2007-05-06 16:03:28 +00:00
#ifdef __GNUG__
#pragma implementation
#endif
#define eda_global
#define MAIN
#include "fctsys.h"
#include <wx/image.h>
#include "common.h"
#include "program.h"
#include "libcmp.h"
#include "general.h"
#include "netlist.h"
#include "worksheet.h"
#include "trigo.h"
#include "bitmaps.h"
#include "eda_dde.h"
#include "protos.h"
2007-05-06 16:03:28 +00:00
// Global variables
wxString g_Main_Title( wxT( "EESchema" ) );
2007-05-06 16:03:28 +00:00
/************************************/
/* Called to initialize the program */
/************************************/
2007-05-06 16:03:28 +00:00
// Create a new application object: this macro will allow wxWindows to create
// the application object during program execution (it's better than using a
// static object for many reasons) and also declares the accessor function
// wxGetApp() which will return the reference of the right type (i.e. MyApp and
// not wxApp)
IMPLEMENT_APP( WinEDA_App )
2007-05-06 16:03:28 +00:00
2007-09-01 12:00:30 +00:00
bool WinEDA_App::OnInit()
2007-05-06 16:03:28 +00:00
{
wxString FFileName;
2007-05-06 16:03:28 +00:00
g_EDA_Appl = this;
2007-05-06 16:03:28 +00:00
g_DebugLevel = 0; // Debug level */
2007-05-06 16:03:28 +00:00
InitEDA_Appl( wxT( "eeschema" ) );
if( m_Checker && m_Checker->IsAnotherRunning() )
2007-05-06 16:03:28 +00:00
{
if( !IsOK( NULL, _( "Eeschema is already running, Continue?" ) ) )
return false;
2007-05-06 16:03:28 +00:00
}
if( argc > 1 )
FFileName = argv[1];
2007-05-06 16:03:28 +00:00
/* init EESCHEMA */
GetSettings(); // read current setup
SeedLayers();
Read_Hotkey_Config( m_SchematicFrame, false ); /* Must be called before creating the main frame
* in order to display the real hotkeys in menus
* or tool tips */
2007-05-06 16:03:28 +00:00
// Create main frame (schematic frame) :
m_SchematicFrame = new WinEDA_SchematicFrame( NULL, this,
wxT( "EESchema" ),
wxPoint( 0, 0 ), wxSize( 600, 400 ) );
SetTopWindow( m_SchematicFrame );
m_SchematicFrame->Show( TRUE );
2007-05-06 16:03:28 +00:00
if( CreateServer( m_SchematicFrame, KICAD_SCH_PORT_SERVICE_NUMBER ) )
{
// RemoteCommand is in controle.cpp and is called when PCBNEW
// sends EESCHEMA a command
SetupServerFunction( RemoteCommand );
}
ActiveScreen = m_SchematicFrame->GetScreen();
m_SchematicFrame->Zoom_Automatique( TRUE );
/* Load file specified in the command line. */
if( !FFileName.IsEmpty() )
{
ChangeFileNameExt( FFileName, g_SchExtBuffer );
wxSetWorkingDirectory( wxPathOnly( FFileName ) );
if( m_SchematicFrame->DrawPanel )
if( m_SchematicFrame->LoadOneEEProject( FFileName, FALSE ) <= 0 )
m_SchematicFrame->DrawPanel->Refresh( TRUE ); // File not found or error
}
else
{
Read_Config( wxEmptyString, TRUE ); // Read a default config file if no file to load
if( m_SchematicFrame->DrawPanel )
m_SchematicFrame->DrawPanel->Refresh( TRUE );
}
return TRUE;
2007-05-06 16:03:28 +00:00
}