|
|
/*
* 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>
#include "wx/settings.h"
DIALOG_EESCHEMA_OPTIONS::DIALOG_EESCHEMA_OPTIONS( wxWindow* parent ) : DIALOG_EESCHEMA_OPTIONS_BASE( parent ){ m_choiceUnits->SetFocus(); m_sdbSizer1OK->SetDefault();
// Dialog should not shrink beyond it's minimal size.
GetSizer()->SetSizeHints( this );
wxListItem col0; col0.SetId( 0 ); col0.SetText( _( "Field Name" ) );
wxListItem col1; col1.SetId( 1 ); col1.SetText( _( "Default Value" ) );
wxListItem col2; col2.SetId( 2 ); col2.SetText( _( "Visible" ) );
templateFieldListCtrl->InsertColumn( 0, col0 ); templateFieldListCtrl->InsertColumn( 1, col1 ); templateFieldListCtrl->InsertColumn( 2, col2 );
templateFieldListCtrl->SetColumnWidth( 0, templateFieldListCtrl->GetSize().GetWidth() / 3.5 ); templateFieldListCtrl->SetColumnWidth( 1, templateFieldListCtrl->GetSize().GetWidth() / 3.5 ); templateFieldListCtrl->SetColumnWidth( 2, templateFieldListCtrl->GetSize().GetWidth() / 3.5 );
// Invalid field selected and don't ignore selection events because
// they'll be from the user
selectedField = 0; selectionValid = false; ignoreSelection = false;
// Make sure we select the first tab of the options tab page
m_notebook1->SetSelection( 0 );
// Connect the edit controls for the template field names to the kill focus event which
// doesn't propogate, hence the need to connect it here.
fieldNameTextCtrl->Connect( wxEVT_KILL_FOCUS, wxFocusEventHandler( DIALOG_EESCHEMA_OPTIONS::OnEditControlKillFocus ), NULL, this );
fieldDefaultValueTextCtrl->Connect( wxEVT_KILL_FOCUS, wxFocusEventHandler( DIALOG_EESCHEMA_OPTIONS::OnEditControlKillFocus ), NULL, this );
fieldVisibleCheckbox->Connect( wxEVT_KILL_FOCUS, wxFocusEventHandler( DIALOG_EESCHEMA_OPTIONS::OnEditControlKillFocus ), NULL, this );}
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 );}
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; }}
void DIALOG_EESCHEMA_OPTIONS::SetGridSizes( const GRIDS& aGridSizes, int aGridId ){ wxASSERT( aGridSizes.size() > 0 );
int select = wxNOT_FOUND;
for( size_t i = 0; i < aGridSizes.size(); i++ ) { wxString tmp; tmp.Printf( wxT( "%0.1f" ), aGridSizes[i].m_Size.x ); m_choiceGridSize->Append( tmp );
if( aGridSizes[i].m_Id == aGridId ) select = (int) i; }
m_choiceGridSize->SetSelection( select );}
void DIALOG_EESCHEMA_OPTIONS::RefreshTemplateFieldView( void ){ // Delete all items in the template field list control and add all of the
// current template fields
templateFieldListCtrl->DeleteAllItems();
// Loop through the template fieldnames and add then to the list control
for( TEMPLATE_FIELDNAMES::iterator fld = templateFields.begin(); fld != templateFields.end(); ++fld ) { long itemindex = templateFieldListCtrl->InsertItem( templateFieldListCtrl->GetItemCount(), fld->m_Name );
templateFieldListCtrl->SetItem( itemindex, 1, fld->m_Value );
templateFieldListCtrl->SetItem( itemindex, 2, ( fld->m_Visible == true ) ? _( "Visible" ) : _( "Hidden" ) ); }}
void DIALOG_EESCHEMA_OPTIONS::SelectTemplateField( int aItem ){ // Only select valid items!
if( !selectionValid || ( aItem >= templateFieldListCtrl->GetItemCount() ) ) return;
// Make sure we select the new item
ignoreSelection = true; templateFieldListCtrl->SetItemState( aItem, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );}
void DIALOG_EESCHEMA_OPTIONS::OnAddButtonClick( wxCommandEvent& event ){ // If there is currently a valid selection, copy the edit panel to the
// selected field so as not to lose the data
if( selectionValid && ( selectedField < templateFields.size() ) ) copyPanelToSelected();
// Add a new fieldname to the fieldname list
TEMPLATE_FIELDNAME newFieldname = TEMPLATE_FIELDNAME( "Fieldname" ); newFieldname.m_Value = wxT( "Value" ); newFieldname.m_Visible = false; templateFields.push_back( newFieldname );
// 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; selectionValid = true;
// Update the display to reflect the new data
RefreshTemplateFieldView(); copySelectedToPanel();
// Make sure we select the new item
SelectTemplateField( selectedField );
event.Skip();}
void DIALOG_EESCHEMA_OPTIONS::OnDeleteButtonClick( wxCommandEvent& event ){ // If there is currently a valid selection, delete the template field from
// the template field list
if( selectionValid && ( 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 ); }
event.Skip();}
void DIALOG_EESCHEMA_OPTIONS::copyPanelToSelected( void ){ if( !selectionValid || ( selectedField >= templateFields.size() ) ) return;
// Update the template field from the edit panel
templateFields[selectedField].m_Name = fieldNameTextCtrl->GetValue(); templateFields[selectedField].m_Value = fieldDefaultValueTextCtrl->GetValue(); templateFields[selectedField].m_Visible = fieldVisibleCheckbox->GetValue();}
void DIALOG_EESCHEMA_OPTIONS::OnEditControlKillFocus( wxFocusEvent& event ){ // Update the data + UI
copyPanelToSelected(); RefreshTemplateFieldView(); SelectTemplateField( selectedField );
event.Skip();}
void DIALOG_EESCHEMA_OPTIONS::copySelectedToPanel( void ){ if( !selectionValid || ( selectedField >= templateFields.size() ) ) return;
// Update the panel data from the selected template field
fieldNameTextCtrl->SetValue( templateFields[selectedField].m_Name ); fieldDefaultValueTextCtrl->SetValue( templateFields[selectedField].m_Value ); fieldVisibleCheckbox->SetValue( templateFields[selectedField].m_Visible );}
void DIALOG_EESCHEMA_OPTIONS::OnTemplateFieldSelected( wxListEvent& event ){ // 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; event.Skip(); return; }
// Before getting the new field data, make sure we save the old!
copyPanelToSelected();
// Now update the selected field and copy the data from the field to the
// edit panel
selectedField = event.GetIndex(); selectionValid = true; 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 );
event.Skip();}
void DIALOG_EESCHEMA_OPTIONS::SetTemplateFields( const TEMPLATE_FIELDNAMES& aFields ){ // Set the template fields object
templateFields = aFields;
// Refresh the view
RefreshTemplateFieldView();}
TEMPLATE_FIELDNAMES DIALOG_EESCHEMA_OPTIONS::GetTemplateFields( void ){ return templateFields;}
|