2011-04-26 08:30:16 +00:00
|
|
|
/**
|
|
|
|
* @file select_layers_to_pcb.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SELECT_LAYERS_TO_PCB_H_
|
|
|
|
#define _SELECT_LAYERS_TO_PCB_H_
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialogs/dialog_layers_select_to_pcb_base.h>
|
2012-05-04 17:44:42 +00:00
|
|
|
#include <layers_id_colors_and_visibility.h>
|
2011-04-26 08:30:16 +00:00
|
|
|
|
|
|
|
/*
|
2012-05-04 17:44:42 +00:00
|
|
|
* This dialog shows the gerber files loaded, and allows user to choose
|
|
|
|
* equivalence tbetween gerber layers and pcb layers
|
2011-04-26 08:30:16 +00:00
|
|
|
*/
|
|
|
|
class LAYERS_MAP_DIALOG : public LAYERS_MAP_DIALOG_BASE
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
GERBVIEW_FRAME* m_Parent;
|
|
|
|
int m_itemsCount;
|
2012-05-04 17:44:42 +00:00
|
|
|
static int m_exportBoardCopperLayersCount;
|
2012-01-23 04:33:36 +00:00
|
|
|
wxFlexGridSizer* m_flexRightColumnBoxSizer; // An extra wxFlexGridSizer used
|
2011-04-26 08:30:16 +00:00
|
|
|
// when we have more than 16 gerber files loaded
|
2013-04-10 07:03:19 +00:00
|
|
|
LAYER_NUM m_layersLookUpTable[NB_GERBER_LAYERS]; // Indexes Gerber layers to PCB file layers
|
2011-04-26 08:30:16 +00:00
|
|
|
// the last value in table is the number of copper layers
|
2013-04-10 07:03:19 +00:00
|
|
|
int m_buttonTable[int(NB_GERBER_LAYERS)+1]; // Indexes buttons to Gerber layers
|
|
|
|
wxStaticText* m_layersList[int(NB_GERBER_LAYERS)+1]; // Indexes text strings to buttons
|
2011-04-26 08:30:16 +00:00
|
|
|
|
|
|
|
public: LAYERS_MAP_DIALOG( GERBVIEW_FRAME* parent );
|
|
|
|
~LAYERS_MAP_DIALOG() {};
|
|
|
|
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM * GetLayersLookUpTable() { return m_layersLookUpTable; }
|
2013-04-10 07:03:19 +00:00
|
|
|
static int GetCopperLayersCount() { return m_exportBoardCopperLayersCount; }
|
2011-04-26 08:30:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void initDialog();
|
|
|
|
void normalizeBrdLayersCount();
|
2012-01-23 04:33:36 +00:00
|
|
|
void OnBrdLayersCountSelection( wxCommandEvent& event );
|
2011-04-26 08:30:16 +00:00
|
|
|
void OnSelectLayer( wxCommandEvent& event );
|
|
|
|
void OnOkClick( wxCommandEvent& event );
|
|
|
|
void OnCancelClick( wxCommandEvent& event );
|
|
|
|
|
|
|
|
void OnStoreSetup( wxCommandEvent& event );
|
|
|
|
void OnGetSetup( wxCommandEvent& event );
|
2012-01-23 04:33:36 +00:00
|
|
|
void OnResetClick( wxCommandEvent& event );
|
2011-04-26 08:30:16 +00:00
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _SELECT_LAYERS_TO_PCB_H_
|