Drill dialog: fix incorrect parent window when called from the Plot dialog.
The parent window was always the board edit frame, but this is incorrect when this dialog is called from the Plot dialog. Fixes: lp:1815530 https://bugs.launchpad.net/kicad/+bug/1815530
This commit is contained in:
parent
a74aa3850a
commit
b6027e0815
|
@ -69,28 +69,28 @@ static DRILL_PRECISION precisionListForMetric( 3, 3 );
|
||||||
*/
|
*/
|
||||||
void PCB_EDIT_FRAME::InstallDrillFrame( wxCommandEvent& event )
|
void PCB_EDIT_FRAME::InstallDrillFrame( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
DIALOG_GENDRILL dlg( this );
|
DIALOG_GENDRILL dlg( this, this );
|
||||||
|
|
||||||
dlg.ShowModal();
|
dlg.ShowModal();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
DIALOG_GENDRILL::DIALOG_GENDRILL( PCB_EDIT_FRAME* parent ) :
|
DIALOG_GENDRILL::DIALOG_GENDRILL( PCB_EDIT_FRAME* aPcbEditFrame, wxWindow* aParent ) :
|
||||||
DIALOG_GENDRILL_BASE( parent )
|
DIALOG_GENDRILL_BASE( aParent )
|
||||||
{
|
{
|
||||||
m_parent = parent;
|
m_pcbEditFrame = aPcbEditFrame;
|
||||||
m_board = parent->GetBoard();
|
m_board = m_pcbEditFrame->GetBoard();
|
||||||
m_config = Kiface().KifaceSettings();
|
m_config = Kiface().KifaceSettings();
|
||||||
m_plotOpts = m_parent->GetPlotSettings();
|
m_plotOpts = m_pcbEditFrame->GetPlotSettings();
|
||||||
|
|
||||||
// We use a sdbSizer to get platform-dependent ordering of the action buttons, but
|
// We use a sdbSizer to get platform-dependent ordering of the action buttons, but
|
||||||
// that requires us to correct the button labels here.
|
// that requires us to correct the button labels here.
|
||||||
m_sdbSizer1OK->SetLabel( _( "Generate Drill File" ) );
|
m_sdbSizerOK->SetLabel( _( "Generate Drill File" ) );
|
||||||
m_sdbSizer1Apply->SetLabel( _( "Generate Map File" ) );
|
m_sdbSizerApply->SetLabel( _( "Generate Map File" ) );
|
||||||
m_sdbSizer1Cancel->SetLabel( _( "Close" ) );
|
m_sdbSizerCancel->SetLabel( _( "Close" ) );
|
||||||
m_buttonsSizer->Layout();
|
m_buttonsSizer->Layout();
|
||||||
|
|
||||||
m_sdbSizer1OK->SetDefault();
|
m_sdbSizerOK->SetDefault();
|
||||||
SetReturnCode( 1 );
|
SetReturnCode( 1 );
|
||||||
initDialog();
|
initDialog();
|
||||||
GetSizer()->SetSizeHints( this );
|
GetSizer()->SetSizeHints( this );
|
||||||
|
@ -109,7 +109,6 @@ bool DIALOG_GENDRILL::m_UseRouteModeForOvalHoles = true; // Use G00 route mod
|
||||||
|
|
||||||
DIALOG_GENDRILL::~DIALOG_GENDRILL()
|
DIALOG_GENDRILL::~DIALOG_GENDRILL()
|
||||||
{
|
{
|
||||||
UpdateConfig();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -154,7 +153,7 @@ void DIALOG_GENDRILL::InitDisplayParams()
|
||||||
m_microViasCount = 0;
|
m_microViasCount = 0;
|
||||||
m_blindOrBuriedViasCount = 0;
|
m_blindOrBuriedViasCount = 0;
|
||||||
|
|
||||||
for( MODULE* module = m_parent->GetBoard()->m_Modules; module; module = module->Next() )
|
for( MODULE* module = m_board->m_Modules; module; module = module->Next() )
|
||||||
{
|
{
|
||||||
for( D_PAD* pad = module->PadsList(); pad != NULL; pad = pad->Next() )
|
for( D_PAD* pad = module->PadsList(); pad != NULL; pad = pad->Next() )
|
||||||
{
|
{
|
||||||
|
@ -181,7 +180,7 @@ void DIALOG_GENDRILL::InitDisplayParams()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for( TRACK* track = m_parent->GetBoard()->m_Track; track != NULL; track = track->Next() )
|
for( TRACK* track = m_board->m_Track; track != NULL; track = track->Next() )
|
||||||
{
|
{
|
||||||
const VIA *via = dynamic_cast<const VIA*>( track );
|
const VIA *via = dynamic_cast<const VIA*>( track );
|
||||||
if( via )
|
if( via )
|
||||||
|
@ -246,7 +245,7 @@ void DIALOG_GENDRILL::onFileFormatSelection( wxCommandEvent& event )
|
||||||
|
|
||||||
void DIALOG_GENDRILL::UpdateConfig()
|
void DIALOG_GENDRILL::UpdateConfig()
|
||||||
{
|
{
|
||||||
SetParams();
|
UpdateDrillParams();
|
||||||
|
|
||||||
m_config->Write( ZerosFormatKey, m_ZerosFormat );
|
m_config->Write( ZerosFormatKey, m_ZerosFormat );
|
||||||
m_config->Write( MirrorKey, m_Mirror );
|
m_config->Write( MirrorKey, m_Mirror );
|
||||||
|
@ -314,7 +313,7 @@ void DIALOG_GENDRILL::OnOutputDirectoryBrowseClicked( wxCommandEvent& event )
|
||||||
|
|
||||||
wxFileName dirName = wxFileName::DirName( dirDialog.GetPath() );
|
wxFileName dirName = wxFileName::DirName( dirDialog.GetPath() );
|
||||||
|
|
||||||
fn = Prj().AbsolutePath( m_parent->GetBoard()->GetFileName() );
|
fn = Prj().AbsolutePath( m_board->GetFileName() );
|
||||||
wxString defaultPath = fn.GetPathWithSep();
|
wxString defaultPath = fn.GetPathWithSep();
|
||||||
wxString msg;
|
wxString msg;
|
||||||
msg.Printf( _( "Do you want to use a path relative to\n\"%s\"" ), GetChars( defaultPath ) );
|
msg.Printf( _( "Do you want to use a path relative to\n\"%s\"" ), GetChars( defaultPath ) );
|
||||||
|
@ -333,7 +332,7 @@ void DIALOG_GENDRILL::OnOutputDirectoryBrowseClicked( wxCommandEvent& event )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void DIALOG_GENDRILL::SetParams()
|
void DIALOG_GENDRILL::UpdateDrillParams()
|
||||||
{
|
{
|
||||||
wxString msg;
|
wxString msg;
|
||||||
|
|
||||||
|
@ -357,7 +356,7 @@ void DIALOG_GENDRILL::SetParams()
|
||||||
if( m_Choice_Drill_Offset->GetSelection() == 0 )
|
if( m_Choice_Drill_Offset->GetSelection() == 0 )
|
||||||
m_FileDrillOffset = wxPoint( 0, 0 );
|
m_FileDrillOffset = wxPoint( 0, 0 );
|
||||||
else
|
else
|
||||||
m_FileDrillOffset = m_parent->GetAuxOrigin();
|
m_FileDrillOffset = m_pcbEditFrame->GetAuxOrigin();
|
||||||
|
|
||||||
if( m_UnitDrillIsInch )
|
if( m_UnitDrillIsInch )
|
||||||
m_Precision = precisionListForInches;
|
m_Precision = precisionListForInches;
|
||||||
|
@ -372,7 +371,7 @@ void DIALOG_GENDRILL::GenDrillAndMapFiles( bool aGenDrill, bool aGenMap )
|
||||||
{
|
{
|
||||||
UpdateConfig(); // set params and Save drill options
|
UpdateConfig(); // set params and Save drill options
|
||||||
|
|
||||||
m_parent->ClearMsgPanel();
|
m_pcbEditFrame->ClearMsgPanel();
|
||||||
WX_TEXT_CTRL_REPORTER reporter( m_messagesBox );
|
WX_TEXT_CTRL_REPORTER reporter( m_messagesBox );
|
||||||
|
|
||||||
const PlotFormat filefmt[6] =
|
const PlotFormat filefmt[6] =
|
||||||
|
@ -389,7 +388,7 @@ void DIALOG_GENDRILL::GenDrillAndMapFiles( bool aGenDrill, bool aGenMap )
|
||||||
// Create output directory if it does not exist (also transform it in
|
// Create output directory if it does not exist (also transform it in
|
||||||
// absolute form). Bail if it fails
|
// absolute form). Bail if it fails
|
||||||
wxFileName outputDir = wxFileName::DirName( m_plotOpts.GetOutputDirectory() );
|
wxFileName outputDir = wxFileName::DirName( m_plotOpts.GetOutputDirectory() );
|
||||||
wxString boardFilename = m_parent->GetBoard()->GetFileName();
|
wxString boardFilename = m_board->GetFileName();
|
||||||
|
|
||||||
if( !EnsureFileDirectoryExists( &outputDir, boardFilename, &reporter ) )
|
if( !EnsureFileDirectoryExists( &outputDir, boardFilename, &reporter ) )
|
||||||
{
|
{
|
||||||
|
@ -402,7 +401,7 @@ void DIALOG_GENDRILL::GenDrillAndMapFiles( bool aGenDrill, bool aGenMap )
|
||||||
|
|
||||||
if( m_drillFileType == 0 )
|
if( m_drillFileType == 0 )
|
||||||
{
|
{
|
||||||
EXCELLON_WRITER excellonWriter( m_parent->GetBoard() );
|
EXCELLON_WRITER excellonWriter( m_board );
|
||||||
excellonWriter.SetFormat( !m_UnitDrillIsInch, (EXCELLON_WRITER::ZEROS_FMT) m_ZerosFormat,
|
excellonWriter.SetFormat( !m_UnitDrillIsInch, (EXCELLON_WRITER::ZEROS_FMT) m_ZerosFormat,
|
||||||
m_Precision.m_lhs, m_Precision.m_rhs );
|
m_Precision.m_lhs, m_Precision.m_rhs );
|
||||||
excellonWriter.SetOptions( m_Mirror, m_MinimalHeader, m_FileDrillOffset, m_Merge_PTH_NPTH );
|
excellonWriter.SetOptions( m_Mirror, m_MinimalHeader, m_FileDrillOffset, m_Merge_PTH_NPTH );
|
||||||
|
@ -414,7 +413,7 @@ void DIALOG_GENDRILL::GenDrillAndMapFiles( bool aGenDrill, bool aGenMap )
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
GERBER_WRITER gerberWriter( m_parent->GetBoard() );
|
GERBER_WRITER gerberWriter( m_board );
|
||||||
// Set gerber precision: only 5 or 6 digits for mantissa are allowed
|
// Set gerber precision: only 5 or 6 digits for mantissa are allowed
|
||||||
// (SetFormat() accept 5 or 6, and any other value set the precision to 5)
|
// (SetFormat() accept 5 or 6, and any other value set the precision to 5)
|
||||||
// the integer part precision is always 4, and units always mm
|
// the integer part precision is always 4, and units always mm
|
||||||
|
@ -432,7 +431,7 @@ void DIALOG_GENDRILL::OnGenReportFile( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
UpdateConfig(); // set params and Save drill options
|
UpdateConfig(); // set params and Save drill options
|
||||||
|
|
||||||
wxFileName fn = m_parent->GetBoard()->GetFileName();
|
wxFileName fn = m_board->GetFileName();
|
||||||
|
|
||||||
fn.SetName( fn.GetName() + wxT( "-drl" ) );
|
fn.SetName( fn.GetName() + wxT( "-drl" ) );
|
||||||
fn.SetExt( ReportFileExtension );
|
fn.SetExt( ReportFileExtension );
|
||||||
|
@ -454,13 +453,13 @@ void DIALOG_GENDRILL::OnGenReportFile( wxCommandEvent& event )
|
||||||
// (file ext, Merge PTH/NPTH option)
|
// (file ext, Merge PTH/NPTH option)
|
||||||
if( m_drillFileType == 0 )
|
if( m_drillFileType == 0 )
|
||||||
{
|
{
|
||||||
EXCELLON_WRITER excellonWriter( m_parent->GetBoard() );
|
EXCELLON_WRITER excellonWriter( m_board );
|
||||||
excellonWriter.SetMergeOption( m_Merge_PTH_NPTH );
|
excellonWriter.SetMergeOption( m_Merge_PTH_NPTH );
|
||||||
success = excellonWriter.GenDrillReportFile( dlg.GetPath() );
|
success = excellonWriter.GenDrillReportFile( dlg.GetPath() );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
GERBER_WRITER gerberWriter( m_parent->GetBoard() );
|
GERBER_WRITER gerberWriter( m_board );
|
||||||
success = gerberWriter.GenDrillReportFile( dlg.GetPath() );
|
success = gerberWriter.GenDrillReportFile( dlg.GetPath() );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -29,14 +29,26 @@
|
||||||
#ifndef DIALOG_GENDRILL_H_
|
#ifndef DIALOG_GENDRILL_H_
|
||||||
#define DIALOG_GENDRILL_H_
|
#define DIALOG_GENDRILL_H_
|
||||||
|
|
||||||
|
#include <gendrill_file_writer_base.h> // for DRILL_PRECISION definition
|
||||||
#include <dialog_gendrill_base.h>
|
#include <dialog_gendrill_base.h>
|
||||||
|
|
||||||
class DIALOG_GENDRILL : public DIALOG_GENDRILL_BASE
|
class DIALOG_GENDRILL : public DIALOG_GENDRILL_BASE
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
DIALOG_GENDRILL( PCB_EDIT_FRAME* parent );
|
/**
|
||||||
|
* Ctor
|
||||||
|
* @param aPcbEditFrame is the board edit frame
|
||||||
|
* @param aParent is the parent window caller ( the board edit frame or a dialog )
|
||||||
|
*/
|
||||||
|
DIALOG_GENDRILL( PCB_EDIT_FRAME* aPcbEditFrame, wxWindow* aParent );
|
||||||
~DIALOG_GENDRILL();
|
~DIALOG_GENDRILL();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update board drill/plot parameters
|
||||||
|
*/
|
||||||
|
void UpdateDrillParams( void );
|
||||||
|
|
||||||
|
|
||||||
static int m_UnitDrillIsInch;
|
static int m_UnitDrillIsInch;
|
||||||
static int m_ZerosFormat;
|
static int m_ZerosFormat;
|
||||||
static bool m_MinimalHeader;
|
static bool m_MinimalHeader;
|
||||||
|
@ -50,7 +62,7 @@ public:
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
PCB_EDIT_FRAME* m_parent;
|
PCB_EDIT_FRAME* m_pcbEditFrame;
|
||||||
wxConfigBase* m_config;
|
wxConfigBase* m_config;
|
||||||
BOARD* m_board;
|
BOARD* m_board;
|
||||||
PCB_PLOT_PARAMS m_plotOpts;
|
PCB_PLOT_PARAMS m_plotOpts;
|
||||||
|
@ -76,6 +88,20 @@ private:
|
||||||
void OnGenMapFile( wxCommandEvent& event ) override;
|
void OnGenMapFile( wxCommandEvent& event ) override;
|
||||||
void onFileFormatSelection( wxCommandEvent& event ) override;
|
void onFileFormatSelection( wxCommandEvent& event ) override;
|
||||||
|
|
||||||
|
// Called when closing the dialog: Update config.
|
||||||
|
// This is not done in Dtor, because the dtor call is often delayed
|
||||||
|
// and the update could happen too late for the caller.
|
||||||
|
void onCloseDlg( wxCloseEvent& event ) override
|
||||||
|
{
|
||||||
|
UpdateConfig();
|
||||||
|
event.Skip();
|
||||||
|
}
|
||||||
|
void onQuitDlg( wxCommandEvent& event ) override
|
||||||
|
{
|
||||||
|
UpdateConfig();
|
||||||
|
event.Skip();
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Create a plain text report file giving a list of drill values and drill count
|
* Create a plain text report file giving a list of drill values and drill count
|
||||||
* for through holes, oblong holes, and for buried vias,
|
* for through holes, oblong holes, and for buried vias,
|
||||||
|
@ -86,8 +112,6 @@ private:
|
||||||
void OnOutputDirectoryBrowseClicked( wxCommandEvent& event ) override;
|
void OnOutputDirectoryBrowseClicked( wxCommandEvent& event ) override;
|
||||||
|
|
||||||
// Specific functions:
|
// Specific functions:
|
||||||
void SetParams( void );
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GenDrillAndMapFiles
|
* Function GenDrillAndMapFiles
|
||||||
* Calls the functions to create EXCELLON drill files and/or drill map files
|
* Calls the functions to create EXCELLON drill files and/or drill map files
|
||||||
|
|
|
@ -218,16 +218,16 @@ DIALOG_GENDRILL_BASE::DIALOG_GENDRILL_BASE( wxWindow* parent, wxWindowID id, con
|
||||||
m_buttonReport = new wxButton( this, wxID_ANY, _("Generate Report File"), wxDefaultPosition, wxDefaultSize, 0 );
|
m_buttonReport = new wxButton( this, wxID_ANY, _("Generate Report File"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
m_buttonsSizer->Add( m_buttonReport, 0, wxEXPAND|wxRIGHT|wxLEFT, 10 );
|
m_buttonsSizer->Add( m_buttonReport, 0, wxEXPAND|wxRIGHT|wxLEFT, 10 );
|
||||||
|
|
||||||
m_sdbSizer1 = new wxStdDialogButtonSizer();
|
m_sdbSizer = new wxStdDialogButtonSizer();
|
||||||
m_sdbSizer1OK = new wxButton( this, wxID_OK );
|
m_sdbSizerOK = new wxButton( this, wxID_OK );
|
||||||
m_sdbSizer1->AddButton( m_sdbSizer1OK );
|
m_sdbSizer->AddButton( m_sdbSizerOK );
|
||||||
m_sdbSizer1Apply = new wxButton( this, wxID_APPLY );
|
m_sdbSizerApply = new wxButton( this, wxID_APPLY );
|
||||||
m_sdbSizer1->AddButton( m_sdbSizer1Apply );
|
m_sdbSizer->AddButton( m_sdbSizerApply );
|
||||||
m_sdbSizer1Cancel = new wxButton( this, wxID_CANCEL );
|
m_sdbSizerCancel = new wxButton( this, wxID_CANCEL );
|
||||||
m_sdbSizer1->AddButton( m_sdbSizer1Cancel );
|
m_sdbSizer->AddButton( m_sdbSizerCancel );
|
||||||
m_sdbSizer1->Realize();
|
m_sdbSizer->Realize();
|
||||||
|
|
||||||
m_buttonsSizer->Add( m_sdbSizer1, 1, wxEXPAND, 5 );
|
m_buttonsSizer->Add( m_sdbSizer, 1, wxEXPAND, 5 );
|
||||||
|
|
||||||
|
|
||||||
bMainSizer->Add( m_buttonsSizer, 0, wxALL|wxEXPAND, 5 );
|
bMainSizer->Add( m_buttonsSizer, 0, wxALL|wxEXPAND, 5 );
|
||||||
|
@ -239,26 +239,30 @@ DIALOG_GENDRILL_BASE::DIALOG_GENDRILL_BASE( wxWindow* parent, wxWindowID id, con
|
||||||
this->Centre( wxBOTH );
|
this->Centre( wxBOTH );
|
||||||
|
|
||||||
// Connect Events
|
// Connect Events
|
||||||
|
this->Connect( wxEVT_CLOSE_WINDOW, wxCloseEventHandler( DIALOG_GENDRILL_BASE::onCloseDlg ) );
|
||||||
m_browseButton->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnOutputDirectoryBrowseClicked ), NULL, this );
|
m_browseButton->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnOutputDirectoryBrowseClicked ), NULL, this );
|
||||||
m_rbExcellon->Connect( wxEVT_COMMAND_RADIOBUTTON_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::onFileFormatSelection ), NULL, this );
|
m_rbExcellon->Connect( wxEVT_COMMAND_RADIOBUTTON_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::onFileFormatSelection ), NULL, this );
|
||||||
m_rbGerberX2->Connect( wxEVT_COMMAND_RADIOBUTTON_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::onFileFormatSelection ), NULL, this );
|
m_rbGerberX2->Connect( wxEVT_COMMAND_RADIOBUTTON_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::onFileFormatSelection ), NULL, this );
|
||||||
m_Choice_Unit->Connect( wxEVT_COMMAND_RADIOBOX_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnSelDrillUnitsSelected ), NULL, this );
|
m_Choice_Unit->Connect( wxEVT_COMMAND_RADIOBOX_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnSelDrillUnitsSelected ), NULL, this );
|
||||||
m_Choice_Zeros_Format->Connect( wxEVT_COMMAND_RADIOBOX_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnSelZerosFmtSelected ), NULL, this );
|
m_Choice_Zeros_Format->Connect( wxEVT_COMMAND_RADIOBOX_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnSelZerosFmtSelected ), NULL, this );
|
||||||
m_buttonReport->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnGenReportFile ), NULL, this );
|
m_buttonReport->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnGenReportFile ), NULL, this );
|
||||||
m_sdbSizer1Apply->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnGenMapFile ), NULL, this );
|
m_sdbSizerApply->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnGenMapFile ), NULL, this );
|
||||||
m_sdbSizer1OK->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnGenDrillFile ), NULL, this );
|
m_sdbSizerCancel->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::onQuitDlg ), NULL, this );
|
||||||
|
m_sdbSizerOK->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnGenDrillFile ), NULL, this );
|
||||||
}
|
}
|
||||||
|
|
||||||
DIALOG_GENDRILL_BASE::~DIALOG_GENDRILL_BASE()
|
DIALOG_GENDRILL_BASE::~DIALOG_GENDRILL_BASE()
|
||||||
{
|
{
|
||||||
// Disconnect Events
|
// Disconnect Events
|
||||||
|
this->Disconnect( wxEVT_CLOSE_WINDOW, wxCloseEventHandler( DIALOG_GENDRILL_BASE::onCloseDlg ) );
|
||||||
m_browseButton->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnOutputDirectoryBrowseClicked ), NULL, this );
|
m_browseButton->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnOutputDirectoryBrowseClicked ), NULL, this );
|
||||||
m_rbExcellon->Disconnect( wxEVT_COMMAND_RADIOBUTTON_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::onFileFormatSelection ), NULL, this );
|
m_rbExcellon->Disconnect( wxEVT_COMMAND_RADIOBUTTON_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::onFileFormatSelection ), NULL, this );
|
||||||
m_rbGerberX2->Disconnect( wxEVT_COMMAND_RADIOBUTTON_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::onFileFormatSelection ), NULL, this );
|
m_rbGerberX2->Disconnect( wxEVT_COMMAND_RADIOBUTTON_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::onFileFormatSelection ), NULL, this );
|
||||||
m_Choice_Unit->Disconnect( wxEVT_COMMAND_RADIOBOX_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnSelDrillUnitsSelected ), NULL, this );
|
m_Choice_Unit->Disconnect( wxEVT_COMMAND_RADIOBOX_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnSelDrillUnitsSelected ), NULL, this );
|
||||||
m_Choice_Zeros_Format->Disconnect( wxEVT_COMMAND_RADIOBOX_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnSelZerosFmtSelected ), NULL, this );
|
m_Choice_Zeros_Format->Disconnect( wxEVT_COMMAND_RADIOBOX_SELECTED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnSelZerosFmtSelected ), NULL, this );
|
||||||
m_buttonReport->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnGenReportFile ), NULL, this );
|
m_buttonReport->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnGenReportFile ), NULL, this );
|
||||||
m_sdbSizer1Apply->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnGenMapFile ), NULL, this );
|
m_sdbSizerApply->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnGenMapFile ), NULL, this );
|
||||||
m_sdbSizer1OK->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnGenDrillFile ), NULL, this );
|
m_sdbSizerCancel->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::onQuitDlg ), NULL, this );
|
||||||
|
m_sdbSizerOK->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GENDRILL_BASE::OnGenDrillFile ), NULL, this );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,6 +53,7 @@
|
||||||
<property name="window_extra_style"></property>
|
<property name="window_extra_style"></property>
|
||||||
<property name="window_name"></property>
|
<property name="window_name"></property>
|
||||||
<property name="window_style"></property>
|
<property name="window_style"></property>
|
||||||
|
<event name="OnClose">onCloseDlg</event>
|
||||||
<object class="wxBoxSizer" expanded="1">
|
<object class="wxBoxSizer" expanded="1">
|
||||||
<property name="minimum_size"></property>
|
<property name="minimum_size"></property>
|
||||||
<property name="name">bMainSizer</property>
|
<property name="name">bMainSizer</property>
|
||||||
|
@ -1121,16 +1122,16 @@
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxEXPAND|wxTOP</property>
|
<property name="flag">wxEXPAND|wxTOP</property>
|
||||||
<property name="proportion">1</property>
|
<property name="proportion">1</property>
|
||||||
<object class="wxBoxSizer" expanded="1">
|
<object class="wxBoxSizer" expanded="0">
|
||||||
<property name="minimum_size"></property>
|
<property name="minimum_size"></property>
|
||||||
<property name="name">bRightBoxSizer</property>
|
<property name="name">bRightBoxSizer</property>
|
||||||
<property name="orient">wxVERTICAL</property>
|
<property name="orient">wxVERTICAL</property>
|
||||||
<property name="permission">none</property>
|
<property name="permission">none</property>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="0">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT</property>
|
<property name="flag">wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT</property>
|
||||||
<property name="proportion">1</property>
|
<property name="proportion">1</property>
|
||||||
<object class="wxStaticBoxSizer" expanded="1">
|
<object class="wxStaticBoxSizer" expanded="0">
|
||||||
<property name="id">wxID_ANY</property>
|
<property name="id">wxID_ANY</property>
|
||||||
<property name="label">Hole Counts</property>
|
<property name="label">Hole Counts</property>
|
||||||
<property name="minimum_size"></property>
|
<property name="minimum_size"></property>
|
||||||
|
@ -1138,11 +1139,11 @@
|
||||||
<property name="orient">wxVERTICAL</property>
|
<property name="orient">wxVERTICAL</property>
|
||||||
<property name="parent">1</property>
|
<property name="parent">1</property>
|
||||||
<property name="permission">none</property>
|
<property name="permission">none</property>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="0">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxEXPAND</property>
|
<property name="flag">wxEXPAND</property>
|
||||||
<property name="proportion">1</property>
|
<property name="proportion">1</property>
|
||||||
<object class="wxFlexGridSizer" expanded="1">
|
<object class="wxFlexGridSizer" expanded="0">
|
||||||
<property name="cols">2</property>
|
<property name="cols">2</property>
|
||||||
<property name="flexible_direction">wxBOTH</property>
|
<property name="flexible_direction">wxBOTH</property>
|
||||||
<property name="growablecols"></property>
|
<property name="growablecols"></property>
|
||||||
|
@ -1154,11 +1155,11 @@
|
||||||
<property name="permission">none</property>
|
<property name="permission">none</property>
|
||||||
<property name="rows">0</property>
|
<property name="rows">0</property>
|
||||||
<property name="vgap">0</property>
|
<property name="vgap">0</property>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="0">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxLEFT|wxRIGHT</property>
|
<property name="flag">wxLEFT|wxRIGHT</property>
|
||||||
<property name="proportion">0</property>
|
<property name="proportion">0</property>
|
||||||
<object class="wxStaticText" expanded="1">
|
<object class="wxStaticText" expanded="0">
|
||||||
<property name="BottomDockable">1</property>
|
<property name="BottomDockable">1</property>
|
||||||
<property name="LeftDockable">1</property>
|
<property name="LeftDockable">1</property>
|
||||||
<property name="RightDockable">1</property>
|
<property name="RightDockable">1</property>
|
||||||
|
@ -1215,11 +1216,11 @@
|
||||||
<property name="wrap">-1</property>
|
<property name="wrap">-1</property>
|
||||||
</object>
|
</object>
|
||||||
</object>
|
</object>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="0">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxALIGN_RIGHT|wxLEFT|wxRIGHT</property>
|
<property name="flag">wxALIGN_RIGHT|wxLEFT|wxRIGHT</property>
|
||||||
<property name="proportion">0</property>
|
<property name="proportion">0</property>
|
||||||
<object class="wxStaticText" expanded="1">
|
<object class="wxStaticText" expanded="0">
|
||||||
<property name="BottomDockable">1</property>
|
<property name="BottomDockable">1</property>
|
||||||
<property name="LeftDockable">1</property>
|
<property name="LeftDockable">1</property>
|
||||||
<property name="RightDockable">1</property>
|
<property name="RightDockable">1</property>
|
||||||
|
@ -1276,11 +1277,11 @@
|
||||||
<property name="wrap">-1</property>
|
<property name="wrap">-1</property>
|
||||||
</object>
|
</object>
|
||||||
</object>
|
</object>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="0">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxLEFT|wxRIGHT|wxTOP</property>
|
<property name="flag">wxLEFT|wxRIGHT|wxTOP</property>
|
||||||
<property name="proportion">0</property>
|
<property name="proportion">0</property>
|
||||||
<object class="wxStaticText" expanded="1">
|
<object class="wxStaticText" expanded="0">
|
||||||
<property name="BottomDockable">1</property>
|
<property name="BottomDockable">1</property>
|
||||||
<property name="LeftDockable">1</property>
|
<property name="LeftDockable">1</property>
|
||||||
<property name="RightDockable">1</property>
|
<property name="RightDockable">1</property>
|
||||||
|
@ -1337,11 +1338,11 @@
|
||||||
<property name="wrap">-1</property>
|
<property name="wrap">-1</property>
|
||||||
</object>
|
</object>
|
||||||
</object>
|
</object>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="0">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxALIGN_RIGHT|wxLEFT|wxRIGHT|wxTOP</property>
|
<property name="flag">wxALIGN_RIGHT|wxLEFT|wxRIGHT|wxTOP</property>
|
||||||
<property name="proportion">0</property>
|
<property name="proportion">0</property>
|
||||||
<object class="wxStaticText" expanded="1">
|
<object class="wxStaticText" expanded="0">
|
||||||
<property name="BottomDockable">1</property>
|
<property name="BottomDockable">1</property>
|
||||||
<property name="LeftDockable">1</property>
|
<property name="LeftDockable">1</property>
|
||||||
<property name="RightDockable">1</property>
|
<property name="RightDockable">1</property>
|
||||||
|
@ -1398,11 +1399,11 @@
|
||||||
<property name="wrap">-1</property>
|
<property name="wrap">-1</property>
|
||||||
</object>
|
</object>
|
||||||
</object>
|
</object>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="0">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxLEFT|wxRIGHT|wxTOP</property>
|
<property name="flag">wxLEFT|wxRIGHT|wxTOP</property>
|
||||||
<property name="proportion">0</property>
|
<property name="proportion">0</property>
|
||||||
<object class="wxStaticText" expanded="1">
|
<object class="wxStaticText" expanded="0">
|
||||||
<property name="BottomDockable">1</property>
|
<property name="BottomDockable">1</property>
|
||||||
<property name="LeftDockable">1</property>
|
<property name="LeftDockable">1</property>
|
||||||
<property name="RightDockable">1</property>
|
<property name="RightDockable">1</property>
|
||||||
|
@ -1459,11 +1460,11 @@
|
||||||
<property name="wrap">-1</property>
|
<property name="wrap">-1</property>
|
||||||
</object>
|
</object>
|
||||||
</object>
|
</object>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="0">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxALIGN_RIGHT|wxLEFT|wxRIGHT|wxTOP</property>
|
<property name="flag">wxALIGN_RIGHT|wxLEFT|wxRIGHT|wxTOP</property>
|
||||||
<property name="proportion">0</property>
|
<property name="proportion">0</property>
|
||||||
<object class="wxStaticText" expanded="1">
|
<object class="wxStaticText" expanded="0">
|
||||||
<property name="BottomDockable">1</property>
|
<property name="BottomDockable">1</property>
|
||||||
<property name="LeftDockable">1</property>
|
<property name="LeftDockable">1</property>
|
||||||
<property name="RightDockable">1</property>
|
<property name="RightDockable">1</property>
|
||||||
|
@ -1520,11 +1521,11 @@
|
||||||
<property name="wrap">-1</property>
|
<property name="wrap">-1</property>
|
||||||
</object>
|
</object>
|
||||||
</object>
|
</object>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="0">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxLEFT|wxRIGHT|wxTOP</property>
|
<property name="flag">wxLEFT|wxRIGHT|wxTOP</property>
|
||||||
<property name="proportion">0</property>
|
<property name="proportion">0</property>
|
||||||
<object class="wxStaticText" expanded="1">
|
<object class="wxStaticText" expanded="0">
|
||||||
<property name="BottomDockable">1</property>
|
<property name="BottomDockable">1</property>
|
||||||
<property name="LeftDockable">1</property>
|
<property name="LeftDockable">1</property>
|
||||||
<property name="RightDockable">1</property>
|
<property name="RightDockable">1</property>
|
||||||
|
@ -1581,11 +1582,11 @@
|
||||||
<property name="wrap">-1</property>
|
<property name="wrap">-1</property>
|
||||||
</object>
|
</object>
|
||||||
</object>
|
</object>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="0">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxALIGN_RIGHT|wxLEFT|wxRIGHT|wxTOP</property>
|
<property name="flag">wxALIGN_RIGHT|wxLEFT|wxRIGHT|wxTOP</property>
|
||||||
<property name="proportion">0</property>
|
<property name="proportion">0</property>
|
||||||
<object class="wxStaticText" expanded="1">
|
<object class="wxStaticText" expanded="0">
|
||||||
<property name="BottomDockable">1</property>
|
<property name="BottomDockable">1</property>
|
||||||
<property name="LeftDockable">1</property>
|
<property name="LeftDockable">1</property>
|
||||||
<property name="RightDockable">1</property>
|
<property name="RightDockable">1</property>
|
||||||
|
@ -1642,11 +1643,11 @@
|
||||||
<property name="wrap">-1</property>
|
<property name="wrap">-1</property>
|
||||||
</object>
|
</object>
|
||||||
</object>
|
</object>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="0">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxALL</property>
|
<property name="flag">wxALL</property>
|
||||||
<property name="proportion">0</property>
|
<property name="proportion">0</property>
|
||||||
<object class="wxStaticText" expanded="1">
|
<object class="wxStaticText" expanded="0">
|
||||||
<property name="BottomDockable">1</property>
|
<property name="BottomDockable">1</property>
|
||||||
<property name="LeftDockable">1</property>
|
<property name="LeftDockable">1</property>
|
||||||
<property name="RightDockable">1</property>
|
<property name="RightDockable">1</property>
|
||||||
|
@ -1703,11 +1704,11 @@
|
||||||
<property name="wrap">-1</property>
|
<property name="wrap">-1</property>
|
||||||
</object>
|
</object>
|
||||||
</object>
|
</object>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="0">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxALIGN_RIGHT|wxALL</property>
|
<property name="flag">wxALIGN_RIGHT|wxALL</property>
|
||||||
<property name="proportion">0</property>
|
<property name="proportion">0</property>
|
||||||
<object class="wxStaticText" expanded="1">
|
<object class="wxStaticText" expanded="0">
|
||||||
<property name="BottomDockable">1</property>
|
<property name="BottomDockable">1</property>
|
||||||
<property name="LeftDockable">1</property>
|
<property name="LeftDockable">1</property>
|
||||||
<property name="RightDockable">1</property>
|
<property name="RightDockable">1</property>
|
||||||
|
@ -1946,9 +1947,10 @@
|
||||||
<property name="Save">0</property>
|
<property name="Save">0</property>
|
||||||
<property name="Yes">0</property>
|
<property name="Yes">0</property>
|
||||||
<property name="minimum_size"></property>
|
<property name="minimum_size"></property>
|
||||||
<property name="name">m_sdbSizer1</property>
|
<property name="name">m_sdbSizer</property>
|
||||||
<property name="permission">protected</property>
|
<property name="permission">protected</property>
|
||||||
<event name="OnApplyButtonClick">OnGenMapFile</event>
|
<event name="OnApplyButtonClick">OnGenMapFile</event>
|
||||||
|
<event name="OnCancelButtonClick">onQuitDlg</event>
|
||||||
<event name="OnOKButtonClick">OnGenDrillFile</event>
|
<event name="OnOKButtonClick">OnGenDrillFile</event>
|
||||||
</object>
|
</object>
|
||||||
</object>
|
</object>
|
||||||
|
|
|
@ -69,18 +69,20 @@ class DIALOG_GENDRILL_BASE : public DIALOG_SHIM
|
||||||
wxTextCtrl* m_messagesBox;
|
wxTextCtrl* m_messagesBox;
|
||||||
wxBoxSizer* m_buttonsSizer;
|
wxBoxSizer* m_buttonsSizer;
|
||||||
wxButton* m_buttonReport;
|
wxButton* m_buttonReport;
|
||||||
wxStdDialogButtonSizer* m_sdbSizer1;
|
wxStdDialogButtonSizer* m_sdbSizer;
|
||||||
wxButton* m_sdbSizer1OK;
|
wxButton* m_sdbSizerOK;
|
||||||
wxButton* m_sdbSizer1Apply;
|
wxButton* m_sdbSizerApply;
|
||||||
wxButton* m_sdbSizer1Cancel;
|
wxButton* m_sdbSizerCancel;
|
||||||
|
|
||||||
// Virtual event handlers, overide them in your derived class
|
// Virtual event handlers, overide them in your derived class
|
||||||
|
virtual void onCloseDlg( wxCloseEvent& event ) { event.Skip(); }
|
||||||
virtual void OnOutputDirectoryBrowseClicked( wxCommandEvent& event ) { event.Skip(); }
|
virtual void OnOutputDirectoryBrowseClicked( wxCommandEvent& event ) { event.Skip(); }
|
||||||
virtual void onFileFormatSelection( wxCommandEvent& event ) { event.Skip(); }
|
virtual void onFileFormatSelection( wxCommandEvent& event ) { event.Skip(); }
|
||||||
virtual void OnSelDrillUnitsSelected( wxCommandEvent& event ) { event.Skip(); }
|
virtual void OnSelDrillUnitsSelected( wxCommandEvent& event ) { event.Skip(); }
|
||||||
virtual void OnSelZerosFmtSelected( wxCommandEvent& event ) { event.Skip(); }
|
virtual void OnSelZerosFmtSelected( wxCommandEvent& event ) { event.Skip(); }
|
||||||
virtual void OnGenReportFile( wxCommandEvent& event ) { event.Skip(); }
|
virtual void OnGenReportFile( wxCommandEvent& event ) { event.Skip(); }
|
||||||
virtual void OnGenMapFile( wxCommandEvent& event ) { event.Skip(); }
|
virtual void OnGenMapFile( wxCommandEvent& event ) { event.Skip(); }
|
||||||
|
virtual void onQuitDlg( wxCommandEvent& event ) { event.Skip(); }
|
||||||
virtual void OnGenDrillFile( wxCommandEvent& event ) { event.Skip(); }
|
virtual void OnGenDrillFile( wxCommandEvent& event ) { event.Skip(); }
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@
|
||||||
#include <bitmaps.h>
|
#include <bitmaps.h>
|
||||||
#include <class_board.h>
|
#include <class_board.h>
|
||||||
#include <dialog_plot.h>
|
#include <dialog_plot.h>
|
||||||
|
#include <dialog_gendrill.h>
|
||||||
#include <wx_html_report_panel.h>
|
#include <wx_html_report_panel.h>
|
||||||
#include <drc.h>
|
#include <drc.h>
|
||||||
|
|
||||||
|
@ -276,9 +277,11 @@ void DIALOG_PLOT::OnPopUpLayers( wxCommandEvent& event )
|
||||||
void DIALOG_PLOT::CreateDrillFile( wxCommandEvent& event )
|
void DIALOG_PLOT::CreateDrillFile( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
// Be sure drill file use the same settings (axis option, plot directory)
|
// Be sure drill file use the same settings (axis option, plot directory)
|
||||||
// than plot files:
|
// as plot files:
|
||||||
applyPlotSettings();
|
applyPlotSettings();
|
||||||
m_parent->InstallDrillFrame( event );
|
|
||||||
|
DIALOG_GENDRILL dlg( m_parent, this );
|
||||||
|
dlg.ShowModal();
|
||||||
|
|
||||||
// a few plot settings can be modified: take them in account
|
// a few plot settings can be modified: take them in account
|
||||||
m_plotOpts = m_parent->GetPlotSettings();
|
m_plotOpts = m_parent->GetPlotSettings();
|
||||||
|
|
Loading…
Reference in New Issue