2007-08-30 08:15:05 +00:00
|
|
|
/***********************************/
|
|
|
|
/* eeschema.cpp - module principal */
|
|
|
|
/***********************************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "appl_wxstruct.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
#include "common.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "class_drawpanel.h"
|
|
|
|
#include "confirm.h"
|
|
|
|
#include "gestfich.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
#include "bitmaps.h"
|
2007-08-14 19:24:48 +00:00
|
|
|
#include "eda_dde.h"
|
2010-01-16 22:32:26 +00:00
|
|
|
#include "id.h"
|
2010-11-10 15:30:12 +00:00
|
|
|
#include "class_sch_screen.h"
|
|
|
|
#include "wxEeschemaStruct.h"
|
2008-02-27 19:38:16 +00:00
|
|
|
|
2009-09-25 18:49:04 +00:00
|
|
|
#include "general.h"
|
2008-04-14 19:22:48 +00:00
|
|
|
#include "protos.h"
|
2010-08-28 18:02:24 +00:00
|
|
|
#include "hotkeys.h"
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
#include "transform.h"
|
|
|
|
|
2009-02-04 15:25:03 +00:00
|
|
|
#include <wx/snglinst.h>
|
|
|
|
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
// Global variables
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2011-01-12 21:47:54 +00:00
|
|
|
bool g_OptNetListUseNames; /* TRUE to use names rather than net
|
2009-11-03 13:26:31 +00:00
|
|
|
* The numbers (PSPICE netlist only) */
|
2009-04-05 20:49:15 +00:00
|
|
|
wxSize g_RepeatStep;
|
|
|
|
int g_RepeatDeltaLabel;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
SCH_ITEM* g_ItemToUndoCopy; /* copy of last modified schematic item
|
|
|
|
* before it is modified (used for undo
|
|
|
|
* managing to restore old values ) */
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
bool g_HVLines = true; // Bool: force H or V
|
|
|
|
// directions (Wires, Bus ..)
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
struct EESchemaVariables g_EESchemaVar;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
int g_DefaultTextLabelSize = DEFAULT_SIZE_TEXT;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
HPGL_Pen_Descr_Struct g_HPGL_Pen_Descr;
|
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
SCH_SHEET* g_RootSheet = NULL;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
wxString g_NetCmpExtBuffer( wxT( "cmp" ) );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-09-04 18:57:37 +00:00
|
|
|
const wxString SymbolFileExtension( wxT( "sym" ) );
|
2009-04-05 20:49:15 +00:00
|
|
|
const wxString CompLibFileExtension( wxT( "lib" ) );
|
|
|
|
|
2009-09-04 18:57:37 +00:00
|
|
|
const wxString SymbolFileWildcard( wxT( "Kicad drawing symbol file (*.sym)|*.sym" ) );
|
2009-05-21 17:42:42 +00:00
|
|
|
const wxString CompLibFileWildcard( wxT( "Kicad component library file (*.lib)|*.lib" ) );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
// command line to call the simulator (gnucap, spice..)
|
|
|
|
wxString g_SimulatorCommandLine;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
// command line to call the simulator net lister (gnucap, spice..)
|
|
|
|
wxString g_NetListerCommandLine;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
LayerStruct g_LayerDescr; /* layer colors. */
|
2009-06-02 07:26:49 +00:00
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
bool g_EditPinByPinIsOn = false; /* true to do not synchronize pins
|
|
|
|
* edition when they are at the
|
|
|
|
* same location */
|
|
|
|
|
|
|
|
int g_DrawDefaultLineThickness = 6; /* Default line thickness in
|
|
|
|
* EESCHEMA units used to
|
|
|
|
* draw/plot items having a
|
|
|
|
* default thickness line value
|
|
|
|
* (i.e. = 0 ). 0 = single pixel
|
|
|
|
* line width */
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
// Color to draw selected items
|
|
|
|
int g_ItemSelectetColor = BROWN;
|
2009-11-03 13:26:31 +00:00
|
|
|
|
|
|
|
// Color to draw items flagged invisible, in libedit (they are insisible
|
|
|
|
// in eeschema
|
2009-04-05 20:49:15 +00:00
|
|
|
int g_InvisibleItemColor = DARKGRAY;
|
|
|
|
|
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)
|
2007-08-30 08:15:05 +00:00
|
|
|
IMPLEMENT_APP( WinEDA_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
|
|
|
|
*/
|
2010-04-06 14:09:52 +00:00
|
|
|
void WinEDA_App::MacOpenFile( const wxString &fileName )
|
|
|
|
{
|
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 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
bool WinEDA_App::OnInit()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2010-01-18 19:33:45 +00:00
|
|
|
/* WXMAC application specific */
|
2010-01-16 22:32:26 +00:00
|
|
|
#ifdef __WXMAC__
|
2010-01-18 19:33:45 +00:00
|
|
|
// wxApp::SetExitOnFrameDelete(false);
|
2010-09-03 17:39:57 +00:00
|
|
|
wxApp::s_macAboutMenuItemId = ID_KICAD_ABOUT;
|
|
|
|
wxApp::s_macPreferencesMenuItemId = ID_OPTIONS_SETUP;
|
2010-01-16 22:32:26 +00:00
|
|
|
#endif /* __WXMAC__ */
|
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
wxFileName filename;
|
|
|
|
SCH_EDIT_FRAME* frame = NULL;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-04-12 14:39:54 +00:00
|
|
|
InitEDA_Appl( wxT( "EESchema" ), APP_TYPE_EESCHEMA );
|
2007-08-30 08:15:05 +00:00
|
|
|
|
|
|
|
if( m_Checker && m_Checker->IsAnotherRunning() )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-30 08:15:05 +00:00
|
|
|
if( !IsOK( NULL, _( "Eeschema is already running, Continue?" ) ) )
|
|
|
|
return false;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-08-30 08:15:05 +00:00
|
|
|
if( argc > 1 )
|
2010-01-18 19:33:45 +00:00
|
|
|
filename = argv[1];
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-08-30 08:15:05 +00:00
|
|
|
/* init EESCHEMA */
|
|
|
|
SeedLayers();
|
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) :
|
2010-12-08 20:12:46 +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 );
|
|
|
|
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
|
|
|
{
|
|
|
|
// RemoteCommand is in controle.cpp and is called when PCBNEW
|
|
|
|
// sends EESCHEMA a command
|
|
|
|
SetupServerFunction( RemoteCommand );
|
|
|
|
}
|
2007-08-30 08:15:05 +00:00
|
|
|
|
2008-12-08 15:27:13 +00:00
|
|
|
frame->Zoom_Automatique( TRUE );
|
2007-08-30 08:15:05 +00:00
|
|
|
|
|
|
|
/* Load file specified in the command line. */
|
2010-01-18 19:33:45 +00:00
|
|
|
if( filename.IsOk() )
|
2007-08-30 08:15:05 +00:00
|
|
|
{
|
2010-04-06 14:09:52 +00:00
|
|
|
wxLogDebug( wxT( "Loading schematic file " ) + filename.GetFullPath() );
|
|
|
|
|
2010-01-18 19:33:45 +00:00
|
|
|
if( filename.GetExt() != SchematicFileExtension )
|
|
|
|
filename.SetExt( SchematicFileExtension );
|
|
|
|
wxSetWorkingDirectory( filename.GetPath() );
|
2010-04-06 14:09:52 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
if( frame->DrawPanel
|
2010-05-17 20:35:46 +00:00
|
|
|
&& frame->LoadOneEEProject( filename.GetFullPath(), false ) )
|
2009-04-05 20:49:15 +00:00
|
|
|
frame->DrawPanel->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.
|
2009-04-29 17:09:00 +00:00
|
|
|
frame->LoadProjectFile( wxEmptyString, TRUE );
|
2008-12-08 15:27:13 +00:00
|
|
|
if( frame->DrawPanel )
|
|
|
|
frame->DrawPanel->Refresh( TRUE );
|
2007-08-30 08:15:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|