kicad/pcbnew/dialogs/dialog_freeroute_exchange.cpp

184 lines
5.0 KiB
C++
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 1992-2012 KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, you may find one here:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* or you may search the http://www.gnu.org website for the version 2 license,
* or you may write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
/**
* @file dialog_freeroute.cpp
* Dialog to access to FreeRoute, the web bases free router, export/import files
* to/from FreeRoute
*/
2008-03-14 18:17:51 +00:00
#include <fctsys.h>
#include <appl_wxstruct.h>
#include <confirm.h>
#include <gestfich.h>
#include <pcbnew.h>
#include <wxPcbStruct.h>
#include <macros.h>
#include <../common/dialogs/dialog_display_info_HTML_base.h>
2008-03-14 18:17:51 +00:00
#include <dialog_freeroute_exchange.h>
2008-03-14 18:17:51 +00:00
#define FREEROUTE_URL_KEY wxT( "freeroute_url" )
#define FREEROUTE_RUN_KEY wxT( "freeroute_command" )
/**********************************************************************/
void PCB_EDIT_FRAME::Access_to_External_Tool( wxCommandEvent& event )
2008-03-14 18:17:51 +00:00
/**********************************************************************/
/* Run an external tool (currently, only freeroute)
*/
{
2009-11-21 15:39:50 +00:00
DIALOG_FREEROUTE dialog( this );
2008-03-14 18:17:51 +00:00
dialog.ShowModal();
}
DIALOG_FREEROUTE::DIALOG_FREEROUTE( PCB_EDIT_FRAME* parent ):
2009-11-21 15:39:50 +00:00
DIALOG_FREEROUTE_BASE( parent )
2008-03-14 18:17:51 +00:00
{
2009-11-21 15:39:50 +00:00
m_Parent = parent;
MyInit();
2009-11-23 17:24:33 +00:00
m_sdbSizer1OK->SetDefault();
2009-11-23 17:24:33 +00:00
GetSizer()->SetSizeHints( this );
2008-03-14 18:17:51 +00:00
Centre();
}
2009-11-23 17:24:33 +00:00
/* Specific data initialisation
2008-03-14 18:17:51 +00:00
*/
2009-11-21 15:39:50 +00:00
void DIALOG_FREEROUTE::MyInit()
2008-03-14 18:17:51 +00:00
{
2009-11-21 15:39:50 +00:00
SetFocus();
2008-03-14 18:17:51 +00:00
m_FreeRouteSetupChanged = false;
wxString msg;
2011-12-16 20:12:49 +00:00
wxGetApp().GetSettings()->Read( FREEROUTE_URL_KEY, &msg );
2008-03-14 18:17:51 +00:00
if( msg.IsEmpty() )
m_FreerouteURLName->SetValue( wxT( "http://www.freerouting.net/" ) );
else
m_FreerouteURLName->SetValue( msg );
}
2009-11-21 15:39:50 +00:00
const char * s_FreeRouteHelpInfo =
#include <dialog_freeroute_exchange_help_html.h>
2009-11-21 15:39:50 +00:00
;
void DIALOG_FREEROUTE::OnHelpButtonClick( wxCommandEvent& event )
2008-03-14 18:17:51 +00:00
{
2009-11-21 15:39:50 +00:00
DIALOG_DISPLAY_HTML_TEXT_BASE help_Dlg( this, wxID_ANY,
_("Freeroute Help"),wxDefaultPosition, wxSize( 650,550 ) );
2008-03-14 18:17:51 +00:00
wxString msg = FROM_UTF8(s_FreeRouteHelpInfo);
2009-11-21 15:39:50 +00:00
help_Dlg.m_htmlWindow->AppendToPage( msg );
help_Dlg.ShowModal();
2008-03-14 18:17:51 +00:00
}
/* wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_CREATE_EXPORT_DSN_FILE
2008-03-14 18:17:51 +00:00
*/
2009-11-21 15:39:50 +00:00
void DIALOG_FREEROUTE::OnExportButtonClick( wxCommandEvent& event )
2008-03-14 18:17:51 +00:00
{
m_Parent->ExportToSpecctra( event );
}
/* wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_IMPORT_FREEROUTE_DSN_FILE
2008-03-14 18:17:51 +00:00
*/
2009-11-21 15:39:50 +00:00
void DIALOG_FREEROUTE::OnImportButtonClick( wxCommandEvent& event )
2008-03-14 18:17:51 +00:00
{
m_Parent->ImportSpecctraSession( event );
/* Connectivity inf must be rebuild.
* because for large board it can take some time, this is made only on demand
*/
if( IsOK( this, _("Do you want to rebuild connectivity data ?" ) ) )
m_Parent->Compile_Ratsnest( NULL, true );
2008-03-14 18:17:51 +00:00
}
/* wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_RUN_FREEROUTE
2008-03-14 18:17:51 +00:00
*/
2009-11-21 15:39:50 +00:00
void DIALOG_FREEROUTE::OnLaunchButtonClick( wxCommandEvent& event )
2008-03-14 18:17:51 +00:00
{
wxString FullFileName = FindKicadFile( wxT( "freeroute.jnlp" ) );
wxString command;
if( wxFileExists( FullFileName ) )
{
// Wrap FullFileName in double quotes in case it has C:\Program Files in it.
// The space is interpreted as an argument separator.
command << wxT("javaws") << wxChar(' ') << wxChar('"') << FullFileName << wxChar('"');
2008-04-24 16:55:35 +00:00
ProcessExecute( command );
return;
}
2008-03-14 18:17:51 +00:00
command = m_FreerouteURLName->GetValue() + wxT( "/java/freeroute.jnlp" );
2008-03-18 21:18:04 +00:00
2008-03-14 18:17:51 +00:00
wxLaunchDefaultBrowser( command );
}
/* wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_BUTTON
2008-03-14 18:17:51 +00:00
*/
2009-11-21 15:39:50 +00:00
void DIALOG_FREEROUTE::OnVisitButtonClick( wxCommandEvent& event )
2008-03-14 18:17:51 +00:00
{
wxString command = m_FreerouteURLName->GetValue();
wxLaunchDefaultBrowser( command );
}
/* wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CLOSE
2008-03-14 18:17:51 +00:00
*/
2009-11-21 15:39:50 +00:00
void DIALOG_FREEROUTE::OnCancelButtonClick( wxCommandEvent& event )
2008-03-14 18:17:51 +00:00
{
EndModal(wxID_CANCEL);
2008-03-14 18:17:51 +00:00
}
2009-11-21 15:39:50 +00:00
void DIALOG_FREEROUTE::OnOKButtonClick( wxCommandEvent& event )
2008-03-14 18:17:51 +00:00
{
if( m_FreeRouteSetupChanged ) // Save new config
{
2011-12-16 20:12:49 +00:00
wxGetApp().GetSettings()->Write( FREEROUTE_URL_KEY,
m_FreerouteURLName->GetValue() );
2008-03-14 18:17:51 +00:00
}
EndModal(wxID_OK);
2008-03-14 18:17:51 +00:00
}
/* wxEVT_COMMAND_TEXT_UPDATED event handler for ID_TEXT_EDIT_FR_URL
2008-03-14 18:17:51 +00:00
*/
2009-11-21 15:39:50 +00:00
void DIALOG_FREEROUTE::OnTextEditFrUrlUpdated( wxCommandEvent& event )
2008-03-14 18:17:51 +00:00
{
m_FreeRouteSetupChanged = true;
}