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 "program.h"
|
|
|
|
#include "general.h"
|
|
|
|
#include "bitmaps.h"
|
2007-08-14 19:24:48 +00:00
|
|
|
#include "eda_dde.h"
|
2008-02-27 19:38:16 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
#include "libcmp.h"
|
2008-04-14 19:22:48 +00:00
|
|
|
#include "protos.h"
|
2007-08-14 19:24:48 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
LibraryStruct* g_LibraryList; // All part libs are saved here.
|
|
|
|
|
|
|
|
int g_OptNetListUseNames; /* TRUE pour utiliser les noms de net plutot que
|
|
|
|
* les numeros (netlist PSPICE seulement) */
|
|
|
|
SCH_ITEM* g_ItemToRepeat; /* pointeur sur la derniere structure
|
|
|
|
* dessinee pouvant etre dupliquee par la commande
|
|
|
|
* Repeat ( NULL si aucune struct existe ) */
|
|
|
|
wxSize g_RepeatStep;
|
|
|
|
int g_RepeatDeltaLabel;
|
|
|
|
|
|
|
|
SCH_ITEM* g_ItemToUndoCopy; /* copy of last modified schematic item
|
|
|
|
* before it is modified (used for undo managing
|
|
|
|
* to restore old values ) */
|
|
|
|
|
|
|
|
bool g_LastSearchIsMarker; /* True if last seach is a marker serach
|
|
|
|
* False for a schematic item search
|
|
|
|
* Used for hotkey next search */
|
|
|
|
|
|
|
|
/* Block operation (copy, paste) */
|
|
|
|
SCH_ITEM* g_BlockSaveDataList; // List of items to paste (Created by Block Save)
|
|
|
|
|
|
|
|
// Gestion d'options
|
2009-05-01 18:06:03 +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;
|
|
|
|
|
|
|
|
/* Variables globales pour Libview */
|
|
|
|
wxString g_CurrentViewLibraryName; /* nom de la librairie en cours d'examen */
|
|
|
|
wxString g_CurrentViewComponentName; /* nom du le composant en cours d'examen */
|
|
|
|
int g_ViewConvert; /* Vue normal / convert */
|
|
|
|
int g_ViewUnit; /* part a afficher (A, B ..) */
|
|
|
|
|
|
|
|
/* Variables globales pour Schematic Edit */
|
|
|
|
int g_DefaultTextLabelSize = DEFAULT_SIZE_TEXT;
|
|
|
|
|
|
|
|
/* Variables globales pour LibEdit */
|
|
|
|
int g_LastTextSize = DEFAULT_SIZE_TEXT;
|
|
|
|
int g_LastTextOrient = TEXT_ORIENT_HORIZ;
|
|
|
|
|
|
|
|
bool g_FlDrawSpecificUnit = FALSE;
|
|
|
|
bool g_FlDrawSpecificConvert = TRUE;
|
|
|
|
|
|
|
|
HPGL_Pen_Descr_Struct g_HPGL_Pen_Descr;
|
|
|
|
|
|
|
|
//SCH_SCREEN * ScreenSch;
|
|
|
|
DrawSheetStruct* g_RootSheet = NULL;
|
|
|
|
SCH_SCREEN* g_ScreenLib = NULL;
|
|
|
|
|
|
|
|
wxString g_NetCmpExtBuffer( wxT( "cmp" ) );
|
|
|
|
wxString g_SymbolExtBuffer( wxT( "sym" ) );
|
|
|
|
|
|
|
|
const wxString CompLibFileExtension( wxT( "lib" ) );
|
|
|
|
|
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
|
|
|
|
|
|
|
wxString g_SimulatorCommandLine; // ligne de commande pour l'appel au simulateur (gnucap, spice..)
|
|
|
|
wxString g_NetListerCommandLine; // ligne de commande pour l'appel au simulateur (gnucap, spice..)
|
|
|
|
|
|
|
|
LayerStruct g_LayerDescr; /* couleurs des couches */
|
|
|
|
|
2009-06-02 07:26:49 +00:00
|
|
|
bool g_EditPinByPinIsOn = false; /* true to do not synchronize pins edition
|
|
|
|
* when they are at the same location */
|
|
|
|
|
|
|
|
int g_LibSymbolDefaultLineWidth = 0; /* default line width (in EESCHEMA units)
|
|
|
|
* used when creating a new graphic item in libedit.
|
|
|
|
* 0 = use default line thicknes
|
|
|
|
*/
|
|
|
|
int g_DrawDefaultLineThickness = 6; /* Default line (in EESCHEMA units) thickness
|
|
|
|
* 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;
|
|
|
|
// Color to draw items flagged invisible, in libedit (they are insisible in eeschema
|
|
|
|
int g_InvisibleItemColor = DARKGRAY;
|
|
|
|
|
|
|
|
/* Variables used by LibEdit */
|
|
|
|
LibEDA_BaseStruct* LibItemToRepeat = NULL; /* pointer on a graphic item than
|
|
|
|
* can be duplicated by the Ins key
|
|
|
|
* (usually the last created item */
|
|
|
|
LibraryStruct* CurrentLib = NULL; /* Current opened library */
|
|
|
|
EDA_LibComponentStruct* CurrentLibEntry = NULL; /* Current component */
|
|
|
|
LibEDA_BaseStruct* CurrentDrawItem = NULL; /* current edited item */
|
|
|
|
|
|
|
|
// Current selected alias (for components which have aliases)
|
|
|
|
wxString CurrentAliasName;
|
|
|
|
|
|
|
|
// True if the current component has a "De Morgan" representation
|
|
|
|
bool g_AsDeMorgan;
|
|
|
|
int CurrentUnit = 1;
|
|
|
|
int CurrentConvert = 1;
|
|
|
|
|
|
|
|
/* Library (name) containing the last component find by FindLibPart() */
|
|
|
|
wxString FindLibName;
|
|
|
|
|
|
|
|
int DefaultTransformMatrix[2][2] = { { 1, 0 }, { 0, -1 } };
|
|
|
|
|
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
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
bool WinEDA_App::OnInit()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-04-05 20:49:15 +00:00
|
|
|
wxFileName fn;
|
2008-12-08 15:27:13 +00:00
|
|
|
WinEDA_SchematicFrame* frame = NULL;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-08-30 08:15:05 +00:00
|
|
|
g_DebugLevel = 0; // Debug level */
|
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 )
|
2009-04-05 20:49:15 +00:00
|
|
|
fn = argv[1];
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-08-30 08:15:05 +00:00
|
|
|
/* init EESCHEMA */
|
|
|
|
SeedLayers();
|
2009-04-07 11:53:58 +00:00
|
|
|
GetSettings();
|
2008-12-08 15:27:13 +00:00
|
|
|
Read_Hotkey_Config( frame, 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
|
|
|
|
2007-08-30 08:15:05 +00:00
|
|
|
// Create main frame (schematic frame) :
|
2008-12-08 15:27:13 +00:00
|
|
|
frame = new WinEDA_SchematicFrame( 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
|
|
|
ActiveScreen = frame->GetScreen();
|
|
|
|
frame->Zoom_Automatique( TRUE );
|
2007-08-30 08:15:05 +00:00
|
|
|
|
|
|
|
/* Load file specified in the command line. */
|
2009-04-05 20:49:15 +00:00
|
|
|
if( fn.IsOk() )
|
2007-08-30 08:15:05 +00:00
|
|
|
{
|
2009-04-05 20:49:15 +00:00
|
|
|
if( fn.GetExt() != SchematicFileExtension )
|
|
|
|
fn.SetExt( SchematicFileExtension );
|
|
|
|
wxSetWorkingDirectory( fn.GetPath() );
|
|
|
|
if( frame->DrawPanel
|
|
|
|
&& frame->LoadOneEEProject( fn.GetFullPath(), false ) <= 0 )
|
|
|
|
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
|
|
|
}
|