Loading eeschema/CMakeLists.txt +2 −1 Original line number Original line Diff line number Diff line Loading @@ -37,6 +37,8 @@ set(EESCHEMA_SRCS database.cpp database.cpp delete.cpp delete.cpp delsheet.cpp delsheet.cpp dialogs/dialog_plot_schematic_DXF.cpp dialogs/dialog_plot_schematic_DXF_base.cpp dialogs/dialog_plot_schematic_HPGL.cpp dialogs/dialog_plot_schematic_HPGL.cpp dialogs/dialog_plot_schematic_HPGL_base.cpp dialogs/dialog_plot_schematic_HPGL_base.cpp dialogs/dialog_plot_schematic_PS.cpp dialogs/dialog_plot_schematic_PS.cpp Loading Loading @@ -120,7 +122,6 @@ set(EESCHEMA_SRCS operations_on_items_lists.cpp operations_on_items_lists.cpp pinedit.cpp pinedit.cpp plot.cpp plot.cpp plotdxf.cpp read_from_file_schematic_items_descriptions.cpp read_from_file_schematic_items_descriptions.cpp save_schemas.cpp save_schemas.cpp schedit.cpp schedit.cpp Loading eeschema/dialogs/dialog_plot_schematic_DXF.cpp 0 → 100644 +249 −0 Original line number Original line Diff line number Diff line /** @file dialog_plot_schematic_DXF.cpp */ /* * This program source code file is part of KICAD, a free EDA CAD application. * * Copyright (C) 1992-2010 Lorenzo Marcantonio * Copyright (C) 1992-2010 Kicad Developers, see change_log.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 */ #include "fctsys.h" #include "gr_basic.h" #include "common.h" #include "plot_common.h" #include "confirm.h" #include "worksheet.h" #include "program.h" #include "general.h" #include "protos.h" #include "dialog_plot_schematic_DXF_base.h" class DIALOG_PLOT_SCHEMATIC_DXF : public DIALOG_PLOT_SCHEMATIC_DXF_BASE { private: WinEDA_SchematicFrame* m_Parent; public: /// Constructors DIALOG_PLOT_SCHEMATIC_DXF( WinEDA_SchematicFrame* parent ); private: static bool m_plotColorOpt; static int m_pageSizeSelect; static bool m_plot_Sheet_Ref; bool m_select_PlotAll; private: void OnPlotCurrent( wxCommandEvent& event ); void OnPlotAll( wxCommandEvent& event ); void OnCancelClick( wxCommandEvent& event ); void initDlg(); void initOptVars(); void CreateDXFFile(); void PlotOneSheetDXF( const wxString& FileName, SCH_SCREEN* screen, Ki_PageDescr* sheet, wxPoint plot_offset, double scale ); }; /* static members (static to remember last state): */ bool DIALOG_PLOT_SCHEMATIC_DXF::m_plotColorOpt = false; bool DIALOG_PLOT_SCHEMATIC_DXF::m_plot_Sheet_Ref = true; void WinEDA_SchematicFrame::ToPlot_DXF( wxCommandEvent& event ) { DIALOG_PLOT_SCHEMATIC_DXF DXF_frame( this ); DXF_frame.ShowModal(); } DIALOG_PLOT_SCHEMATIC_DXF::DIALOG_PLOT_SCHEMATIC_DXF( WinEDA_SchematicFrame* parent ) : DIALOG_PLOT_SCHEMATIC_DXF_BASE( parent ) { m_Parent = parent; m_select_PlotAll = false; initDlg(); GetSizer()->SetSizeHints( this ); Centre(); } void DIALOG_PLOT_SCHEMATIC_DXF::initDlg() { SetFocus(); // make the ESC work // Set options m_PlotColorCtrl->SetSelection( m_plotColorOpt ? 1 : 0 ); m_Plot_Sheet_Ref_Ctrl->SetValue( m_plot_Sheet_Ref ); } /* event handler for Plot Current button */ void DIALOG_PLOT_SCHEMATIC_DXF::OnPlotCurrent( wxCommandEvent& event ) { m_select_PlotAll = false; initOptVars(); CreateDXFFile( ); m_MsgBox->AppendText( wxT( "*****\n" ) ); } /* event handler for Plot ALL button */ void DIALOG_PLOT_SCHEMATIC_DXF::OnPlotAll( wxCommandEvent& event ) { m_select_PlotAll = true; initOptVars(); CreateDXFFile( ); m_MsgBox->AppendText( wxT( "*****\n" ) ); } /*! * wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL */ void DIALOG_PLOT_SCHEMATIC_DXF::OnCancelClick( wxCommandEvent& event ) { initOptVars(); EndModal( 0 ); } void DIALOG_PLOT_SCHEMATIC_DXF::initOptVars() { m_plot_Sheet_Ref = m_Plot_Sheet_Ref_Ctrl->GetValue(); m_plotColorOpt = m_PlotColorCtrl->GetSelection() == 1 ? true : false; } void DIALOG_PLOT_SCHEMATIC_DXF::CreateDXFFile( ) { WinEDA_SchematicFrame* schframe = (WinEDA_SchematicFrame*) m_Parent; SCH_SCREEN* screen = schframe->GetScreen(); SCH_SCREEN* oldscreen = screen; SCH_SHEET_PATH* sheetpath, * oldsheetpath = schframe->GetSheet(); wxString PlotFileName; Ki_PageDescr* PlotSheet; wxPoint plot_offset; /* When printing all pages, the printed page is not the current page. * In complex hierarchies, we must setup references and others parameters * in the printed SCH_SCREEN * because in complex hierarchies a SCH_SCREEN (a schematic drawings) * is shared between many sheets */ SCH_SHEET_LIST SheetList( NULL ); sheetpath = SheetList.GetFirst(); SCH_SHEET_PATH list; while( true ) { if( m_select_PlotAll ) { if( sheetpath == NULL ) break; list.Clear(); if( list.BuildSheetPathInfoFromSheetPathValue( sheetpath->Path() ) ) { schframe->m_CurrentSheet = &list; schframe->m_CurrentSheet->UpdateAllScreenReferences(); schframe->SetSheetNumberAndCount(); screen = schframe->m_CurrentSheet->LastScreen(); ActiveScreen = screen; } else // Should not happen return; sheetpath = SheetList.GetNext(); } PlotSheet = screen->m_CurrentSheetDesc; double scale = 10; plot_offset.x = 0; plot_offset.y = 0; PlotFileName = schframe->GetUniqueFilenameForCurrentSheet() + wxT( ".dxf" ); PlotOneSheetDXF( PlotFileName, screen, PlotSheet, plot_offset, scale ); if( !m_select_PlotAll ) break; } ActiveScreen = oldscreen; schframe->m_CurrentSheet = oldsheetpath; schframe->m_CurrentSheet->UpdateAllScreenReferences(); schframe->SetSheetNumberAndCount(); } void DIALOG_PLOT_SCHEMATIC_DXF::PlotOneSheetDXF( const wxString& FileName, SCH_SCREEN* screen, Ki_PageDescr* sheet, wxPoint plot_offset, double scale ) { wxString msg; FILE* output_file = wxFopen( FileName, wxT( "wt" ) ); if( output_file == NULL ) { msg = wxT( "\n** " ); msg += _( "Unable to create " ) + FileName + wxT( " **\n" ); m_MsgBox->AppendText( msg ); return; } msg.Printf( _( "Plot: %s " ), GetChars( FileName ) ); m_MsgBox->AppendText( msg ); SetLocaleTo_C_standard(); DXF_PLOTTER* plotter = new DXF_PLOTTER(); plotter->set_paper_size( sheet ); plotter->set_viewport( plot_offset, scale, 0 ); plotter->set_color_mode( m_plotColorOpt ); /* Init : */ plotter->set_creator( wxT( "EESchema-DXF" ) ); plotter->set_filename( FileName ); plotter->start_plot( output_file ); if( m_plot_Sheet_Ref ) { plotter->set_color( BLACK ); m_Parent->PlotWorkSheet( plotter, screen ); } PlotDrawlist( plotter, screen->EEDrawList ); /* fin */ plotter->end_plot(); delete plotter; SetLocaleTo_Default(); m_MsgBox->AppendText( wxT( "Ok\n" ) ); } eeschema/dialogs/dialog_plot_schematic_DXF_base.cpp 0 → 100644 +86 −0 Original line number Original line Diff line number Diff line /////////////////////////////////////////////////////////////////////////// // C++ code generated with wxFormBuilder (version Sep 8 2010) // http://www.wxformbuilder.org/ // // PLEASE DO "NOT" EDIT THIS FILE! /////////////////////////////////////////////////////////////////////////// #include "dialog_plot_schematic_DXF_base.h" /////////////////////////////////////////////////////////////////////////// DIALOG_PLOT_SCHEMATIC_DXF_BASE::DIALOG_PLOT_SCHEMATIC_DXF_BASE( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxDialog( parent, id, title, pos, size, style ) { this->SetSizeHints( wxDefaultSize, wxDefaultSize ); wxBoxSizer* bmainSizer; bmainSizer = new wxBoxSizer( wxVERTICAL ); wxBoxSizer* bupperSizer; bupperSizer = new wxBoxSizer( wxHORIZONTAL ); bupperSizer->Add( 10, 10, 0, wxEXPAND, 5 ); wxBoxSizer* sbSizerMiddle; sbSizerMiddle = new wxBoxSizer( wxVERTICAL ); wxString m_PlotColorCtrlChoices[] = { _("B/W"), _("Color") }; int m_PlotColorCtrlNChoices = sizeof( m_PlotColorCtrlChoices ) / sizeof( wxString ); m_PlotColorCtrl = new wxRadioBox( this, wxID_ANY, _("Plot Mode:"), wxDefaultPosition, wxDefaultSize, m_PlotColorCtrlNChoices, m_PlotColorCtrlChoices, 1, wxRA_SPECIFY_COLS ); m_PlotColorCtrl->SetSelection( 0 ); sbSizerMiddle->Add( m_PlotColorCtrl, 0, wxALL|wxEXPAND, 5 ); m_Plot_Sheet_Ref_Ctrl = new wxCheckBox( this, wxID_ANY, _("Print page references"), wxDefaultPosition, wxDefaultSize, 0 ); m_Plot_Sheet_Ref_Ctrl->SetValue(true); sbSizerMiddle->Add( m_Plot_Sheet_Ref_Ctrl, 0, wxALL|wxEXPAND, 5 ); bupperSizer->Add( sbSizerMiddle, 1, wxEXPAND, 5 ); bupperSizer->Add( 10, 10, 0, wxEXPAND, 5 ); wxBoxSizer* bbuttonsSizer; bbuttonsSizer = new wxBoxSizer( wxVERTICAL ); m_buttonPlotPage = new wxButton( this, wxID_ANY, _("&Plot Page"), wxDefaultPosition, wxDefaultSize, 0 ); bbuttonsSizer->Add( m_buttonPlotPage, 0, wxALL|wxEXPAND, 5 ); m_buttonPlotAll = new wxButton( this, wxID_ANY, _("Plot A&LL"), wxDefaultPosition, wxDefaultSize, 0 ); bbuttonsSizer->Add( m_buttonPlotAll, 0, wxALL|wxEXPAND, 5 ); m_buttonClose = new wxButton( this, wxID_ANY, _("Close"), wxDefaultPosition, wxDefaultSize, 0 ); bbuttonsSizer->Add( m_buttonClose, 0, wxALL|wxEXPAND, 5 ); bupperSizer->Add( bbuttonsSizer, 1, wxALIGN_CENTER_VERTICAL, 5 ); bmainSizer->Add( bupperSizer, 0, wxEXPAND, 5 ); m_staticText1 = new wxStaticText( this, wxID_ANY, _("Messages :"), wxDefaultPosition, wxDefaultSize, 0 ); m_staticText1->Wrap( -1 ); bmainSizer->Add( m_staticText1, 0, wxTOP|wxRIGHT|wxLEFT, 5 ); m_MsgBox = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxTE_READONLY ); m_MsgBox->SetMinSize( wxSize( -1,150 ) ); bmainSizer->Add( m_MsgBox, 1, wxEXPAND|wxBOTTOM|wxRIGHT|wxLEFT, 5 ); this->SetSizer( bmainSizer ); this->Layout(); this->Centre( wxBOTH ); // Connect Events m_buttonPlotPage->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_PLOT_SCHEMATIC_DXF_BASE::OnPlotCurrent ), NULL, this ); m_buttonPlotAll->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_PLOT_SCHEMATIC_DXF_BASE::OnPlotAll ), NULL, this ); m_buttonClose->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_PLOT_SCHEMATIC_DXF_BASE::OnCancelClick ), NULL, this ); } DIALOG_PLOT_SCHEMATIC_DXF_BASE::~DIALOG_PLOT_SCHEMATIC_DXF_BASE() { // Disconnect Events m_buttonPlotPage->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_PLOT_SCHEMATIC_DXF_BASE::OnPlotCurrent ), NULL, this ); m_buttonPlotAll->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_PLOT_SCHEMATIC_DXF_BASE::OnPlotAll ), NULL, this ); m_buttonClose->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_PLOT_SCHEMATIC_DXF_BASE::OnCancelClick ), NULL, this ); } Loading
eeschema/CMakeLists.txt +2 −1 Original line number Original line Diff line number Diff line Loading @@ -37,6 +37,8 @@ set(EESCHEMA_SRCS database.cpp database.cpp delete.cpp delete.cpp delsheet.cpp delsheet.cpp dialogs/dialog_plot_schematic_DXF.cpp dialogs/dialog_plot_schematic_DXF_base.cpp dialogs/dialog_plot_schematic_HPGL.cpp dialogs/dialog_plot_schematic_HPGL.cpp dialogs/dialog_plot_schematic_HPGL_base.cpp dialogs/dialog_plot_schematic_HPGL_base.cpp dialogs/dialog_plot_schematic_PS.cpp dialogs/dialog_plot_schematic_PS.cpp Loading Loading @@ -120,7 +122,6 @@ set(EESCHEMA_SRCS operations_on_items_lists.cpp operations_on_items_lists.cpp pinedit.cpp pinedit.cpp plot.cpp plot.cpp plotdxf.cpp read_from_file_schematic_items_descriptions.cpp read_from_file_schematic_items_descriptions.cpp save_schemas.cpp save_schemas.cpp schedit.cpp schedit.cpp Loading
eeschema/dialogs/dialog_plot_schematic_DXF.cpp 0 → 100644 +249 −0 Original line number Original line Diff line number Diff line /** @file dialog_plot_schematic_DXF.cpp */ /* * This program source code file is part of KICAD, a free EDA CAD application. * * Copyright (C) 1992-2010 Lorenzo Marcantonio * Copyright (C) 1992-2010 Kicad Developers, see change_log.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 */ #include "fctsys.h" #include "gr_basic.h" #include "common.h" #include "plot_common.h" #include "confirm.h" #include "worksheet.h" #include "program.h" #include "general.h" #include "protos.h" #include "dialog_plot_schematic_DXF_base.h" class DIALOG_PLOT_SCHEMATIC_DXF : public DIALOG_PLOT_SCHEMATIC_DXF_BASE { private: WinEDA_SchematicFrame* m_Parent; public: /// Constructors DIALOG_PLOT_SCHEMATIC_DXF( WinEDA_SchematicFrame* parent ); private: static bool m_plotColorOpt; static int m_pageSizeSelect; static bool m_plot_Sheet_Ref; bool m_select_PlotAll; private: void OnPlotCurrent( wxCommandEvent& event ); void OnPlotAll( wxCommandEvent& event ); void OnCancelClick( wxCommandEvent& event ); void initDlg(); void initOptVars(); void CreateDXFFile(); void PlotOneSheetDXF( const wxString& FileName, SCH_SCREEN* screen, Ki_PageDescr* sheet, wxPoint plot_offset, double scale ); }; /* static members (static to remember last state): */ bool DIALOG_PLOT_SCHEMATIC_DXF::m_plotColorOpt = false; bool DIALOG_PLOT_SCHEMATIC_DXF::m_plot_Sheet_Ref = true; void WinEDA_SchematicFrame::ToPlot_DXF( wxCommandEvent& event ) { DIALOG_PLOT_SCHEMATIC_DXF DXF_frame( this ); DXF_frame.ShowModal(); } DIALOG_PLOT_SCHEMATIC_DXF::DIALOG_PLOT_SCHEMATIC_DXF( WinEDA_SchematicFrame* parent ) : DIALOG_PLOT_SCHEMATIC_DXF_BASE( parent ) { m_Parent = parent; m_select_PlotAll = false; initDlg(); GetSizer()->SetSizeHints( this ); Centre(); } void DIALOG_PLOT_SCHEMATIC_DXF::initDlg() { SetFocus(); // make the ESC work // Set options m_PlotColorCtrl->SetSelection( m_plotColorOpt ? 1 : 0 ); m_Plot_Sheet_Ref_Ctrl->SetValue( m_plot_Sheet_Ref ); } /* event handler for Plot Current button */ void DIALOG_PLOT_SCHEMATIC_DXF::OnPlotCurrent( wxCommandEvent& event ) { m_select_PlotAll = false; initOptVars(); CreateDXFFile( ); m_MsgBox->AppendText( wxT( "*****\n" ) ); } /* event handler for Plot ALL button */ void DIALOG_PLOT_SCHEMATIC_DXF::OnPlotAll( wxCommandEvent& event ) { m_select_PlotAll = true; initOptVars(); CreateDXFFile( ); m_MsgBox->AppendText( wxT( "*****\n" ) ); } /*! * wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL */ void DIALOG_PLOT_SCHEMATIC_DXF::OnCancelClick( wxCommandEvent& event ) { initOptVars(); EndModal( 0 ); } void DIALOG_PLOT_SCHEMATIC_DXF::initOptVars() { m_plot_Sheet_Ref = m_Plot_Sheet_Ref_Ctrl->GetValue(); m_plotColorOpt = m_PlotColorCtrl->GetSelection() == 1 ? true : false; } void DIALOG_PLOT_SCHEMATIC_DXF::CreateDXFFile( ) { WinEDA_SchematicFrame* schframe = (WinEDA_SchematicFrame*) m_Parent; SCH_SCREEN* screen = schframe->GetScreen(); SCH_SCREEN* oldscreen = screen; SCH_SHEET_PATH* sheetpath, * oldsheetpath = schframe->GetSheet(); wxString PlotFileName; Ki_PageDescr* PlotSheet; wxPoint plot_offset; /* When printing all pages, the printed page is not the current page. * In complex hierarchies, we must setup references and others parameters * in the printed SCH_SCREEN * because in complex hierarchies a SCH_SCREEN (a schematic drawings) * is shared between many sheets */ SCH_SHEET_LIST SheetList( NULL ); sheetpath = SheetList.GetFirst(); SCH_SHEET_PATH list; while( true ) { if( m_select_PlotAll ) { if( sheetpath == NULL ) break; list.Clear(); if( list.BuildSheetPathInfoFromSheetPathValue( sheetpath->Path() ) ) { schframe->m_CurrentSheet = &list; schframe->m_CurrentSheet->UpdateAllScreenReferences(); schframe->SetSheetNumberAndCount(); screen = schframe->m_CurrentSheet->LastScreen(); ActiveScreen = screen; } else // Should not happen return; sheetpath = SheetList.GetNext(); } PlotSheet = screen->m_CurrentSheetDesc; double scale = 10; plot_offset.x = 0; plot_offset.y = 0; PlotFileName = schframe->GetUniqueFilenameForCurrentSheet() + wxT( ".dxf" ); PlotOneSheetDXF( PlotFileName, screen, PlotSheet, plot_offset, scale ); if( !m_select_PlotAll ) break; } ActiveScreen = oldscreen; schframe->m_CurrentSheet = oldsheetpath; schframe->m_CurrentSheet->UpdateAllScreenReferences(); schframe->SetSheetNumberAndCount(); } void DIALOG_PLOT_SCHEMATIC_DXF::PlotOneSheetDXF( const wxString& FileName, SCH_SCREEN* screen, Ki_PageDescr* sheet, wxPoint plot_offset, double scale ) { wxString msg; FILE* output_file = wxFopen( FileName, wxT( "wt" ) ); if( output_file == NULL ) { msg = wxT( "\n** " ); msg += _( "Unable to create " ) + FileName + wxT( " **\n" ); m_MsgBox->AppendText( msg ); return; } msg.Printf( _( "Plot: %s " ), GetChars( FileName ) ); m_MsgBox->AppendText( msg ); SetLocaleTo_C_standard(); DXF_PLOTTER* plotter = new DXF_PLOTTER(); plotter->set_paper_size( sheet ); plotter->set_viewport( plot_offset, scale, 0 ); plotter->set_color_mode( m_plotColorOpt ); /* Init : */ plotter->set_creator( wxT( "EESchema-DXF" ) ); plotter->set_filename( FileName ); plotter->start_plot( output_file ); if( m_plot_Sheet_Ref ) { plotter->set_color( BLACK ); m_Parent->PlotWorkSheet( plotter, screen ); } PlotDrawlist( plotter, screen->EEDrawList ); /* fin */ plotter->end_plot(); delete plotter; SetLocaleTo_Default(); m_MsgBox->AppendText( wxT( "Ok\n" ) ); }
eeschema/dialogs/dialog_plot_schematic_DXF_base.cpp 0 → 100644 +86 −0 Original line number Original line Diff line number Diff line /////////////////////////////////////////////////////////////////////////// // C++ code generated with wxFormBuilder (version Sep 8 2010) // http://www.wxformbuilder.org/ // // PLEASE DO "NOT" EDIT THIS FILE! /////////////////////////////////////////////////////////////////////////// #include "dialog_plot_schematic_DXF_base.h" /////////////////////////////////////////////////////////////////////////// DIALOG_PLOT_SCHEMATIC_DXF_BASE::DIALOG_PLOT_SCHEMATIC_DXF_BASE( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxDialog( parent, id, title, pos, size, style ) { this->SetSizeHints( wxDefaultSize, wxDefaultSize ); wxBoxSizer* bmainSizer; bmainSizer = new wxBoxSizer( wxVERTICAL ); wxBoxSizer* bupperSizer; bupperSizer = new wxBoxSizer( wxHORIZONTAL ); bupperSizer->Add( 10, 10, 0, wxEXPAND, 5 ); wxBoxSizer* sbSizerMiddle; sbSizerMiddle = new wxBoxSizer( wxVERTICAL ); wxString m_PlotColorCtrlChoices[] = { _("B/W"), _("Color") }; int m_PlotColorCtrlNChoices = sizeof( m_PlotColorCtrlChoices ) / sizeof( wxString ); m_PlotColorCtrl = new wxRadioBox( this, wxID_ANY, _("Plot Mode:"), wxDefaultPosition, wxDefaultSize, m_PlotColorCtrlNChoices, m_PlotColorCtrlChoices, 1, wxRA_SPECIFY_COLS ); m_PlotColorCtrl->SetSelection( 0 ); sbSizerMiddle->Add( m_PlotColorCtrl, 0, wxALL|wxEXPAND, 5 ); m_Plot_Sheet_Ref_Ctrl = new wxCheckBox( this, wxID_ANY, _("Print page references"), wxDefaultPosition, wxDefaultSize, 0 ); m_Plot_Sheet_Ref_Ctrl->SetValue(true); sbSizerMiddle->Add( m_Plot_Sheet_Ref_Ctrl, 0, wxALL|wxEXPAND, 5 ); bupperSizer->Add( sbSizerMiddle, 1, wxEXPAND, 5 ); bupperSizer->Add( 10, 10, 0, wxEXPAND, 5 ); wxBoxSizer* bbuttonsSizer; bbuttonsSizer = new wxBoxSizer( wxVERTICAL ); m_buttonPlotPage = new wxButton( this, wxID_ANY, _("&Plot Page"), wxDefaultPosition, wxDefaultSize, 0 ); bbuttonsSizer->Add( m_buttonPlotPage, 0, wxALL|wxEXPAND, 5 ); m_buttonPlotAll = new wxButton( this, wxID_ANY, _("Plot A&LL"), wxDefaultPosition, wxDefaultSize, 0 ); bbuttonsSizer->Add( m_buttonPlotAll, 0, wxALL|wxEXPAND, 5 ); m_buttonClose = new wxButton( this, wxID_ANY, _("Close"), wxDefaultPosition, wxDefaultSize, 0 ); bbuttonsSizer->Add( m_buttonClose, 0, wxALL|wxEXPAND, 5 ); bupperSizer->Add( bbuttonsSizer, 1, wxALIGN_CENTER_VERTICAL, 5 ); bmainSizer->Add( bupperSizer, 0, wxEXPAND, 5 ); m_staticText1 = new wxStaticText( this, wxID_ANY, _("Messages :"), wxDefaultPosition, wxDefaultSize, 0 ); m_staticText1->Wrap( -1 ); bmainSizer->Add( m_staticText1, 0, wxTOP|wxRIGHT|wxLEFT, 5 ); m_MsgBox = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxTE_READONLY ); m_MsgBox->SetMinSize( wxSize( -1,150 ) ); bmainSizer->Add( m_MsgBox, 1, wxEXPAND|wxBOTTOM|wxRIGHT|wxLEFT, 5 ); this->SetSizer( bmainSizer ); this->Layout(); this->Centre( wxBOTH ); // Connect Events m_buttonPlotPage->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_PLOT_SCHEMATIC_DXF_BASE::OnPlotCurrent ), NULL, this ); m_buttonPlotAll->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_PLOT_SCHEMATIC_DXF_BASE::OnPlotAll ), NULL, this ); m_buttonClose->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_PLOT_SCHEMATIC_DXF_BASE::OnCancelClick ), NULL, this ); } DIALOG_PLOT_SCHEMATIC_DXF_BASE::~DIALOG_PLOT_SCHEMATIC_DXF_BASE() { // Disconnect Events m_buttonPlotPage->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_PLOT_SCHEMATIC_DXF_BASE::OnPlotCurrent ), NULL, this ); m_buttonPlotAll->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_PLOT_SCHEMATIC_DXF_BASE::OnPlotAll ), NULL, this ); m_buttonClose->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_PLOT_SCHEMATIC_DXF_BASE::OnCancelClick ), NULL, this ); }