Commit c7bbbeed authored by dickelbeck's avatar dickelbeck

enhance getLayerComp()'s params

parent 07c35ed3
...@@ -191,7 +191,7 @@ void LAYER_WIDGET::OnLeftDownLayers( wxMouseEvent& event ) ...@@ -191,7 +191,7 @@ void LAYER_WIDGET::OnLeftDownLayers( wxMouseEvent& event )
if( row >= rowCount ) if( row >= rowCount )
row = rowCount - 1; row = rowCount - 1;
layer = getDecodedId( getLayerComp( row * LYR_COLUMN_COUNT )->GetId() ); layer = getDecodedId( getLayerComp( row, 0 )->GetId() );
} }
else else
...@@ -287,10 +287,11 @@ void LAYER_WIDGET::OnTabChange( wxNotebookEvent& event ) ...@@ -287,10 +287,11 @@ void LAYER_WIDGET::OnTabChange( wxNotebookEvent& event )
} }
wxWindow* LAYER_WIDGET::getLayerComp( int aSizerNdx ) wxWindow* LAYER_WIDGET::getLayerComp( int aRow, int aColumn )
{ {
if( (unsigned) aSizerNdx < m_LayersFlexGridSizer->GetChildren().GetCount() ) int ndx = aRow * LYR_COLUMN_COUNT + aColumn;
return m_LayersFlexGridSizer->GetChildren()[aSizerNdx]->GetWindow(); if( (unsigned) ndx < m_LayersFlexGridSizer->GetChildren().GetCount() )
return m_LayersFlexGridSizer->GetChildren()[ndx]->GetWindow();
return NULL; return NULL;
} }
...@@ -301,7 +302,7 @@ int LAYER_WIDGET::findLayerRow( int aLayer ) ...@@ -301,7 +302,7 @@ int LAYER_WIDGET::findLayerRow( int aLayer )
for( int row=0; row<count; ++row ) for( int row=0; row<count; ++row )
{ {
// column 0 in the layer scroll window has a wxStaticBitmap, get its ID. // column 0 in the layer scroll window has a wxStaticBitmap, get its ID.
wxWindow* w = getLayerComp( row * LYR_COLUMN_COUNT ); wxWindow* w = getLayerComp( row, 0 );
wxASSERT( w ); wxASSERT( w );
if( aLayer == getDecodedId( w->GetId() )) if( aLayer == getDecodedId( w->GetId() ))
...@@ -311,10 +312,11 @@ int LAYER_WIDGET::findLayerRow( int aLayer ) ...@@ -311,10 +312,11 @@ int LAYER_WIDGET::findLayerRow( int aLayer )
} }
wxWindow* LAYER_WIDGET::getRenderComp( int aSizerNdx ) wxWindow* LAYER_WIDGET::getRenderComp( int aRow, int aColumn )
{ {
if( (unsigned) aSizerNdx < m_RenderFlexGridSizer->GetChildren().GetCount() ) int ndx = aRow * RND_COLUMN_COUNT + aColumn;
return m_RenderFlexGridSizer->GetChildren()[aSizerNdx]->GetWindow(); if( (unsigned) ndx < m_RenderFlexGridSizer->GetChildren().GetCount() )
return m_RenderFlexGridSizer->GetChildren()[ndx]->GetWindow();
return NULL; return NULL;
} }
...@@ -325,7 +327,7 @@ int LAYER_WIDGET::findRenderRow( int aId ) ...@@ -325,7 +327,7 @@ int LAYER_WIDGET::findRenderRow( int aId )
for( int row=0; row<count; ++row ) for( int row=0; row<count; ++row )
{ {
// column 0 in the layer scroll window has a wxStaticBitmap, get its ID. // column 0 in the layer scroll window has a wxStaticBitmap, get its ID.
wxWindow* w = getRenderComp( row * RND_COLUMN_COUNT ); wxWindow* w = getRenderComp( row, 0 );
wxASSERT( w ); wxASSERT( w );
if( aId == getDecodedId( w->GetId() )) if( aId == getDecodedId( w->GetId() ))
...@@ -644,16 +646,11 @@ void LAYER_WIDGET::SelectLayerRow( int aRow ) ...@@ -644,16 +646,11 @@ void LAYER_WIDGET::SelectLayerRow( int aRow )
// enable the layer tab at index 0 // enable the layer tab at index 0
m_notebook->SetSelection( 0 ); m_notebook->SetSelection( 0 );
int oldNdx = LYR_COLUMN_COUNT * m_CurrentRow; wxStaticBitmap* oldbm = (wxStaticBitmap*) getLayerComp( m_CurrentRow, 0 );
int newNdx = LYR_COLUMN_COUNT * aRow;
m_CurrentRow = aRow;
wxStaticBitmap* oldbm = (wxStaticBitmap*) getLayerComp( oldNdx );
if( oldbm ) if( oldbm )
oldbm->SetBitmap( *m_BlankBitmap ); oldbm->SetBitmap( *m_BlankBitmap );
wxStaticBitmap* newbm = (wxStaticBitmap*) getLayerComp( newNdx ); wxStaticBitmap* newbm = (wxStaticBitmap*) getLayerComp( aRow, 0 );
if( newbm ) if( newbm )
{ {
newbm->SetBitmap( *m_RightArrowBitmap ); newbm->SetBitmap( *m_RightArrowBitmap );
...@@ -663,9 +660,11 @@ void LAYER_WIDGET::SelectLayerRow( int aRow ) ...@@ -663,9 +660,11 @@ void LAYER_WIDGET::SelectLayerRow( int aRow )
// I don't expect the scrolling to be needed at all because // I don't expect the scrolling to be needed at all because
// the minimum window size may end up being established so that the // the minimum window size may end up being established so that the
// scroll bars will not be visible. // scroll bars will not be visible.
getLayerComp( newNdx + 1 /* 1 is column */ )->SetFocus(); getLayerComp( aRow, 1 )->SetFocus();
} }
m_CurrentRow = aRow;
// give the focus back to the app. // give the focus back to the app.
passOnFocus(); passOnFocus();
} }
...@@ -680,10 +679,9 @@ void LAYER_WIDGET::SelectLayer( int aLayer ) ...@@ -680,10 +679,9 @@ void LAYER_WIDGET::SelectLayer( int aLayer )
int LAYER_WIDGET::GetSelectedLayer() int LAYER_WIDGET::GetSelectedLayer()
{ {
// column 0 in the layer scroll window has a wxStaticBitmap, get its ID. wxWindow* w = getLayerComp( m_CurrentRow, 0 );
wxStaticBitmap* bm = (wxStaticBitmap*) getLayerComp( m_CurrentRow * LYR_COLUMN_COUNT ); if( w )
if( bm ) return getDecodedId( w->GetId() );
return getDecodedId( bm->GetId() );
return -1; return -1;
} }
...@@ -694,7 +692,7 @@ void LAYER_WIDGET::SetLayerVisible( int aLayer, bool isVisible ) ...@@ -694,7 +692,7 @@ void LAYER_WIDGET::SetLayerVisible( int aLayer, bool isVisible )
int row = findLayerRow( aLayer ); int row = findLayerRow( aLayer );
if( row >= 0 ) if( row >= 0 )
{ {
wxCheckBox* cb = (wxCheckBox*) getLayerComp( row * LYR_COLUMN_COUNT + 3 ); wxCheckBox* cb = (wxCheckBox*) getLayerComp( row, 3 );
wxASSERT( cb ); wxASSERT( cb );
cb->SetValue( isVisible ); // does not fire an event cb->SetValue( isVisible ); // does not fire an event
} }
...@@ -706,7 +704,7 @@ bool LAYER_WIDGET::IsLayerVisible( int aLayer ) ...@@ -706,7 +704,7 @@ bool LAYER_WIDGET::IsLayerVisible( int aLayer )
int row = findLayerRow( aLayer ); int row = findLayerRow( aLayer );
if( row >= 0 ) if( row >= 0 )
{ {
wxCheckBox* cb = (wxCheckBox*) getLayerComp( row * LYR_COLUMN_COUNT + 3 ); wxCheckBox* cb = (wxCheckBox*) getLayerComp( row, 3 );
wxASSERT( cb ); wxASSERT( cb );
return cb->GetValue(); return cb->GetValue();
} }
...@@ -720,7 +718,7 @@ void LAYER_WIDGET::SetLayerColor( int aLayer, int aColor ) ...@@ -720,7 +718,7 @@ void LAYER_WIDGET::SetLayerColor( int aLayer, int aColor )
if( row >= 0 ) if( row >= 0 )
{ {
int col = 1; // bitmap button is column 1 int col = 1; // bitmap button is column 1
wxBitmapButton* bmb = (wxBitmapButton*) getLayerComp( row * LYR_COLUMN_COUNT + col ); wxBitmapButton* bmb = (wxBitmapButton*) getLayerComp( row, col );
wxASSERT( bmb ); wxASSERT( bmb );
wxBitmap bm = makeBitmap( aColor ); wxBitmap bm = makeBitmap( aColor );
...@@ -737,7 +735,7 @@ int LAYER_WIDGET::GetLayerColor( int aLayer ) ...@@ -737,7 +735,7 @@ int LAYER_WIDGET::GetLayerColor( int aLayer )
if( row >= 0 ) if( row >= 0 )
{ {
int col = 1; // bitmap button is column 1 int col = 1; // bitmap button is column 1
wxBitmapButton* bmb = (wxBitmapButton*) getLayerComp( row * LYR_COLUMN_COUNT + col ); wxBitmapButton* bmb = (wxBitmapButton*) getLayerComp( row, col );
wxASSERT( bmb ); wxASSERT( bmb );
wxString colorTxt = bmb->GetName(); wxString colorTxt = bmb->GetName();
...@@ -755,7 +753,7 @@ void LAYER_WIDGET::SetRenderState( int aId, bool isSet ) ...@@ -755,7 +753,7 @@ void LAYER_WIDGET::SetRenderState( int aId, bool isSet )
if( row >= 0 ) if( row >= 0 )
{ {
int col = 1; // checkbox is column 1 int col = 1; // checkbox is column 1
wxCheckBox* cb = (wxCheckBox*) getRenderComp( row * RND_COLUMN_COUNT + col ); wxCheckBox* cb = (wxCheckBox*) getRenderComp( row, col );
wxASSERT( cb ); wxASSERT( cb );
cb->SetValue( isSet ); // does not fire an event cb->SetValue( isSet ); // does not fire an event
} }
...@@ -768,7 +766,7 @@ bool LAYER_WIDGET::GetRenderState( int aId ) ...@@ -768,7 +766,7 @@ bool LAYER_WIDGET::GetRenderState( int aId )
if( row >= 0 ) if( row >= 0 )
{ {
int col = 1; // checkbox is column 1 int col = 1; // checkbox is column 1
wxCheckBox* cb = (wxCheckBox*) getRenderComp( row * RND_COLUMN_COUNT + col ); wxCheckBox* cb = (wxCheckBox*) getRenderComp( row, col );
wxASSERT( cb ); wxASSERT( cb );
return cb->GetValue(); return cb->GetValue();
} }
......
...@@ -155,14 +155,14 @@ protected: ...@@ -155,14 +155,14 @@ protected:
/** /**
* Function getLayerComp * Function getLayerComp
* returns the component within the m_LayersFlexGridSizer at aSizerNdx or * returns the component within the m_LayersFlexGridSizer at aRow and aCol
* NULL if \a aSizerNdx is out of range. * or NULL if \a these parameters are out of range.
* *
* @param aSizerNdx is the 0 based index into all the wxWindows which have * @param aRow is the row index
* been added to the m_LayersFlexGridSizer. * @param aColumn is the column
*/ */
wxWindow* getLayerComp( int aSizerNdx ); wxWindow* getLayerComp( int aRow, int aColumn );
wxWindow* getRenderComp( int aSizerNdx ); wxWindow* getRenderComp( int aRow, int aColumn );
/** /**
* Function findLayerRow * Function findLayerRow
......
...@@ -169,7 +169,7 @@ void PCB_LAYER_WIDGET::installRightLayerClickHandler() ...@@ -169,7 +169,7 @@ void PCB_LAYER_WIDGET::installRightLayerClickHandler()
{ {
for( int col=0; col<LYR_COLUMN_COUNT; ++col ) for( int col=0; col<LYR_COLUMN_COUNT; ++col )
{ {
wxWindow* w = getLayerComp( row * LYR_COLUMN_COUNT + col ); wxWindow* w = getLayerComp( row, col );
w->Connect( wxEVT_RIGHT_DOWN, wxMouseEventHandler( w->Connect( wxEVT_RIGHT_DOWN, wxMouseEventHandler(
PCB_LAYER_WIDGET::onRightDownLayers ), NULL, this ); PCB_LAYER_WIDGET::onRightDownLayers ), NULL, this );
...@@ -214,7 +214,7 @@ void PCB_LAYER_WIDGET::onPopupSelection( wxCommandEvent& event ) ...@@ -214,7 +214,7 @@ void PCB_LAYER_WIDGET::onPopupSelection( wxCommandEvent& event )
rowCount = GetLayerRowCount(); rowCount = GetLayerRowCount();
for( int row=rowCount-1; row>=0; --row ) for( int row=rowCount-1; row>=0; --row )
{ {
wxCheckBox* cb = (wxCheckBox*) getLayerComp( row*LYR_COLUMN_COUNT + 3 ); wxCheckBox* cb = (wxCheckBox*) getLayerComp( row, 3 );
int layer = getDecodedId( cb->GetId() ); int layer = getDecodedId( cb->GetId() );
if( IsValidCopperLayerIndex( layer ) ) if( IsValidCopperLayerIndex( layer ) )
{ {
...@@ -225,7 +225,7 @@ void PCB_LAYER_WIDGET::onPopupSelection( wxCommandEvent& event ) ...@@ -225,7 +225,7 @@ void PCB_LAYER_WIDGET::onPopupSelection( wxCommandEvent& event )
for( int row=0; row<rowCount; ++row ) for( int row=0; row<rowCount; ++row )
{ {
wxCheckBox* cb = (wxCheckBox*) getLayerComp( row*LYR_COLUMN_COUNT + 3 ); wxCheckBox* cb = (wxCheckBox*) getLayerComp( row, 3 );
int layer = getDecodedId( cb->GetId() ); int layer = getDecodedId( cb->GetId() );
if( IsValidCopperLayerIndex( layer ) ) if( IsValidCopperLayerIndex( layer ) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment