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-02-24 18:36:01 +00:00
|
|
|
#include "class_drawpanel.h"
|
2010-01-29 20:36:12 +00:00
|
|
|
|
2010-01-18 19:33:45 +00:00
|
|
|
#include "id.h"
|
2010-08-28 18:02:24 +00:00
|
|
|
#include "hotkeys.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;
|
2010-02-24 15:33:03 +00:00
|
|
|
int g_DrawDefaultLineThickness = 60; /* Default line thickness in PCBNEW units used to
|
2010-02-24 18:36:01 +00:00
|
|
|
* draw/plot items having a
|
|
|
|
* default thickness line value (Frame references)
|
|
|
|
* (i.e. = 0 ). 0 = single pixel line width */
|
2010-01-29 20:36:12 +00:00
|
|
|
|
2010-04-28 14:06:14 +00:00
|
|
|
bool Drc_On = true;
|
|
|
|
bool g_AutoDeleteOldTrack = true;
|
|
|
|
bool g_Drag_Pistes_On;
|
|
|
|
bool g_Show_Module_Ratsnest;
|
|
|
|
bool g_Show_Pads_Module_in_Move = true;
|
|
|
|
bool g_Raccord_45_Auto = true;
|
2010-06-16 15:01:45 +00:00
|
|
|
bool g_Alternate_Track_Posture = false;
|
2010-05-01 09:22:12 +00:00
|
|
|
bool g_Track_45_Only_Allowed = true; // True to allow horiz, vert. and 45deg only tracks
|
|
|
|
bool Segments_45_Only; // True to allow horiz, vert. and 45deg only graphic segments
|
2010-04-28 14:06:14 +00:00
|
|
|
bool g_TwoSegmentTrackBuild = true;
|
|
|
|
bool g_HighLight_Status;
|
|
|
|
|
2010-07-20 18:11:34 +00:00
|
|
|
wxSize g_ModuleTextSize; /* Default footprint texts size */
|
|
|
|
int g_ModuleSegmentWidth;
|
|
|
|
int g_ModuleTextWidth;
|
2010-04-28 14:06:14 +00:00
|
|
|
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;
|
|
|
|
int g_HighLight_NetCode = -1;
|
|
|
|
|
|
|
|
wxPoint g_Offset_Module; /* Offset de trace du modul en depl */
|
|
|
|
wxString g_Current_PadName; // Last used pad name (pad num)
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-04-19 15:03:48 +00:00
|
|
|
// Wildcard for footprint libraries filesnames
|
2010-04-28 14:06:14 +00:00
|
|
|
const wxString g_FootprintLibFileWildcard( wxT( "Kicad footprint library file (*.mod)|*.mod" ) );
|
2009-05-21 17:42:42 +00:00
|
|
|
|
2009-04-19 15:03:48 +00:00
|
|
|
/* Name of the document footprint list
|
|
|
|
* usually located in share/modules/footprints_doc
|
2010-04-28 14:06:14 +00:00
|
|
|
* this is of the responsibility to users to create this file
|
2009-04-19 15:03:48 +00:00
|
|
|
* if they want to have a list of footprints
|
|
|
|
*/
|
2010-02-24 18:36:01 +00:00
|
|
|
wxString g_DocModulesFileName = wxT( "footprints_doc/footprints.pdf" );
|
2009-04-19 15:03:48 +00:00
|
|
|
|
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
|
|
|
*/
|
2010-02-24 18:36:01 +00:00
|
|
|
void WinEDA_App::MacOpenFile( const wxString& fileName )
|
|
|
|
{
|
|
|
|
wxFileName filename = fileName;
|
|
|
|
WinEDA_PcbFrame* frame = ( (WinEDA_PcbFrame*) GetTopWindow() );
|
2010-02-24 15:33:03 +00:00
|
|
|
|
2010-02-24 18:36:01 +00:00
|
|
|
if( !filename.FileExists() )
|
2010-02-21 20:23:16 +00:00
|
|
|
return;
|
|
|
|
|
2010-01-16 19:42:58 +00:00
|
|
|
frame->LoadOnePcbFile( fileName, FALSE );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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);
|
2010-09-03 17:39:57 +00:00
|
|
|
wxApp::s_macAboutMenuItemId = ID_KICAD_ABOUT;
|
2010-02-24 18:36:01 +00:00
|
|
|
wxApp::s_macPreferencesMenuItemId = ID_OPTIONS_SETUP;
|
2010-01-18 19:33:45 +00:00
|
|
|
#endif /* __WXMAC__ */
|
|
|
|
|
|
|
|
|
2010-02-24 18:36:01 +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();
|
2010-07-27 16:49:38 +00:00
|
|
|
ActiveScreen = ScreenPcb;
|
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;
|
2010-02-24 18:36:01 +00:00
|
|
|
GetSettings( reopenLastUsedDirectory );
|
2007-08-04 00:47:36 +00:00
|
|
|
|
|
|
|
if( argc > 1 )
|
|
|
|
{
|
2009-04-05 20:49:15 +00:00
|
|
|
fn = argv[1];
|
|
|
|
|
2010-05-17 20:35:46 +00:00
|
|
|
if( fn.GetExt() != PcbFileExtension )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2010-04-23 14:46:00 +00:00
|
|
|
wxLogDebug( wxT( "PcbNew file <%s> has the wrong extension. \
|
|
|
|
Changing extension to .brd." ), GetChars( fn.GetFullPath() ) );
|
2010-05-17 20:35:46 +00:00
|
|
|
fn.SetExt( PcbFileExtension );
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( fn.IsOk() && fn.DirExists() )
|
|
|
|
wxSetWorkingDirectory( fn.GetPath() );
|
2007-08-04 00:47:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_DrawBgColor = BLACK;
|
2007-08-30 08:15:05 +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("PcbFrame"), s_Board_Editor_Hokeys_Descr );
|
2007-08-04 00:47:36 +00:00
|
|
|
|
2010-04-28 14:06:14 +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() );
|
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-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
|
|
|
{
|
2010-05-30 09:46:37 +00:00
|
|
|
/* Note the first time Pcbnew is called after creating a new project
|
|
|
|
* the board file may not exists
|
|
|
|
* So we load settings only
|
|
|
|
*/
|
|
|
|
if( fn.FileExists() )
|
|
|
|
frame->LoadOnePcbFile( fn.GetFullPath() );
|
|
|
|
else
|
|
|
|
{ // File does not exists: prepare an empty board
|
|
|
|
wxSetWorkingDirectory( fn.GetPath() );
|
|
|
|
frame->GetScreen()->m_FileName = fn.GetFullPath();
|
|
|
|
frame->GetScreen()->m_FileName.Replace( WIN_STRING_DIR_SEP, UNIX_STRING_DIR_SEP );
|
|
|
|
frame->SetTitle( frame->GetScreen()->m_FileName );
|
|
|
|
frame->SetLastProject( frame->GetScreen()->m_FileName );
|
|
|
|
frame->OnModify(); // Ready to save the new empty board
|
|
|
|
|
|
|
|
wxString msg;
|
|
|
|
msg.Printf( _( "File <%s> not existing\nThis is normal for a new project" ),
|
|
|
|
GetChars( frame->GetScreen()->m_FileName ) );
|
|
|
|
wxMessageBox( msg );
|
|
|
|
}
|
2007-08-04 00:47:36 +00:00
|
|
|
}
|
|
|
|
|
2010-04-28 14:06:14 +00:00
|
|
|
frame->LoadProjectSettings( fn.GetFullPath() );
|
2010-05-30 09:46:37 +00:00
|
|
|
// update the layer names in the listbox
|
|
|
|
frame->ReCreateLayerBox( NULL );
|
2010-04-28 14:06:14 +00:00
|
|
|
|
2010-02-24 18:36:01 +00:00
|
|
|
/* For an obscure reason the focus is lost after loading a board file
|
|
|
|
* when starting (i.e. only at this point)
|
|
|
|
* (seems due to the recreation of the layer manager after loading the file)
|
|
|
|
* give focus to main window and Drawpanel
|
|
|
|
* must be done for these 2 windows (for an obscure reason ...)
|
|
|
|
* Linux specific
|
|
|
|
* This is more a workaround than a fix.
|
|
|
|
*/
|
|
|
|
frame->SetFocus();
|
|
|
|
frame->DrawPanel->SetFocus();
|
|
|
|
|
2009-10-01 16:46:13 +00:00
|
|
|
return true;
|
2007-08-04 00:47:36 +00:00
|
|
|
}
|