2007-08-04 00:47:36 +00:00
|
|
|
/*************************/
|
|
|
|
/* PCBNEW: main program */
|
|
|
|
/*************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "appl_wxstruct.h"
|
|
|
|
#include "confirm.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include <wx/file.h>
|
2009-02-04 15:25:03 +00:00
|
|
|
#include <wx/snglinst.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "pcbnew.h"
|
2009-07-30 11:04:07 +00:00
|
|
|
#include "wxPcbStruct.h"
|
2008-08-06 07:46:03 +00:00
|
|
|
#include "plot_common.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "gestfich.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
#include "pcbplot.h"
|
|
|
|
#include "autorout.h"
|
|
|
|
#include "cell.h"
|
|
|
|
#include "worksheet.h"
|
2008-09-26 19:51:36 +00:00
|
|
|
#include "zones.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
#include "drag.h"
|
|
|
|
#include "eda_dde.h"
|
2010-01-29 20:36:12 +00:00
|
|
|
#include "colors_selection.h"
|
|
|
|
|
2010-01-18 19:33:45 +00:00
|
|
|
#include "id.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2010-01-05 08:48:49 +00:00
|
|
|
#include "build_version.h"
|
|
|
|
|
|
|
|
#include "protos.h"
|
|
|
|
|
2010-01-29 20:36:12 +00:00
|
|
|
// Colors for layers and items
|
|
|
|
COLORS_DESIGN_SETTINGS g_ColorsSettings;
|
|
|
|
|
2009-10-01 16:46:13 +00:00
|
|
|
bool Drc_On = true;
|
|
|
|
bool g_AutoDeleteOldTrack = true;
|
2009-04-05 20:49:15 +00:00
|
|
|
bool g_No_Via_Route;
|
|
|
|
bool g_Drag_Pistes_On;
|
|
|
|
bool g_Show_Module_Ratsnest;
|
2009-10-01 16:46:13 +00:00
|
|
|
bool g_Show_Pads_Module_in_Move = true;
|
|
|
|
bool g_Raccord_45_Auto = true;
|
2009-04-05 20:49:15 +00:00
|
|
|
bool Track_45_Only;
|
|
|
|
bool Segments_45_Only;
|
2009-10-01 16:46:13 +00:00
|
|
|
bool g_TwoSegmentTrackBuild = true;
|
2010-01-24 13:46:01 +00:00
|
|
|
bool g_HighLight_Status;
|
2009-03-28 20:02:34 +00:00
|
|
|
extern PARAM_CFG_BASE* ParamCfgList[];
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
int Angle_Rot_Module;
|
|
|
|
int ModuleSegmentWidth;
|
|
|
|
int ModuleTextWidth;
|
|
|
|
int Route_Layer_TOP;
|
|
|
|
int Route_Layer_BOTTOM;
|
|
|
|
int g_MaxLinksShowed;
|
|
|
|
int g_MagneticPadOption = capture_cursor_in_track_tool;
|
|
|
|
int g_MagneticTrackOption = capture_cursor_in_track_tool;
|
2010-01-24 13:46:01 +00:00
|
|
|
int g_HighLight_NetCode = -1;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
wxSize ModuleTextSize; /* Default footprint texts size */
|
|
|
|
wxPoint g_Offset_Module; /* Offset de trace du modul en depl */
|
|
|
|
wxString g_Current_PadName; // Last used pad name (pad num)
|
|
|
|
|
2009-04-19 15:03:48 +00:00
|
|
|
// Wildcard for footprint libraries filesnames
|
2009-05-21 17:42:42 +00:00
|
|
|
const wxString g_FootprintLibFileWildcard( wxT( "Kicad footprint library file (*.mod)|*.mod" ) );
|
|
|
|
|
2009-04-19 15:03:48 +00:00
|
|
|
/* Name of the document footprint list
|
|
|
|
* usually located in share/modules/footprints_doc
|
|
|
|
* this is of the responsability to users to create this file
|
|
|
|
* if they want to have a list of footprints
|
|
|
|
*/
|
|
|
|
wxString g_DocModulesFileName = wxT("footprints_doc/footprints.pdf");
|
|
|
|
|
2007-08-04 00:47:36 +00:00
|
|
|
IMPLEMENT_APP( WinEDA_App )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2010-01-16 19:42:58 +00:00
|
|
|
/* MacOSX: Needed for file association
|
2010-01-24 13:46:01 +00:00
|
|
|
* http://wiki.wxwidgets.org/WxMac-specific_topics
|
2010-01-16 19:42:58 +00:00
|
|
|
*/
|
|
|
|
void WinEDA_App::MacOpenFile(const wxString &fileName) {
|
|
|
|
WinEDA_PcbFrame * frame = ((WinEDA_PcbFrame*) GetTopWindow());;
|
|
|
|
frame->LoadOnePcbFile( fileName, FALSE );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/****************************/
|
2007-09-01 12:00:30 +00:00
|
|
|
bool WinEDA_App::OnInit()
|
2007-06-05 12:10:51 +00:00
|
|
|
/****************************/
|
|
|
|
{
|
2010-01-18 19:33:45 +00:00
|
|
|
/* WXMAC application specific */
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
// wxApp::SetExitOnFrameDelete(false);
|
|
|
|
// wxApp::s_macAboutMenuItemId = ID_KICAD_ABOUT;
|
|
|
|
wxApp::s_macPreferencesMenuItemId = ID_OPTIONS_SETUP;
|
|
|
|
#endif /* __WXMAC__ */
|
|
|
|
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
wxFileName fn;
|
2008-12-08 15:27:13 +00:00
|
|
|
WinEDA_PcbFrame* frame = NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-04-12 14:39:54 +00:00
|
|
|
InitEDA_Appl( wxT( "PCBnew" ), APP_TYPE_PCBNEW );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-04 00:47:36 +00:00
|
|
|
if( m_Checker && m_Checker->IsAnotherRunning() )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-04 00:47:36 +00:00
|
|
|
if( !IsOK( NULL, _( "Pcbnew is already running, Continue?" ) ) )
|
|
|
|
return false;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2008-12-05 16:03:05 +00:00
|
|
|
ScreenPcb = new PCB_SCREEN();
|
2009-07-03 07:32:48 +00:00
|
|
|
|
|
|
|
// read current setup and reopen last directory if no filename to open in command line
|
|
|
|
bool reopenLastUsedDirectory = argc == 1;
|
|
|
|
GetSettings(reopenLastUsedDirectory);
|
2007-08-04 00:47:36 +00:00
|
|
|
|
|
|
|
if( argc > 1 )
|
|
|
|
{
|
2009-04-05 20:49:15 +00:00
|
|
|
fn = argv[1];
|
|
|
|
|
|
|
|
if( fn.GetExt() != BoardFileExtension )
|
|
|
|
{
|
2010-01-14 20:20:59 +00:00
|
|
|
wxLogDebug( wxT( "PcbNew file <%s> has the wrong extension.\
|
2009-05-21 17:42:42 +00:00
|
|
|
Changing extension to .brd." ),
|
2009-10-13 09:00:46 +00:00
|
|
|
GetChars( fn.GetFullPath() ) );
|
2009-04-05 20:49:15 +00:00
|
|
|
fn.SetExt( BoardFileExtension );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( fn.IsOk() && fn.DirExists() )
|
|
|
|
wxSetWorkingDirectory( fn.GetPath() );
|
2007-08-04 00:47:36 +00:00
|
|
|
}
|
|
|
|
|
2009-03-28 20:02:34 +00:00
|
|
|
wxGetApp().ReadCurrentSetupValues( ParamCfgList );
|
2007-08-04 00:47:36 +00:00
|
|
|
g_DrawBgColor = BLACK;
|
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-08-30 08:15:05 +00:00
|
|
|
|
2007-08-04 00:47:36 +00:00
|
|
|
|
2008-12-08 15:27:13 +00:00
|
|
|
frame = new WinEDA_PcbFrame( NULL, wxT( "PcbNew" ),
|
|
|
|
wxPoint( 0, 0 ), wxSize( 600, 400 ) );
|
2009-04-05 20:49:15 +00:00
|
|
|
frame->SetTitle( GetTitle() + wxT( " " ) + GetBuildVersion() );
|
2008-12-08 15:27:13 +00:00
|
|
|
ActiveScreen = ScreenPcb;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-12-08 15:27:13 +00:00
|
|
|
SetTopWindow( frame );
|
2009-10-01 16:46:13 +00:00
|
|
|
frame->Show( true );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-12-08 15:27:13 +00:00
|
|
|
if( CreateServer( frame, KICAD_PCB_PORT_SERVICE_NUMBER ) )
|
2007-08-04 00:47:36 +00:00
|
|
|
{
|
|
|
|
SetupServerFunction( RemoteCommand );
|
|
|
|
}
|
|
|
|
|
2009-10-21 19:16:25 +00:00
|
|
|
frame->Read_Config( fn.GetFullPath() );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-10-01 16:46:13 +00:00
|
|
|
frame->Zoom_Automatique( true );
|
|
|
|
|
2007-08-04 00:47:36 +00:00
|
|
|
/* Load file specified in the command line. */
|
2009-04-05 20:49:15 +00:00
|
|
|
if( fn.IsOk() )
|
2007-08-04 00:47:36 +00:00
|
|
|
{
|
2009-04-05 20:49:15 +00:00
|
|
|
frame->LoadOnePcbFile( fn.GetFullPath(), FALSE );
|
2008-04-29 15:43:28 +00:00
|
|
|
// update the layer names in the listbox
|
2008-12-08 15:27:13 +00:00
|
|
|
frame->ReCreateLayerBox( NULL );
|
2007-08-04 00:47:36 +00:00
|
|
|
}
|
|
|
|
|
2009-10-01 16:46:13 +00:00
|
|
|
return true;
|
2007-08-04 00:47:36 +00:00
|
|
|
}
|