2007-06-05 12:10:51 +00:00
|
|
|
/* Set up the basic primitives for Layer control */
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "gr_basic.h"
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "gerbview.h"
|
|
|
|
#include "pcbnew.h"
|
|
|
|
|
|
|
|
#include "protos.h"
|
|
|
|
|
|
|
|
/* Variables locales */
|
2007-10-07 03:08:24 +00:00
|
|
|
const int BUTT_SIZE_X = 20;
|
|
|
|
const int BUTT_SIZE_Y = 16;
|
|
|
|
|
|
|
|
const int COLOR_COUNT = 37; // 37 = 32 (layers) + 2 (others) + 3 (headings)
|
|
|
|
// Is there a better way to determine how many elements CurrentColor requires?
|
|
|
|
int CurrentColor[COLOR_COUNT]; // Holds color for each layer while dialog box open
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
/* Fonctions locales: */
|
|
|
|
|
|
|
|
/* Macro utile : */
|
|
|
|
#define ADR(numlayer) &g_DesignSettings.m_LayerColor[(numlayer)]
|
|
|
|
|
|
|
|
enum col_sel_id {
|
|
|
|
ID_COLOR_RESET_SHOW_LAYER_ON = 1800,
|
|
|
|
ID_COLOR_RESET_SHOW_LAYER_OFF,
|
|
|
|
ID_COLOR_CHECKBOX_ONOFF,
|
|
|
|
ID_COLOR_SETUP
|
|
|
|
};
|
|
|
|
|
2007-09-13 09:24:43 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/**********************************/
|
|
|
|
/* Liste des menus de Menu_Layers */
|
|
|
|
/**********************************/
|
|
|
|
struct ColorButton
|
|
|
|
{
|
|
|
|
wxString m_Name;
|
2007-10-07 03:08:24 +00:00
|
|
|
int * m_Color; // Pointeur sur la variable couleur
|
2007-06-05 12:10:51 +00:00
|
|
|
bool m_NoDisplayIsColor; // TRUE si bit ITEM_NON_VISIBLE de la variable Color
|
2007-10-07 03:08:24 +00:00
|
|
|
bool * m_NoDisplay; // Pointeur sur la variable Display on/off si ce
|
|
|
|
// n'est pas la var Color
|
2007-06-05 12:10:51 +00:00
|
|
|
int m_Id;
|
2007-10-07 03:08:24 +00:00
|
|
|
wxBitmapButton * m_Button; // Button to display/change color assigned to this layer
|
2007-06-05 12:10:51 +00:00
|
|
|
int m_State;
|
|
|
|
wxCheckBox * m_CheckBox; // Option Display ON/OFF
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "set_color.h" /* include description and list of tools and buttons */
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************/
|
|
|
|
/* classe derivee pour la frame de Configuration des couleurs*/
|
|
|
|
/*************************************************************/
|
|
|
|
|
|
|
|
class WinEDA_SetColorsFrame: public wxDialog
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
WinEDA_DrawFrame *m_Parent;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Constructor and destructor
|
|
|
|
WinEDA_SetColorsFrame(WinEDA_DrawFrame *parent, const wxPoint& framepos);
|
2007-09-13 11:55:46 +00:00
|
|
|
~WinEDA_SetColorsFrame() {};
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
private:
|
2007-10-10 21:45:22 +00:00
|
|
|
void SetColor( wxCommandEvent& event );
|
|
|
|
void OnOkClick( wxCommandEvent& event );
|
|
|
|
void OnCancelClick( wxCommandEvent& event );
|
|
|
|
void OnApplyClick( wxCommandEvent& event );
|
2007-10-07 03:08:24 +00:00
|
|
|
void UpdateLayerSettings();
|
2007-10-10 21:45:22 +00:00
|
|
|
void ResetDisplayLayersCu( wxCommandEvent& event );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-10 21:45:22 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
2007-10-10 21:45:22 +00:00
|
|
|
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/* Table des evenements pour WinEDA_SetColorsFrame */
|
2007-10-10 21:45:22 +00:00
|
|
|
BEGIN_EVENT_TABLE( WinEDA_SetColorsFrame, wxDialog )
|
|
|
|
EVT_BUTTON( ID_COLOR_RESET_SHOW_LAYER_OFF, WinEDA_SetColorsFrame::ResetDisplayLayersCu )
|
|
|
|
EVT_BUTTON( ID_COLOR_RESET_SHOW_LAYER_ON, WinEDA_SetColorsFrame::ResetDisplayLayersCu )
|
|
|
|
EVT_BUTTON( wxID_OK, WinEDA_SetColorsFrame::OnOkClick )
|
|
|
|
EVT_BUTTON( wxID_CANCEL, WinEDA_SetColorsFrame::OnCancelClick )
|
|
|
|
EVT_BUTTON( wxID_APPLY, WinEDA_SetColorsFrame::OnApplyClick )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 1, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 2, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 3, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 4, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 5, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 6, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 7, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 8, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 9, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 10, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 11, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 12, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 13, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 14, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 15, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 16, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 17, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 18, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 19, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 20, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 21, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 22, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 23, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 24, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 25, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 26, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 27, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 28, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 29, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 30, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 31, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 32, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 33, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 34, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 35, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
EVT_BUTTON( ID_COLOR_SETUP + 36, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
// EVT_BUTTON( ID_COLOR_SETUP + 37, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
// EVT_BUTTON( ID_COLOR_SETUP + 38, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
// EVT_BUTTON( ID_COLOR_SETUP + 39, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
// EVT_BUTTON( ID_COLOR_SETUP + 40, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
// EVT_BUTTON( ID_COLOR_SETUP + 41, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
// EVT_BUTTON( ID_COLOR_SETUP + 42, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
// EVT_BUTTON( ID_COLOR_SETUP + 43, WinEDA_SetColorsFrame::SetColor )
|
|
|
|
// EVT_BUTTON( ID_COLOR_SETUP + 44, WinEDA_SetColorsFrame::SetColor )
|
2007-06-05 12:10:51 +00:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
/**************************************************************/
|
2007-10-07 03:08:24 +00:00
|
|
|
/* void DisplayColorSetupFrame(WinEDA_DrawFrame * parent, */
|
2007-06-05 12:10:51 +00:00
|
|
|
/* const wxPoint & pos) */
|
|
|
|
/**************************************************************/
|
|
|
|
|
|
|
|
void DisplayColorSetupFrame(WinEDA_DrawFrame * parent,
|
|
|
|
const wxPoint & framepos)
|
|
|
|
{
|
|
|
|
WinEDA_SetColorsFrame * frame =
|
|
|
|
new WinEDA_SetColorsFrame(parent, framepos);
|
2007-09-13 09:24:43 +00:00
|
|
|
frame->ShowModal();
|
|
|
|
frame->Destroy();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************/
|
|
|
|
WinEDA_SetColorsFrame::WinEDA_SetColorsFrame(WinEDA_DrawFrame *parent,
|
|
|
|
const wxPoint& framepos):
|
2007-10-07 03:08:24 +00:00
|
|
|
wxDialog(parent, -1, _("GerbView Layer Colors:"), framepos,
|
2007-06-05 12:10:51 +00:00
|
|
|
wxSize(390, 380),
|
2007-10-07 03:08:24 +00:00
|
|
|
wxDEFAULT_DIALOG_STYLE|wxFRAME_FLOAT_ON_PARENT|
|
|
|
|
MAYBE_RESIZE_BORDER )
|
2007-06-05 12:10:51 +00:00
|
|
|
/**********************************************************************/
|
|
|
|
{
|
|
|
|
wxBitmapButton * ButtonB;
|
|
|
|
int ii, butt_ID, buttcolor;
|
|
|
|
wxString msg;
|
|
|
|
wxStaticText * text;
|
|
|
|
wxBoxSizer * CurrBoxSizer = NULL;
|
2007-10-07 03:08:24 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
m_Parent = parent;
|
|
|
|
SetFont(*g_DialogFont);
|
|
|
|
|
|
|
|
wxBoxSizer * MainBoxSizer = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
SetSizer(MainBoxSizer);
|
|
|
|
|
|
|
|
for ( ii = 0; laytool_list[ii] != NULL; ii++ )
|
|
|
|
{
|
|
|
|
if( ! CurrBoxSizer || ! laytool_list[ii]->m_Color && ! laytool_list[ii]->m_NoDisplay )
|
|
|
|
{
|
|
|
|
CurrBoxSizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
MainBoxSizer->Add(CurrBoxSizer, 0, wxGROW|wxALL, 5);
|
|
|
|
msg = wxGetTranslation(laytool_list[ii]->m_Name.GetData());
|
2007-10-07 03:08:24 +00:00
|
|
|
text = new wxStaticText( this, -1, msg );
|
2007-06-05 12:10:51 +00:00
|
|
|
CurrBoxSizer->Add(text, 0, wxGROW|wxALL, 5);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( laytool_list[ii]->m_Id == 0 )
|
|
|
|
laytool_list[ii]->m_Id = ID_COLOR_SETUP + ii;
|
|
|
|
butt_ID = laytool_list[ii]->m_Id;
|
|
|
|
|
|
|
|
wxBoxSizer * LineBoxSizer = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
wxCheckBox * Checkb;
|
|
|
|
CurrBoxSizer->Add(LineBoxSizer, 0, wxGROW|wxALL, 0);
|
2007-10-07 03:08:24 +00:00
|
|
|
laytool_list[ii]->m_CheckBox = Checkb = new wxCheckBox( this,
|
2007-06-05 12:10:51 +00:00
|
|
|
ID_COLOR_CHECKBOX_ONOFF, wxEmptyString );
|
|
|
|
LineBoxSizer->Add(Checkb, 0, wxGROW|wxALL, 1);
|
|
|
|
|
|
|
|
if ( laytool_list[ii]->m_NoDisplayIsColor )
|
|
|
|
{
|
|
|
|
if ( *laytool_list[ii]->m_Color & ITEM_NOT_SHOW )
|
|
|
|
laytool_list[ii]->m_CheckBox->SetValue(FALSE);
|
2007-09-13 09:24:43 +00:00
|
|
|
else
|
|
|
|
laytool_list[ii]->m_CheckBox->SetValue(TRUE);
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
else if ( laytool_list[ii]->m_NoDisplay )
|
|
|
|
laytool_list[ii]->m_CheckBox->SetValue(*laytool_list[ii]->m_NoDisplay);
|
|
|
|
|
|
|
|
if( laytool_list[ii]->m_Color )
|
|
|
|
{
|
2007-10-07 03:08:24 +00:00
|
|
|
wxMemoryDC iconDC;
|
|
|
|
wxBitmap ButtBitmap( BUTT_SIZE_X, BUTT_SIZE_Y );
|
2007-06-05 12:10:51 +00:00
|
|
|
iconDC.SelectObject( ButtBitmap );
|
|
|
|
buttcolor = *laytool_list[ii]->m_Color & MASKCOLOR;
|
2007-10-07 03:08:24 +00:00
|
|
|
CurrentColor[ii] = buttcolor;
|
2007-06-05 12:10:51 +00:00
|
|
|
wxBrush Brush;
|
|
|
|
iconDC.SelectObject( ButtBitmap );
|
|
|
|
iconDC.SetPen(*wxBLACK_PEN);
|
|
|
|
Brush.SetColour(
|
|
|
|
ColorRefs[buttcolor].m_Red,
|
|
|
|
ColorRefs[buttcolor].m_Green,
|
|
|
|
ColorRefs[buttcolor].m_Blue
|
|
|
|
);
|
|
|
|
Brush.SetStyle(wxSOLID);
|
|
|
|
|
|
|
|
iconDC.SetBrush(Brush);
|
2007-10-07 03:08:24 +00:00
|
|
|
iconDC.DrawRectangle(0, 0, BUTT_SIZE_X, BUTT_SIZE_Y);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
ButtonB = new wxBitmapButton( this, butt_ID,
|
2007-06-05 12:10:51 +00:00
|
|
|
ButtBitmap, wxDefaultPosition,
|
2007-10-07 03:08:24 +00:00
|
|
|
wxSize(BUTT_SIZE_X, BUTT_SIZE_Y) );
|
2007-06-05 12:10:51 +00:00
|
|
|
laytool_list[ii]->m_Button = ButtonB;
|
|
|
|
LineBoxSizer->Add(ButtonB, 0, wxALIGN_CENTER_VERTICAL|wxALL, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
msg = wxGetTranslation(laytool_list[ii]->m_Name.GetData());
|
2007-10-07 03:08:24 +00:00
|
|
|
text = new wxStaticText( this, -1, msg );
|
2007-06-05 12:10:51 +00:00
|
|
|
LineBoxSizer->Add(text, 0, wxGROW|wxALL, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
CurrBoxSizer->AddSpacer(20);
|
2007-10-07 03:08:24 +00:00
|
|
|
wxButton * Button = new wxButton( this, ID_COLOR_RESET_SHOW_LAYER_ON,
|
|
|
|
_("Show All") );
|
2007-06-05 12:10:51 +00:00
|
|
|
Button->SetForegroundColour(*wxBLUE);
|
2007-10-07 03:08:24 +00:00
|
|
|
CurrBoxSizer->Add(Button, 0, wxALIGN_TOP|wxGROW|wxALL, 5);
|
|
|
|
|
|
|
|
Button = new wxButton( this, ID_COLOR_RESET_SHOW_LAYER_OFF,
|
|
|
|
_("Show None") );
|
|
|
|
Button->SetForegroundColour(*wxRED);
|
|
|
|
CurrBoxSizer->Add(Button, 0, wxALIGN_TOP|wxGROW|wxALL, 5);
|
|
|
|
|
|
|
|
// Following stretch spacer ensures "OK", "Cancel", and "Apply"
|
|
|
|
// buttons will be located at lower right corner of dialog box
|
|
|
|
CurrBoxSizer->AddStretchSpacer();
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
Button = new wxButton( this, wxID_OK, _("OK") );
|
2007-06-05 12:10:51 +00:00
|
|
|
Button->SetForegroundColour(*wxRED);
|
2007-10-07 03:08:24 +00:00
|
|
|
CurrBoxSizer->Add(Button, 0, wxALIGN_BOTTOM|wxALIGN_RIGHT|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
Button = new wxButton( this, wxID_CANCEL, _("Cancel") );
|
|
|
|
Button->SetForegroundColour(*wxBLUE);
|
|
|
|
CurrBoxSizer->Add(Button, 0, wxALIGN_BOTTOM|wxALIGN_RIGHT|wxALL, 5);
|
|
|
|
|
|
|
|
Button = new wxButton( this, wxID_APPLY, _("Apply") );
|
|
|
|
CurrBoxSizer->Add(Button, 0, wxALIGN_BOTTOM|wxALIGN_RIGHT|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
GetSizer()->Fit(this);
|
2007-06-05 12:10:51 +00:00
|
|
|
GetSizer()->SetSizeHints(this);
|
|
|
|
}
|
|
|
|
|
2007-09-13 09:24:43 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*******************************************************************/
|
2007-10-07 03:08:24 +00:00
|
|
|
void WinEDA_SetColorsFrame::OnOkClick(wxCommandEvent& WXUNUSED(event))
|
|
|
|
/*******************************************************************/
|
|
|
|
{
|
|
|
|
UpdateLayerSettings();
|
2007-10-08 03:16:10 +00:00
|
|
|
m_Parent->ReDrawPanel();
|
2007-10-07 03:08:24 +00:00
|
|
|
EndModal( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************/
|
|
|
|
void WinEDA_SetColorsFrame::OnCancelClick(wxCommandEvent& WXUNUSED(event))
|
|
|
|
/*******************************************************************/
|
|
|
|
{
|
|
|
|
EndModal( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************/
|
|
|
|
void WinEDA_SetColorsFrame::OnApplyClick(wxCommandEvent& WXUNUSED(event))
|
2007-06-05 12:10:51 +00:00
|
|
|
/*******************************************************************/
|
|
|
|
{
|
2007-10-07 03:08:24 +00:00
|
|
|
UpdateLayerSettings();
|
|
|
|
m_Parent->ReDrawPanel();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************/
|
|
|
|
void WinEDA_SetColorsFrame::SetColor(wxCommandEvent& event)
|
|
|
|
/***********************************************************/
|
|
|
|
{
|
|
|
|
int ii;
|
|
|
|
int id = event.GetId();
|
|
|
|
int color;
|
|
|
|
|
2007-09-13 09:24:43 +00:00
|
|
|
color = DisplayColorFrame( this,
|
2007-10-07 03:08:24 +00:00
|
|
|
CurrentColor[id - ID_COLOR_SETUP] );
|
2007-09-13 09:24:43 +00:00
|
|
|
if ( color < 0 )
|
|
|
|
return;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
for ( ii = 0; laytool_list[ii] != NULL; ii++ )
|
2007-09-13 09:24:43 +00:00
|
|
|
{
|
|
|
|
if( laytool_list[ii]->m_Id != id )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( laytool_list[ii]->m_Color == NULL )
|
|
|
|
continue;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
if( CurrentColor[ii] == color )
|
2007-09-13 09:24:43 +00:00
|
|
|
break;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
CurrentColor[ii] = color;
|
2007-06-05 12:10:51 +00:00
|
|
|
wxMemoryDC iconDC;
|
|
|
|
|
|
|
|
wxBitmapButton * Button = laytool_list[ii]->m_Button;
|
|
|
|
|
|
|
|
wxBitmap ButtBitmap = Button->GetBitmapLabel();
|
|
|
|
iconDC.SelectObject( ButtBitmap );
|
2007-10-07 03:08:24 +00:00
|
|
|
int buttcolor = CurrentColor[ii];
|
2007-06-05 12:10:51 +00:00
|
|
|
wxBrush Brush;
|
|
|
|
iconDC.SelectObject( ButtBitmap );
|
|
|
|
iconDC.SetPen(*wxBLACK_PEN);
|
|
|
|
Brush.SetColour(
|
|
|
|
ColorRefs[buttcolor].m_Red,
|
|
|
|
ColorRefs[buttcolor].m_Green,
|
|
|
|
ColorRefs[buttcolor].m_Blue
|
|
|
|
);
|
|
|
|
Brush.SetStyle(wxSOLID);
|
|
|
|
|
|
|
|
iconDC.SetBrush(Brush);
|
2007-10-07 03:08:24 +00:00
|
|
|
iconDC.DrawRectangle(0, 0, BUTT_SIZE_X, BUTT_SIZE_Y);
|
2007-06-05 12:10:51 +00:00
|
|
|
Button->SetBitmapLabel(ButtBitmap);
|
2007-09-13 09:24:43 +00:00
|
|
|
}
|
2007-10-07 03:08:24 +00:00
|
|
|
Refresh( FALSE );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************/
|
2007-10-07 03:08:24 +00:00
|
|
|
void WinEDA_SetColorsFrame::UpdateLayerSettings()
|
2007-06-05 12:10:51 +00:00
|
|
|
/******************************************************************/
|
|
|
|
{
|
2007-10-07 03:08:24 +00:00
|
|
|
for( int ii = 0; laytool_list[ii] != NULL; ii++ )
|
2007-09-13 09:24:43 +00:00
|
|
|
{
|
2007-06-05 12:10:51 +00:00
|
|
|
if ( ! laytool_list[ii]->m_NoDisplayIsColor &&
|
2007-09-13 09:24:43 +00:00
|
|
|
(laytool_list[ii]->m_NoDisplay == NULL) )
|
|
|
|
continue;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
if ( laytool_list[ii]->m_NoDisplayIsColor )
|
2007-09-13 09:24:43 +00:00
|
|
|
{
|
2007-06-05 12:10:51 +00:00
|
|
|
if ( laytool_list[ii]->m_CheckBox->GetValue() )
|
2007-10-07 03:08:24 +00:00
|
|
|
*laytool_list[ii]->m_Color = CurrentColor[ii] & ~ITEM_NOT_SHOW;
|
2007-09-13 09:24:43 +00:00
|
|
|
else
|
2007-10-07 03:08:24 +00:00
|
|
|
*laytool_list[ii]->m_Color = CurrentColor[ii] | ITEM_NOT_SHOW;
|
2007-09-13 09:24:43 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
else
|
2007-09-13 09:24:43 +00:00
|
|
|
{
|
2007-10-10 21:45:22 +00:00
|
|
|
// if( laytool_list[ii]->m_Color )
|
|
|
|
// *laytool_list[ii]->m_Color = CurrentColor[ii];
|
|
|
|
|
|
|
|
// As there is a button associated with every layer listed
|
|
|
|
// within this particular dialog box, the previous command
|
|
|
|
// can be replaced with this following command.
|
|
|
|
|
2007-10-07 03:08:24 +00:00
|
|
|
*laytool_list[ii]->m_Color = CurrentColor[ii];
|
|
|
|
|
2007-10-10 21:45:22 +00:00
|
|
|
// if( laytool_list[ii]->m_CheckBox )
|
|
|
|
// *laytool_list[ii]->m_NoDisplay = laytool_list[ii]->m_CheckBox->GetValue();
|
|
|
|
|
|
|
|
// As there is a checkbox associated with every layer listed
|
|
|
|
// within this particular dialog box, the previous command
|
|
|
|
// can be replaced with this following command.
|
|
|
|
|
|
|
|
*laytool_list[ii]->m_NoDisplay = laytool_list[ii]->m_CheckBox->GetValue();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2007-09-13 09:24:43 +00:00
|
|
|
}
|
2007-10-10 21:45:22 +00:00
|
|
|
// Additional command required for updating visibility of grid.
|
|
|
|
m_Parent->m_Draw_Grid = g_ShowGrid;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************/
|
|
|
|
void WinEDA_SetColorsFrame::ResetDisplayLayersCu(wxCommandEvent& event)
|
|
|
|
/***********************************************************************/
|
|
|
|
{
|
|
|
|
bool NewState = (event.GetId() == ID_COLOR_RESET_SHOW_LAYER_ON) ? TRUE : FALSE;
|
|
|
|
|
|
|
|
for ( int ii = 1; ii < 34; ii++ )
|
2007-09-13 09:24:43 +00:00
|
|
|
{
|
|
|
|
if ( laytool_list[ii]->m_CheckBox == NULL )
|
|
|
|
continue;
|
2007-06-05 12:10:51 +00:00
|
|
|
laytool_list[ii]->m_CheckBox->SetValue(NewState);
|
2007-09-13 09:24:43 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|