kicad/gerbview/gerbview.cpp

95 lines
2.5 KiB
C++
Raw Normal View History

2008-02-19 07:06:41 +00:00
/************************************************/
/* GERBVIEW main file */
/************************************************/
#define MAIN
#define eda_global
#include "fctsys.h"
#include <wx/image.h>
#include <wx/file.h>
#include "common.h"
#include "gerbview.h"
#include "pcbplot.h"
#include "trigo.h"
#include "bitmaps.h"
#include "protos.h"
2008-02-19 07:06:41 +00:00
wxString g_Main_Title = wxT( "GerbView" );
2008-02-19 07:06:41 +00:00
IMPLEMENT_APP( WinEDA_App )
bool WinEDA_App::OnInit()
{
2008-02-19 07:06:41 +00:00
g_EDA_Appl = this;
2008-02-19 07:06:41 +00:00
InitEDA_Appl( wxT( "gerbview" ) );
2008-02-19 07:06:41 +00:00
ScreenPcb = new PCB_SCREEN( PCB_FRAME );
2008-02-19 07:06:41 +00:00
ActiveScreen = ScreenPcb;
GetSettings();
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( m_PcbFrame, false ); /* Must be called before creating the main frame
* in order to display the real hotkeys
* in menus or tool tips */
2008-02-19 07:06:41 +00:00
m_GerberFrame = new WinEDA_GerberFrame( NULL, this, wxT( "GerbView" ),
wxPoint( 0, 0 ), wxSize( 600, 400 ) );
wxString Title = g_Main_Title + wxT( " " ) + GetBuildVersion();
m_GerberFrame->SetTitle( Title );
m_GerberFrame->m_Pcb = new BOARD( NULL, m_GerberFrame );
SetTopWindow( m_GerberFrame );
m_GerberFrame->Show( TRUE );
m_GerberFrame->m_Pcb = new BOARD( NULL, m_GerberFrame );
m_GerberFrame->Zoom_Automatique( TRUE );
if( argc > 1 )
{
wxString fileName = MakeFileName( wxEmptyString, argv[1], g_PhotoFilenameExt );
2008-02-19 07:06:41 +00:00
if( !fileName.IsEmpty() )
{
wxClientDC dc( m_GerberFrame->DrawPanel );
m_GerberFrame->DrawPanel->PrepareGraphicContext( &dc );
2008-02-19 07:06:41 +00:00
wxString path = wxPathOnly( fileName );
wxSetWorkingDirectory( path );
Read_Config();
// Load all files specified on the command line.
for( int i=1; i<argc; ++i )
{
fileName = MakeFileName( wxEmptyString, argv[i], g_PhotoFilenameExt );
if( wxFileExists( fileName ) )
{
((PCB_SCREEN*)m_GerberFrame->GetScreen())->m_Active_Layer = i-1;
m_GerberFrame->LoadOneGerberFile( fileName, &dc, FALSE );
}
}
}
}
else
Read_Config();
return TRUE;
}