2007-08-10 19:14:51 +00:00
|
|
|
|
/* Set up the basic primitives for Layer control */
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
|
#include "gr_basic.h"
|
|
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
#include "pcbnew.h"
|
|
|
|
|
|
|
|
|
|
#include "protos.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Variables locales */
|
|
|
|
|
|
|
|
|
|
/* Fonctions locales: */
|
|
|
|
|
|
|
|
|
|
enum layer_sel_id {
|
2007-10-07 03:08:24 +00:00
|
|
|
|
ID_LAYER_SELECT_TOP = 1800,
|
2007-08-10 19:14:51 +00:00
|
|
|
|
ID_LAYER_SELECT_BOTTOM,
|
|
|
|
|
ID_LAYER_SELECT
|
2007-05-06 16:03:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************/
|
|
|
|
|
/* classe pour la frame de selection de layers */
|
|
|
|
|
/***********************************************/
|
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
class WinEDA_SelLayerFrame : public wxDialog
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
|
|
|
|
private:
|
2007-08-10 19:14:51 +00:00
|
|
|
|
WinEDA_BasePcbFrame* m_Parent;
|
|
|
|
|
wxRadioBox* m_LayerList;
|
2007-10-07 03:08:24 +00:00
|
|
|
|
int m_LayerId[NB_LAYERS + 1]; // One extra element for "(Deselect)" radiobutton
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
public:
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
|
|
|
|
// Constructor and destructor
|
|
|
|
|
WinEDA_SelLayerFrame( WinEDA_BasePcbFrame* parent, int default_layer,
|
2007-10-07 03:08:24 +00:00
|
|
|
|
int min_layer, int max_layer, bool null_layer );
|
2007-09-01 12:00:30 +00:00
|
|
|
|
~WinEDA_SelLayerFrame() { };
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2007-08-10 19:14:51 +00:00
|
|
|
|
void Sel_Layer( wxCommandEvent& event );
|
2008-03-04 04:22:27 +00:00
|
|
|
|
void OnCancelClick( wxCommandEvent& event );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
DECLARE_EVENT_TABLE()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
};
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/* Table des evenements pour WinEDA_SelLayerFrame */
|
2007-08-10 19:14:51 +00:00
|
|
|
|
BEGIN_EVENT_TABLE( WinEDA_SelLayerFrame, wxDialog )
|
2008-03-04 04:22:27 +00:00
|
|
|
|
EVT_BUTTON( wxID_OK, WinEDA_SelLayerFrame::Sel_Layer )
|
|
|
|
|
EVT_BUTTON( wxID_CANCEL, WinEDA_SelLayerFrame::OnCancelClick )
|
2007-10-07 03:08:24 +00:00
|
|
|
|
EVT_RADIOBOX( ID_LAYER_SELECT, WinEDA_SelLayerFrame::Sel_Layer )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-09-13 11:28:58 +00:00
|
|
|
|
/****************************************************************************************/
|
2007-10-07 03:08:24 +00:00
|
|
|
|
int WinEDA_BasePcbFrame::SelectLayer( int default_layer, int min_layer, int max_layer,
|
|
|
|
|
bool null_layer )
|
2007-09-13 11:28:58 +00:00
|
|
|
|
/****************************************************************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-11-20 10:08:07 +00:00
|
|
|
|
/** Install the dialog box for layer selection
|
2007-10-07 03:08:24 +00:00
|
|
|
|
* @param default_layer = Preselection (NB_LAYERS for "(Deselect)" layer)
|
2007-09-13 11:28:58 +00:00
|
|
|
|
* @param min_layer = min layer value (-1 if no min value)
|
2007-10-07 03:08:24 +00:00
|
|
|
|
* @param max_layer = max layer value (-1 if no max value)
|
|
|
|
|
* @param null_layer = display a "(Deselect)" radiobutton (when set to true)
|
|
|
|
|
* @return new layer value (NB_LAYERS when "(Deselect)" radiobutton selected),
|
|
|
|
|
* or -1 if cancelled
|
|
|
|
|
*
|
|
|
|
|
* Providing the option to also display a "(Deselect)" radiobutton makes the
|
|
|
|
|
* "Swap Layers" command (and GerbView's "Export to Pcbnew" command) more "user
|
|
|
|
|
* friendly", by permitting any layer to be "deselected" immediately after its
|
|
|
|
|
* corresponding radiobutton has been clicked on. (It would otherwise be
|
|
|
|
|
* necessary to first cancel the "Select Layer:" dialog box (invoked after a
|
|
|
|
|
* different radiobutton is clicked on) prior to then clicking on the "Deselect"
|
|
|
|
|
* button provided within the "Swap Layers:" or "Layer selection:" dialog box).
|
2007-08-10 19:14:51 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
|
int layer;
|
|
|
|
|
WinEDA_SelLayerFrame* frame =
|
2007-10-07 03:08:24 +00:00
|
|
|
|
new WinEDA_SelLayerFrame( this, default_layer, min_layer, max_layer, null_layer );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
|
layer = frame->ShowModal();
|
|
|
|
|
frame->Destroy();
|
2007-08-10 19:14:51 +00:00
|
|
|
|
return layer;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
WinEDA_SelLayerFrame::WinEDA_SelLayerFrame( WinEDA_BasePcbFrame* parent,
|
2007-10-07 03:08:24 +00:00
|
|
|
|
int default_layer, int min_layer,
|
|
|
|
|
int max_layer, bool null_layer ) :
|
|
|
|
|
wxDialog( parent, -1, _("Select Layer:"), wxPoint( -1, -1 ),
|
2007-08-10 19:14:51 +00:00
|
|
|
|
wxSize( 470, 250 ),
|
|
|
|
|
DIALOG_STYLE )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/***********************************************************************/
|
2007-10-07 03:08:24 +00:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The "OK" and "Cancel" buttons are positioned (in a horizontal line)
|
|
|
|
|
* beneath the "Layer" radiobox, unless that contains only one column of
|
|
|
|
|
* radiobuttons, in which case they are positioned (in a vertical line)
|
|
|
|
|
* to the right of that radiobox.
|
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
BOARD* board = parent->m_Pcb;
|
2007-08-10 19:14:51 +00:00
|
|
|
|
wxButton* Button;
|
2007-10-07 03:08:24 +00:00
|
|
|
|
int ii;
|
|
|
|
|
wxString LayerList[NB_LAYERS + 1]; // One extra element for "(Deselect)" radiobutton
|
2007-08-10 19:14:51 +00:00
|
|
|
|
int LayerCount, LayerSelect = -1;
|
|
|
|
|
m_Parent = parent;
|
|
|
|
|
SetFont( *g_DialogFont );
|
|
|
|
|
|
2007-09-13 11:28:58 +00:00
|
|
|
|
/* Build the layer list */
|
2007-08-10 19:14:51 +00:00
|
|
|
|
LayerCount = 0;
|
|
|
|
|
int Masque_Layer = g_TabAllCopperLayerMask[g_DesignSettings.m_CopperLayerCount - 1];
|
|
|
|
|
Masque_Layer += ALL_NO_CU_LAYERS;
|
|
|
|
|
for( ii = 0; ii < NB_LAYERS; ii++ )
|
|
|
|
|
{
|
|
|
|
|
m_LayerId[ii] = 0;
|
|
|
|
|
if( (g_TabOneLayerMask[ii] & Masque_Layer) )
|
|
|
|
|
{
|
|
|
|
|
if( min_layer > ii )
|
|
|
|
|
continue;
|
2007-10-07 03:08:24 +00:00
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
if( (max_layer >= 0) && (max_layer < ii) )
|
|
|
|
|
break;
|
2007-10-07 03:08:24 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
LayerList[LayerCount] = board->GetLayerName( ii );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
if( ii == default_layer )
|
|
|
|
|
LayerSelect = LayerCount;
|
2007-10-07 03:08:24 +00:00
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
m_LayerId[LayerCount] = ii;
|
|
|
|
|
LayerCount++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-10-07 03:08:24 +00:00
|
|
|
|
// When appropriate, also provide a "(Deselect)" radiobutton
|
|
|
|
|
if( null_layer )
|
|
|
|
|
{
|
|
|
|
|
LayerList[LayerCount] = _( "(Deselect)" );
|
|
|
|
|
if( NB_LAYERS == default_layer )
|
|
|
|
|
LayerSelect = LayerCount;
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
|
m_LayerId[LayerCount] = NB_LAYERS;
|
|
|
|
|
LayerCount++;
|
|
|
|
|
}
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
|
m_LayerList = new wxRadioBox( this, ID_LAYER_SELECT, _("Layer"),
|
|
|
|
|
wxPoint( -1, -1 ), wxSize( -1, -1 ), LayerCount, LayerList,
|
2007-08-10 19:14:51 +00:00
|
|
|
|
(LayerCount < 8) ? LayerCount : 8, wxRA_SPECIFY_ROWS );
|
|
|
|
|
|
|
|
|
|
if( LayerSelect >= 0 )
|
|
|
|
|
m_LayerList->SetSelection( LayerSelect );
|
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
|
wxBoxSizer* FrameBoxSizer = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
|
SetSizer(FrameBoxSizer);
|
|
|
|
|
FrameBoxSizer->Add(m_LayerList, 0, wxALIGN_TOP|wxALL, 5);
|
|
|
|
|
wxBoxSizer* ButtonBoxSizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
|
FrameBoxSizer->Add(ButtonBoxSizer, 0, wxALIGN_BOTTOM|wxALL, 0);
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
|
Button = new wxButton( this, wxID_OK, _("OK") );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
Button->SetForegroundColour( *wxRED );
|
2007-10-07 03:08:24 +00:00
|
|
|
|
ButtonBoxSizer->Add(Button, 0, wxGROW|wxALL, 5);
|
|
|
|
|
|
|
|
|
|
Button = new wxButton( this, wxID_CANCEL, _("Cancel") );
|
|
|
|
|
Button->SetForegroundColour( *wxBLUE );
|
|
|
|
|
ButtonBoxSizer->Add(Button, 0, wxGROW|wxALL, 5);
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
|
if( GetSizer() )
|
|
|
|
|
{
|
|
|
|
|
GetSizer()->SetSizeHints(this);
|
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
void WinEDA_SelLayerFrame::Sel_Layer( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/***************************************************************/
|
|
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
|
int ii = m_LayerId[m_LayerList->GetSelection()];
|
|
|
|
|
|
|
|
|
|
EndModal( ii );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/***************************************************************/
|
2007-10-07 03:08:24 +00:00
|
|
|
|
void WinEDA_SelLayerFrame::OnCancelClick( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/***************************************************************/
|
|
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
|
EndModal( -1 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************/
|
|
|
|
|
/* classe pour la frame de selection de paires de layers */
|
|
|
|
|
/*********************************************************/
|
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
class WinEDA_SelLayerPairFrame : public wxDialog
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
|
|
|
|
private:
|
2007-08-10 19:14:51 +00:00
|
|
|
|
WinEDA_BasePcbFrame* m_Parent;
|
|
|
|
|
wxRadioBox* m_LayerListTOP;
|
|
|
|
|
wxRadioBox* m_LayerListBOTTOM;
|
|
|
|
|
int m_LayerId[NB_COPPER_LAYERS];
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
// Constructor and destructor
|
|
|
|
|
WinEDA_SelLayerPairFrame( WinEDA_BasePcbFrame* parent );
|
2007-09-01 12:00:30 +00:00
|
|
|
|
~WinEDA_SelLayerPairFrame() { };
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2008-03-04 04:22:27 +00:00
|
|
|
|
void OnOkClick( wxCommandEvent& event );
|
|
|
|
|
void OnCancelClick( wxCommandEvent& event );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
DECLARE_EVENT_TABLE()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
};
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/* Table des evenements pour WinEDA_SelLayerPairFrame */
|
2007-08-10 19:14:51 +00:00
|
|
|
|
BEGIN_EVENT_TABLE( WinEDA_SelLayerPairFrame, wxDialog )
|
2008-03-04 04:22:27 +00:00
|
|
|
|
EVT_BUTTON( wxID_OK, WinEDA_SelLayerPairFrame::OnOkClick )
|
|
|
|
|
EVT_BUTTON( wxID_CANCEL, WinEDA_SelLayerPairFrame::OnCancelClick )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/***********************************************/
|
2007-09-01 12:00:30 +00:00
|
|
|
|
void WinEDA_BasePcbFrame::SelectLayerPair()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/***********************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/* Affiche une double liste de layers cuivre pour selection d'une paire de layers
|
2007-08-10 19:14:51 +00:00
|
|
|
|
* pour autorutage, vias...
|
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2007-10-07 03:08:24 +00:00
|
|
|
|
// Check whether more than one copper layer has been enabled for the
|
|
|
|
|
// current PCB file, as Layer Pairs can only meaningfully be defined
|
|
|
|
|
// within PCB files which contain at least two copper layers.
|
|
|
|
|
if( m_Pcb->m_BoardSettings->m_CopperLayerCount < 2 )
|
|
|
|
|
{
|
|
|
|
|
wxString InfoMsg;
|
|
|
|
|
InfoMsg = _( "Less than two copper layers are being used." );
|
|
|
|
|
InfoMsg << wxT( "\n" ) << _( "Hence Layer Pairs cannot be specified." );
|
|
|
|
|
DisplayInfo( this, InfoMsg );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
WinEDA_SelLayerPairFrame* frame =
|
|
|
|
|
new WinEDA_SelLayerPairFrame( this );
|
|
|
|
|
|
2007-10-12 13:56:22 +00:00
|
|
|
|
int result = frame->ShowModal();
|
2007-10-07 03:08:24 +00:00
|
|
|
|
frame->Destroy();
|
2007-08-10 19:14:51 +00:00
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
SetToolbars();
|
2007-10-12 13:56:22 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
// if user changed colors and we are in high contrast mode, then redraw
|
|
|
|
|
// because the PAD_SMD pads may change color.
|
2007-10-12 13:56:22 +00:00
|
|
|
|
if( result >= 0 && DisplayOpt.ContrastModeDisplay )
|
|
|
|
|
{
|
|
|
|
|
ReDrawPanel();
|
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
WinEDA_SelLayerPairFrame::WinEDA_SelLayerPairFrame( WinEDA_BasePcbFrame* parent ) :
|
2007-10-07 03:08:24 +00:00
|
|
|
|
wxDialog( parent, -1, _("Select Layer Pair:"), wxPoint( -1, -1 ),
|
2007-08-10 19:14:51 +00:00
|
|
|
|
wxSize( 470, 250 ), DIALOG_STYLE )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
BOARD* board = parent->m_Pcb;
|
2007-08-10 19:14:51 +00:00
|
|
|
|
wxButton* Button;
|
|
|
|
|
int ii, LayerCount;
|
|
|
|
|
wxString LayerList[NB_COPPER_LAYERS];
|
|
|
|
|
int LayerTopSelect = 0, LayerBottomSelect = 0;
|
|
|
|
|
|
|
|
|
|
m_Parent = parent;
|
|
|
|
|
SetFont( *g_DialogFont );
|
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
PCB_SCREEN* screen = (PCB_SCREEN*) m_Parent->GetScreen();
|
2007-08-10 19:14:51 +00:00
|
|
|
|
/* Construction de la liste des couches autoris<69>s */
|
|
|
|
|
int Masque_Layer = g_TabAllCopperLayerMask[g_DesignSettings.m_CopperLayerCount - 1];
|
|
|
|
|
Masque_Layer += ALL_NO_CU_LAYERS;
|
|
|
|
|
for( ii = 0, LayerCount = 0; ii < NB_COPPER_LAYERS; ii++ )
|
|
|
|
|
{
|
|
|
|
|
m_LayerId[ii] = 0;
|
|
|
|
|
if( (g_TabOneLayerMask[ii] & Masque_Layer) )
|
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
LayerList[LayerCount] = board->GetLayerName( ii );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
if( ii == screen->m_Route_Layer_TOP )
|
|
|
|
|
LayerTopSelect = LayerCount;
|
|
|
|
|
if( ii == screen->m_Route_Layer_BOTTOM )
|
|
|
|
|
LayerBottomSelect = LayerCount;
|
|
|
|
|
m_LayerId[LayerCount] = ii;
|
|
|
|
|
LayerCount++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
|
m_LayerListTOP = new wxRadioBox( this, ID_LAYER_SELECT_TOP, _("Top Layer"),
|
|
|
|
|
wxPoint( -1, -1 ), wxSize( -1, -1 ), LayerCount, LayerList,
|
2007-08-10 19:14:51 +00:00
|
|
|
|
(LayerCount < 8) ? LayerCount : 8, wxRA_SPECIFY_ROWS );
|
|
|
|
|
m_LayerListTOP->SetSelection( LayerTopSelect );
|
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
|
m_LayerListBOTTOM = new wxRadioBox( this, ID_LAYER_SELECT_BOTTOM, _("Bottom Layer"),
|
|
|
|
|
wxPoint( -1, -1 ), wxSize( -1, -1 ), LayerCount, LayerList,
|
2007-08-10 19:14:51 +00:00
|
|
|
|
(LayerCount < 8) ? LayerCount : 8, wxRA_SPECIFY_ROWS );
|
|
|
|
|
m_LayerListBOTTOM->SetSelection( LayerBottomSelect );
|
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
|
wxBoxSizer* FrameBoxSizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
|
SetSizer(FrameBoxSizer);
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
|
wxBoxSizer* RadioBoxSizer = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
|
FrameBoxSizer->Add(RadioBoxSizer, 0, wxALIGN_LEFT|wxALL, 0);
|
|
|
|
|
|
|
|
|
|
wxBoxSizer* ButtonBoxSizer = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
|
FrameBoxSizer->Add(ButtonBoxSizer, 0, wxALIGN_RIGHT|wxALL, 0);
|
|
|
|
|
|
|
|
|
|
RadioBoxSizer->Add(m_LayerListTOP, 0, wxALIGN_TOP|wxALL, 5);
|
|
|
|
|
RadioBoxSizer->Add(m_LayerListBOTTOM, 0, wxALIGN_TOP|wxALL, 5);
|
|
|
|
|
|
|
|
|
|
Button = new wxButton( this, wxID_OK, _("OK") );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
Button->SetForegroundColour( *wxRED );
|
2007-10-07 03:08:24 +00:00
|
|
|
|
ButtonBoxSizer->Add(Button, 0, wxGROW|wxALL, 5);
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
|
Button = new wxButton( this, wxID_CANCEL, _("Cancel") );
|
|
|
|
|
Button->SetForegroundColour( *wxBLUE );
|
|
|
|
|
ButtonBoxSizer->Add(Button, 0, wxGROW|wxALL, 5);
|
|
|
|
|
|
|
|
|
|
if( GetSizer() )
|
|
|
|
|
{
|
|
|
|
|
GetSizer()->SetSizeHints(this);
|
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************/
|
2007-10-07 03:08:24 +00:00
|
|
|
|
void WinEDA_SelLayerPairFrame::OnOkClick( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/***************************************************************/
|
|
|
|
|
{
|
2008-04-30 11:52:34 +00:00
|
|
|
|
// select the same layer for top and bottom is allowed (normal in some boards)
|
|
|
|
|
// but could be a mistake. So display an info message
|
2007-10-07 03:08:24 +00:00
|
|
|
|
if( m_LayerId[m_LayerListTOP->GetSelection()]
|
|
|
|
|
== m_LayerId[m_LayerListBOTTOM->GetSelection()] )
|
2008-04-30 11:52:34 +00:00
|
|
|
|
DisplayInfo( this, _( "Warning: The Top Layer and Bottom Layer are same." ) );
|
2007-10-07 03:08:24 +00:00
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
PCB_SCREEN* screen = (PCB_SCREEN*) m_Parent->GetScreen();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
screen->m_Route_Layer_TOP = m_LayerId[m_LayerListTOP->GetSelection()];
|
|
|
|
|
screen->m_Route_Layer_BOTTOM = m_LayerId[m_LayerListBOTTOM->GetSelection()];
|
2007-10-07 03:08:24 +00:00
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
EndModal( 0 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/***************************************************************/
|
2007-10-07 03:08:24 +00:00
|
|
|
|
void WinEDA_SelLayerPairFrame::OnCancelClick( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/***************************************************************/
|
|
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
|
EndModal( -1 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|