kicad/gerbview/gerbview.cpp

117 lines
3.2 KiB
C++
Raw Normal View History

2008-02-19 07:06:41 +00:00
/************************************************/
/* GERBVIEW main file */
/************************************************/
#include "fctsys.h"
#include "common.h"
#include "appl_wxstruct.h"
#include "class_drawpanel.h"
#include "confirm.h"
#include "gestfich.h"
#include "gerbview.h"
#include "wxGerberFrame.h"
#include "pcbplot.h"
#include "bitmaps.h"
#include "protos.h"
#include "zones.h"
#include <wx/file.h>
#include <wx/snglinst.h>
wxString g_PhotoFilenameExt;
wxString g_DrillFilenameExt;
wxString g_PenFilenameExt;
int g_DCodesColor;
int g_Default_GERBER_Format;
int g_Plot_Spot_Mini; /* Diametre mini de l'ouverture pour */
int g_DisplayPolygonsModeSketch;
GERBER* g_GERBER_List[32];
2008-02-19 07:06:41 +00:00
IMPLEMENT_APP( WinEDA_App )
bool WinEDA_App::OnInit()
{
wxFileName fn;
WinEDA_GerberFrame* frame = NULL;
2009-04-12 14:39:54 +00:00
InitEDA_Appl( wxT( "GerbView" ), APP_TYPE_GERBVIEW );
ScreenPcb = new PCB_SCREEN();
ScreenPcb->m_CurrentSheetDesc = &g_Sheet_GERBER;
2008-02-19 07:06:41 +00:00
ActiveScreen = ScreenPcb;
// read current setup and reopen last directory if no filename to open in command line
bool reopenLastUsedDirectory = argc == 1;
GetSettings(reopenLastUsedDirectory);
extern PARAM_CFG_BASE* ParamCfgList[];
wxGetApp().ReadCurrentSetupValues( ParamCfgList );
2008-02-19 07:06:41 +00:00
if( m_Checker && m_Checker->IsAnotherRunning() )
{
2008-02-19 07:06:41 +00:00
if( !IsOK( NULL, _( "GerbView is already running. Continue?" ) ) )
return false;
}
2008-02-19 07:06:41 +00:00
g_DrawBgColor = BLACK;
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 */
frame = new WinEDA_GerberFrame( NULL, wxT( "GerbView" ),
wxPoint( 0, 0 ),
wxSize( 600, 400 ) );
2008-02-19 07:06:41 +00:00
/* Gerbview mainframe title */
frame->SetTitle( GetTitle() + wxT( " " ) + GetBuildVersion() );
frame->SetBoard( new BOARD( NULL, frame ) );
2008-02-19 07:06:41 +00:00
// Initialize some display options
DisplayOpt.DisplayPadIsol = false; // Pad clearance has no meaning here
DisplayOpt.ShowTrackClearanceMode = 0; // tracks and vias clearance has no meaning here
SetTopWindow( frame ); // Set GerbView mainframe on top
frame->Show( TRUE ); // Show GerbView mainframe
frame->Zoom_Automatique( TRUE ); // Zoomfit drawing in frame
2008-02-19 07:06:41 +00:00
Read_Config();
if( argc <= 1 )
return true;
fn = argv[1];
fn.SetExt( g_PhotoFilenameExt );
if( fn.IsOk() )
2008-02-19 07:06:41 +00:00
{
wxClientDC dc( frame->DrawPanel );
frame->DrawPanel->PrepareGraphicContext( &dc );
if( fn.DirExists() )
wxSetWorkingDirectory( fn.GetPath() );
// Load all files specified on the command line.
for( int i = 1; i < argc; ++i )
{
fn = wxFileName( argv[i] );
fn.SetExt( g_PhotoFilenameExt );
2008-02-19 07:06:41 +00:00
if( fn.FileExists() )
2008-02-19 07:06:41 +00:00
{
( (PCB_SCREEN*) frame->GetScreen() )->m_Active_Layer = i - 1;
frame->LoadOneGerberFile( fn.GetFullPath(), &dc, FALSE );
2008-02-19 07:06:41 +00:00
}
}
}
return true;
2008-02-19 07:06:41 +00:00
}