kicad/eeschema/dialogs/dialog_eeschema_options.cpp

317 lines
9.9 KiB
C++
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2009 Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 1992-2011 KiCad Developers, see AUTHORS.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
*/
/**
* @file dialog_eeschema_options.cpp
*/
#include <fctsys.h>
#include <class_base_screen.h>
#include <dialog_eeschema_options.h>
DIALOG_EESCHEMA_OPTIONS::DIALOG_EESCHEMA_OPTIONS( wxWindow* parent ) :
DIALOG_EESCHEMA_OPTIONS_BASE( parent )
{
m_choiceUnits->SetFocus();
m_sdbSizer1OK->SetDefault();
2014-03-07 17:52:43 +00:00
2014-09-30 19:55:18 +00:00
// Setup the wxListCtrl for displaying the template fieldnames
2014-03-07 17:52:43 +00:00
wxListItem col0;
col0.SetId( 0 );
2014-09-16 19:34:52 +00:00
col0.SetText( _( "Field Name" ) );
2014-03-07 17:52:43 +00:00
wxListItem col1;
col1.SetId( 1 );
2014-09-16 19:34:52 +00:00
col1.SetText( _( "Default Value" ) );
2014-03-07 17:52:43 +00:00
wxListItem col2;
col2.SetId( 2 );
2014-09-16 19:34:52 +00:00
col2.SetText( _( "Visible" ) );
2014-03-07 17:52:43 +00:00
templateFieldListCtrl->InsertColumn( 0, col0 );
templateFieldListCtrl->InsertColumn( 1, col1 );
templateFieldListCtrl->InsertColumn( 2, col2 );
2014-09-30 19:55:18 +00:00
templateFieldListCtrl->SetColumnWidth( 0, templateFieldListCtrl->GetViewRect().GetWidth() / 3 );
templateFieldListCtrl->SetColumnWidth( 1, templateFieldListCtrl->GetViewRect().GetWidth() / 3 );
templateFieldListCtrl->SetColumnWidth( 2, templateFieldListCtrl->GetViewRect().GetWidth() / 3 );
2014-09-28 20:37:35 +00:00
2014-09-30 19:55:18 +00:00
// Invalid field selected and don't ignore selection events because
// they'll be from the user
2014-09-28 20:37:35 +00:00
selectedField = -1;
2014-09-30 19:55:18 +00:00
ignoreSelection = false;
// Make sure we select the first tab of the options tab page
m_notebook1->SetSelection( 0 );
}
void DIALOG_EESCHEMA_OPTIONS::OnSize( wxSizeEvent& event )
{
templateFieldListCtrl->SetColumnWidth( 0, templateFieldListCtrl->GetViewRect().GetWidth() / 3 );
templateFieldListCtrl->SetColumnWidth( 1, templateFieldListCtrl->GetViewRect().GetWidth() / 3 );
templateFieldListCtrl->SetColumnWidth( 2, templateFieldListCtrl->GetViewRect().GetWidth() / 3 );
/* We're just eves dropping on the event, pass it on... */
event.Skip();
}
void DIALOG_EESCHEMA_OPTIONS::SetUnits( const wxArrayString& units, int select )
{
wxASSERT( units.GetCount() > 0
&& ( select >= 0 && (size_t) select < units.GetCount() ) );
m_choiceUnits->Append( units );
m_choiceUnits->SetSelection( select );
}
2014-09-30 19:55:18 +00:00
void DIALOG_EESCHEMA_OPTIONS::SetRefIdSeparator( wxChar aSep, wxChar aFirstId)
{
// m_choiceSeparatorRefId displays one of
// "A" ".A" "-A" "_A" ".1" "-1" "_1" option
int sel = 0;
switch( aSep )
{
default:
case 0:
aFirstId = 'A'; // cannot use a number without separator
break;
case '.':
sel = 1;
break;
case '-':
sel = 2;
break;
case '_':
sel = 3;
break;
}
if( aFirstId == '1' )
sel = 4;
m_choiceSeparatorRefId->SetSelection( sel );
}
void DIALOG_EESCHEMA_OPTIONS::GetRefIdSeparator( int& aSep, int& aFirstId)
{
// m_choiceSeparatorRefId displays one of
// "A" ".A" "-A" "_A" ".1" "-1" "_1" option
aFirstId = 'A';
switch( m_choiceSeparatorRefId->GetSelection() )
{
default:
case 0: aSep = 0; break;
case 1: aSep = '.'; break;
case 2: aSep = '-'; break;
case 3: aSep = '_'; break;
case 4: aFirstId = '1'; aSep = '.'; break;
case 5: aFirstId = '1'; aSep = '-'; break;
case 6: aFirstId = '1'; aSep = '_'; break;
}
}
2014-09-30 19:55:18 +00:00
void DIALOG_EESCHEMA_OPTIONS::SetGridSizes( const GRIDS& aGridSizes, int aGridId )
{
2014-09-30 19:55:18 +00:00
wxASSERT( aGridSizes.size() > 0 );
int select = wxNOT_FOUND;
2014-09-30 19:55:18 +00:00
for( size_t i = 0; i < aGridSizes.size(); i++ )
{
wxString tmp;
2014-09-30 19:55:18 +00:00
tmp.Printf( wxT( "%0.1f" ), aGridSizes[i].m_Size.x );
m_choiceGridSize->Append( tmp );
2014-09-30 19:55:18 +00:00
if( aGridSizes[i].m_Id == aGridId )
select = (int) i;
}
m_choiceGridSize->SetSelection( select );
}
2014-09-28 20:37:35 +00:00
void DIALOG_EESCHEMA_OPTIONS::RefreshTemplateFieldView( void )
2014-03-07 17:52:43 +00:00
{
2014-09-28 20:37:35 +00:00
// Delete all items in the template field list control and add all of the
// current template fields
templateFieldListCtrl->DeleteAllItems();
2014-09-30 19:55:18 +00:00
// Loop through the template fieldnames and add then to the list control
for( TEMPLATE_FIELDNAMES::iterator fld = templateFields.begin();
fld != templateFields.end(); ++fld )
2014-09-28 20:37:35 +00:00
{
2014-09-30 19:55:18 +00:00
long itemindex = templateFieldListCtrl->InsertItem(
templateFieldListCtrl->GetItemCount(), fld->m_Name );
2014-09-28 20:37:35 +00:00
templateFieldListCtrl->SetItem( itemindex, 1, fld->m_Value );
2014-09-30 19:55:18 +00:00
templateFieldListCtrl->SetItem( itemindex, 2,
( fld->m_Visible == true ) ? _( "Visible" ) : _( "Hidden" ) );
2014-09-28 20:37:35 +00:00
}
}
2014-09-28 20:37:35 +00:00
2014-09-30 19:55:18 +00:00
void DIALOG_EESCHEMA_OPTIONS::SelectTemplateField( int aItem )
{
// Only select valid items!
2014-09-30 19:55:18 +00:00
if( ( aItem < 0 ) || ( aItem >= templateFieldListCtrl->GetItemCount() ) )
return;
// Make sure we select the new item
ignoreSelection = true;
2014-09-30 19:55:18 +00:00
templateFieldListCtrl->SetItemState( aItem, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
}
2014-03-07 17:52:43 +00:00
2014-09-28 20:37:35 +00:00
void DIALOG_EESCHEMA_OPTIONS::OnAddButtonClick( wxCommandEvent& event )
2014-09-16 19:34:52 +00:00
{
2014-09-28 20:37:35 +00:00
// If there is currently a valid selection, copy the edit panel to the
// selected field so as not to lose the data
if( ( selectedField >= 0 ) && ( selectedField < templateFields.size() ) )
copyPanelToSelected();
2014-09-16 19:34:52 +00:00
2014-09-28 20:37:35 +00:00
// Add a new fieldname to the fieldname list
TEMPLATE_FIELDNAME newFieldname = TEMPLATE_FIELDNAME( "Fieldname" );
newFieldname.m_Value = wxT( "Value" );
2014-09-28 20:37:35 +00:00
newFieldname.m_Visible = false;
templateFields.push_back( newFieldname );
2014-09-16 19:34:52 +00:00
2014-09-28 20:37:35 +00:00
// Select the newly added field and then copy that data to the edit panel.
// Make sure any previously selected state is cleared and then select the
// new field
selectedField = templateFields.size() - 1;
// Update the display to reflect the new data
RefreshTemplateFieldView();
2014-09-28 20:37:35 +00:00
copySelectedToPanel();
// Make sure we select the new item
SelectTemplateField( selectedField );
2014-09-16 19:34:52 +00:00
}
void DIALOG_EESCHEMA_OPTIONS::OnDeleteButtonClick( wxCommandEvent& event )
{
// If there is currently a valid selection, delete the template field from
// the template field list
if( ( selectedField >= 0 ) && ( selectedField < templateFields.size() ) )
{
// Delete the fieldname from the fieldname list
templateFields.erase( templateFields.begin() + selectedField );
// If the selectedField is still not in the templateField range now,
// make sure we stay in range and when there are no fields present
// move to -1
if( selectedField >= templateFields.size() )
selectedField = templateFields.size() - 1;
// Update the display to reflect the new data
RefreshTemplateFieldView();
copySelectedToPanel();
// Make sure after the refresh that the selected item is correct
SelectTemplateField( selectedField );
}
}
2014-09-28 20:37:35 +00:00
void DIALOG_EESCHEMA_OPTIONS::copyPanelToSelected( void )
{
2014-09-28 20:37:35 +00:00
if( ( selectedField < 0 ) || ( selectedField >= templateFields.size() ) )
2014-09-16 19:34:52 +00:00
return;
// Update the template field from the edit panel
2014-09-28 20:37:35 +00:00
templateFields[selectedField].m_Name = fieldNameTextCtrl->GetValue();
templateFields[selectedField].m_Value = fieldDefaultValueTextCtrl->GetValue();
templateFields[selectedField].m_Visible = fieldVisibleCheckbox->GetValue();
}
2014-09-16 19:34:52 +00:00
2014-09-28 20:37:35 +00:00
void DIALOG_EESCHEMA_OPTIONS::copySelectedToPanel( void )
{
if( ( selectedField < 0 ) || ( selectedField >= templateFields.size() ) )
2014-09-16 19:34:52 +00:00
return;
// Update the panel data from the selected template field
2014-09-28 20:37:35 +00:00
fieldNameTextCtrl->SetValue( templateFields[selectedField].m_Name );
fieldDefaultValueTextCtrl->SetValue( templateFields[selectedField].m_Value );
fieldVisibleCheckbox->SetValue( templateFields[selectedField].m_Visible );
2014-09-16 19:34:52 +00:00
}
void DIALOG_EESCHEMA_OPTIONS::OnTemplateFieldSelected( wxListEvent& event )
{
2014-09-30 19:55:18 +00:00
// If the class has generated the event and asked to ignore it, honour that and reset the
// ignore flag for the next user event.
if( ignoreSelection )
{
ignoreSelection = false;
return;
}
2014-09-28 20:37:35 +00:00
// Before getting the new field data, make sure we save the old!
copyPanelToSelected();
2014-09-28 20:37:35 +00:00
// Now update the selected field and copy the data from the field to the
// edit panel
selectedField = event.GetIndex();
2014-09-16 19:34:52 +00:00
copySelectedToPanel();
// Refresh the template field view - this deletes all fields and then
// re-fills the entire data grid. It then re-selects the currently
// selected field. This will be recursive, so disable this event while
// we refresh the view
RefreshTemplateFieldView();
// If an item was selected, make sure we re-select it, or at least the
// same position in the grid
SelectTemplateField( selectedField );
2014-09-16 19:34:52 +00:00
}
2014-03-07 17:52:43 +00:00
void DIALOG_EESCHEMA_OPTIONS::SetTemplateFields( const TEMPLATE_FIELDNAMES& aFields )
{
2014-09-28 20:37:35 +00:00
// Set the template fields object
2014-09-16 19:34:52 +00:00
templateFields = aFields;
2014-09-28 20:37:35 +00:00
// Refresh the view
RefreshTemplateFieldView();
2014-03-07 17:52:43 +00:00
}
2014-03-07 17:52:43 +00:00
2014-09-16 19:34:52 +00:00
TEMPLATE_FIELDNAMES DIALOG_EESCHEMA_OPTIONS::GetTemplateFields( void )
2014-03-07 17:52:43 +00:00
{
2014-09-16 19:34:52 +00:00
return templateFields;
}
2014-03-07 17:52:43 +00:00