2011-09-24 18:33:28 +00:00
|
|
|
/**
|
|
|
|
* @file gerbview.cpp
|
|
|
|
* @brief GERBVIEW main file.
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "appl_wxstruct.h"
|
|
|
|
#include "class_drawpanel.h"
|
|
|
|
#include "confirm.h"
|
|
|
|
#include "gestfich.h"
|
2011-09-23 13:57:12 +00:00
|
|
|
#include "gr_basic.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
#include "gerbview.h"
|
2010-12-28 22:38:59 +00:00
|
|
|
#include "gerbview_id.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
#include "pcbplot.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "zones.h"
|
2009-11-09 15:55:18 +00:00
|
|
|
#include "class_board_design_settings.h"
|
2010-01-29 20:36:12 +00:00
|
|
|
#include "colors_selection.h"
|
2010-08-28 18:02:24 +00:00
|
|
|
#include "hotkeys.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
|
2010-01-05 08:48:49 +00:00
|
|
|
#include "build_version.h"
|
|
|
|
|
2009-02-04 15:25:03 +00:00
|
|
|
#include <wx/file.h>
|
|
|
|
#include <wx/snglinst.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2010-01-29 20:36:12 +00:00
|
|
|
// Colors for layers and items
|
|
|
|
COLORS_DESIGN_SETTINGS g_ColorsSettings;
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
int g_Default_GERBER_Format;
|
|
|
|
int g_DisplayPolygonsModeSketch;
|
|
|
|
|
2010-10-16 14:51:22 +00:00
|
|
|
GERBER_IMAGE* g_GERBER_List[32];
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-11-22 20:55:05 +00:00
|
|
|
// List of page sizes
|
|
|
|
Ki_PageDescr* g_GerberPageSizeList[] =
|
|
|
|
{
|
|
|
|
&g_Sheet_GERBER, // Full size page selection, and do not show page limits
|
|
|
|
&g_Sheet_GERBER, // Full size page selection, and show page limits
|
|
|
|
&g_Sheet_A4, &g_Sheet_A3, &g_Sheet_A2,
|
|
|
|
&g_Sheet_A, &g_Sheet_B, &g_Sheet_C,
|
|
|
|
NULL // End of list
|
|
|
|
};
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-09-06 14:09:40 +00:00
|
|
|
IMPLEMENT_APP( EDA_APP )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2010-01-31 20:01:46 +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-05-17 20:35:46 +00:00
|
|
|
{
|
|
|
|
wxFileName filename = fileName;
|
2011-03-12 09:50:21 +00:00
|
|
|
GERBVIEW_FRAME * frame = ((GERBVIEW_FRAME*)GetTopWindow());
|
2010-02-21 20:23:16 +00:00
|
|
|
|
2010-05-17 20:35:46 +00:00
|
|
|
if( !filename.FileExists() )
|
2010-02-21 20:23:16 +00:00
|
|
|
return;
|
|
|
|
|
2010-12-15 20:15:24 +00:00
|
|
|
frame->LoadGerberFiles( fileName );
|
2010-01-16 19:42:58 +00:00
|
|
|
}
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2011-09-06 14:09:40 +00:00
|
|
|
bool EDA_APP::OnInit()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2009-11-09 14:00:22 +00:00
|
|
|
wxFileName fn;
|
2011-03-12 09:50:21 +00:00
|
|
|
GERBVIEW_FRAME* frame = NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-09-06 14:09:40 +00:00
|
|
|
InitEDA_Appl( wxT( "GerbView" ), APP_GERBVIEW_T );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2010-10-09 11:03:03 +00:00
|
|
|
if( m_Checker && m_Checker->IsAnotherRunning() )
|
|
|
|
{
|
|
|
|
if( !IsOK( NULL, _( "GerbView is already running. Continue?" ) ) )
|
|
|
|
return false;
|
|
|
|
}
|
2011-09-06 14:09:40 +00:00
|
|
|
|
2009-11-09 14:00:22 +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-09 14:00:22 +00:00
|
|
|
GetSettings( reopenLastUsedDirectory );
|
2009-07-03 07:32:48 +00:00
|
|
|
|
2008-02-19 07:06:41 +00:00
|
|
|
g_DrawBgColor = BLACK;
|
2007-06-05 12:10:51 +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("GerberFrame"), s_Gerbview_Hokeys_Descr );
|
|
|
|
|
2011-09-06 14:09:40 +00:00
|
|
|
frame = new GERBVIEW_FRAME( NULL, wxT( "GerbView" ), wxPoint( 0, 0 ), wxSize( 600, 400 ) );
|
2008-02-19 07:06:41 +00:00
|
|
|
|
2008-10-01 17:34:55 +00:00
|
|
|
/* Gerbview mainframe title */
|
2009-04-05 20:49:15 +00:00
|
|
|
frame->SetTitle( GetTitle() + wxT( " " ) + GetBuildVersion() );
|
2008-02-19 07:06:41 +00:00
|
|
|
|
2009-09-19 16:15:40 +00:00
|
|
|
// Initialize some display options
|
2011-09-23 13:57:12 +00:00
|
|
|
DisplayOpt.DisplayPadIsol = false; // Pad clearance has no meaning here
|
2011-09-24 18:33:28 +00:00
|
|
|
|
|
|
|
// Track and via clearance has no meaning here.
|
|
|
|
DisplayOpt.ShowTrackClearanceMode = DO_NOT_SHOW_CLEARANCE;
|
2009-11-09 14:00:22 +00:00
|
|
|
|
|
|
|
SetTopWindow( frame ); // Set GerbView mainframe on top
|
2011-03-01 18:45:21 +00:00
|
|
|
frame->Show( true ); // Show GerbView mainframe
|
|
|
|
frame->Zoom_Automatique( true ); // Zoom fit in frame
|
|
|
|
frame->GetScreen()->m_FirstRedraw = false;
|
2008-02-19 07:06:41 +00:00
|
|
|
|
2011-04-02 16:14:07 +00:00
|
|
|
|
2009-07-20 17:30:11 +00:00
|
|
|
if( argc <= 1 )
|
2009-04-05 20:49:15 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
fn = argv[1];
|
|
|
|
|
|
|
|
if( fn.IsOk() )
|
2008-02-19 07:06:41 +00:00
|
|
|
{
|
2009-04-05 20:49:15 +00:00
|
|
|
if( fn.DirExists() )
|
|
|
|
wxSetWorkingDirectory( fn.GetPath() );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
// Load all files specified on the command line.
|
2011-03-14 21:19:13 +00:00
|
|
|
int jj = 0;
|
2011-09-06 14:09:40 +00:00
|
|
|
|
2009-11-21 20:44:19 +00:00
|
|
|
for( int ii = 1; ii < argc && ii <= LAYER_COUNT; ++ii )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2009-11-21 20:44:19 +00:00
|
|
|
fn = wxFileName( argv[ii] );
|
2008-02-19 07:06:41 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
if( fn.FileExists() )
|
2008-02-19 07:06:41 +00:00
|
|
|
{
|
2011-03-14 21:19:13 +00:00
|
|
|
frame->setActiveLayer( jj++ );
|
2010-12-15 20:15:24 +00:00
|
|
|
frame->LoadGerberFiles( fn.GetFullPath() );
|
2008-02-19 07:06:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
return true;
|
2008-02-19 07:06:41 +00:00
|
|
|
}
|