2011-10-28 13:43:37 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
|
|
|
* Copyright (C) 2008-2011 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
* Copyright (C) 2004-2011 KiCad Developers, see change_log.txt for contributors.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
/**
|
|
|
|
* @file eeschema.cpp
|
2012-09-28 17:47:41 +00:00
|
|
|
* @brief the main file
|
2011-09-30 18:15:37 +00:00
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <appl_wxstruct.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <confirm.h>
|
|
|
|
#include <gestfich.h>
|
|
|
|
#include <eda_dde.h>
|
|
|
|
#include <wxEeschemaStruct.h>
|
2012-04-12 21:31:31 +00:00
|
|
|
#include <eda_text.h>
|
2008-02-27 19:38:16 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <general.h>
|
2013-05-19 19:35:49 +00:00
|
|
|
#include <class_libentry.h>
|
|
|
|
#include <sch_junction.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <protos.h>
|
|
|
|
#include <hotkeys.h>
|
|
|
|
#include <dialogs/dialog_color_config.h>
|
|
|
|
#include <transform.h>
|
2012-02-16 20:03:33 +00:00
|
|
|
#include <wildcards_and_files_ext.h>
|
2010-10-20 20:24:26 +00:00
|
|
|
|
2009-02-04 15:25:03 +00:00
|
|
|
#include <wx/snglinst.h>
|
|
|
|
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
// Global variables
|
2012-09-28 17:47:41 +00:00
|
|
|
wxSize g_RepeatStep;
|
|
|
|
int g_RepeatDeltaLabel;
|
|
|
|
int g_DefaultBusWidth;
|
|
|
|
SCH_SHEET* g_RootSheet = NULL;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
TRANSFORM DefaultTransform = TRANSFORM( 1, 0, 0, -1 );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-08-30 08:15:05 +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)
|
2011-09-06 14:09:40 +00:00
|
|
|
IMPLEMENT_APP( EDA_APP )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-02-21 18:38:16 +00:00
|
|
|
/* MacOSX: Needed for file association
|
2010-01-16 19:42:58 +00:00
|
|
|
* http://wiki.wxwidgets.org/WxMac-specific_topics
|
|
|
|
*/
|
2011-09-06 14:09:40 +00:00
|
|
|
void EDA_APP::MacOpenFile( const wxString &fileName )
|
2010-04-06 14:09:52 +00:00
|
|
|
{
|
2010-12-08 20:12:46 +00:00
|
|
|
wxFileName filename = fileName;
|
|
|
|
SCH_EDIT_FRAME* frame = ((SCH_EDIT_FRAME*) GetTopWindow());
|
2010-02-21 20:23:16 +00:00
|
|
|
|
2010-08-03 13:19:55 +00:00
|
|
|
if( !frame )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( !filename.FileExists() )
|
2010-02-21 20:23:16 +00:00
|
|
|
return;
|
|
|
|
|
2010-01-16 19:42:58 +00:00
|
|
|
frame->LoadOneEEProject( fileName, false );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-06 14:09:40 +00:00
|
|
|
bool EDA_APP::OnInit()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2010-12-08 20:12:46 +00:00
|
|
|
wxFileName filename;
|
|
|
|
SCH_EDIT_FRAME* frame = NULL;
|
2013-01-04 12:06:50 +00:00
|
|
|
bool fileReady = false;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2012-05-10 06:25:27 +00:00
|
|
|
InitEDA_Appl( wxT( "Eeschema" ), APP_EESCHEMA_T );
|
2007-08-30 08:15:05 +00:00
|
|
|
|
2013-01-04 12:06:50 +00:00
|
|
|
if( argc > 1 )
|
|
|
|
filename = argv[1];
|
|
|
|
|
|
|
|
if( filename.IsOk() )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2013-01-04 12:06:50 +00:00
|
|
|
if( filename.GetExt() != SchematicFileExtension )
|
|
|
|
filename.SetExt( SchematicFileExtension );
|
|
|
|
|
|
|
|
if( !wxGetApp().LockFile( filename.GetFullPath() ) )
|
|
|
|
{
|
|
|
|
DisplayError( NULL, _( "This file is already open." ) );
|
2007-08-30 08:15:05 +00:00
|
|
|
return false;
|
2013-01-04 12:06:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fileReady = true;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2013-01-04 12:06:50 +00:00
|
|
|
if( m_Checker && m_Checker->IsAnotherRunning() )
|
2013-05-13 17:30:27 +00:00
|
|
|
{
|
|
|
|
if( !IsOK( NULL, _( "Eeschema is already running, Continue?" ) ) )
|
|
|
|
return false;
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2012-09-28 17:47:41 +00:00
|
|
|
// Give a default colour for all layers
|
2013-05-19 19:35:49 +00:00
|
|
|
// (actual color will be initialized by config)
|
2013-04-06 05:01:48 +00:00
|
|
|
for( int ii = 0; ii < NB_SCH_LAYERS; ii++ )
|
2012-09-28 17:47:41 +00:00
|
|
|
SetLayerColor( DARKGRAY, ii );
|
2009-07-03 07:32:48 +00:00
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
// read current setup and reopen last directory if no filename to open in
|
|
|
|
// command line
|
2009-07-03 07:32:48 +00:00
|
|
|
bool reopenLastUsedDirectory = argc == 1;
|
2009-11-03 13:26:31 +00:00
|
|
|
GetSettings( reopenLastUsedDirectory );
|
2009-07-03 07:32:48 +00:00
|
|
|
|
2010-08-28 18:02:24 +00:00
|
|
|
/* Must be called before creating the main frame in order to
|
|
|
|
* display the real hotkeys in menus or tool tips */
|
|
|
|
ReadHotkeyConfig( wxT("SchematicFrame"), s_Eeschema_Hokeys_Descr );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-08-30 08:15:05 +00:00
|
|
|
// Create main frame (schematic frame) :
|
2011-09-30 18:15:37 +00:00
|
|
|
frame = new SCH_EDIT_FRAME( NULL, wxT( "Eeschema" ), wxPoint( 0, 0 ), wxSize( 600, 400 ) );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-12-08 15:27:13 +00:00
|
|
|
SetTopWindow( frame );
|
2011-06-15 18:44:24 +00:00
|
|
|
frame->Show( true );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-12-08 15:27:13 +00:00
|
|
|
if( CreateServer( frame, KICAD_SCH_PORT_SERVICE_NUMBER ) )
|
2007-08-14 19:24:48 +00:00
|
|
|
{
|
2011-09-30 18:15:37 +00:00
|
|
|
// RemoteCommand is in controle.cpp and is called when Pcbnew sends Eeschema a command.
|
2007-08-14 19:24:48 +00:00
|
|
|
SetupServerFunction( RemoteCommand );
|
|
|
|
}
|
2007-08-30 08:15:05 +00:00
|
|
|
|
2011-06-15 18:44:24 +00:00
|
|
|
frame->Zoom_Automatique( true );
|
2007-08-30 08:15:05 +00:00
|
|
|
|
2013-07-03 07:27:52 +00:00
|
|
|
// Load file specified in the command line:
|
2013-01-04 12:06:50 +00:00
|
|
|
if( fileReady )
|
2007-08-30 08:15:05 +00:00
|
|
|
{
|
2013-07-03 07:27:52 +00:00
|
|
|
if( !filename.GetPath().IsEmpty() )
|
|
|
|
// wxSetWorkingDirectory does not like empty paths
|
|
|
|
wxSetWorkingDirectory( filename.GetPath() );
|
2010-04-06 14:09:52 +00:00
|
|
|
|
2011-04-17 17:11:53 +00:00
|
|
|
if( frame->LoadOneEEProject( filename.GetFullPath(), false ) )
|
2011-12-22 13:28:11 +00:00
|
|
|
frame->GetCanvas()->Refresh( true );
|
2007-08-30 08:15:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-05 20:49:15 +00:00
|
|
|
// Read a default config file if no file to load.
|
2011-06-15 18:44:24 +00:00
|
|
|
frame->LoadProjectFile( wxEmptyString, true );
|
2011-12-22 13:28:11 +00:00
|
|
|
frame->GetCanvas()->Refresh( true );
|
2007-08-30 08:15:05 +00:00
|
|
|
}
|
|
|
|
|
2011-06-15 18:44:24 +00:00
|
|
|
return true;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|