dialog_eeschema_options.cpp 10.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * 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
 */

29 30
#include <fctsys.h>
#include <class_base_screen.h>
31

32
#include <dialog_eeschema_options.h>
33

34
#include "wx/settings.h"
35 36 37 38 39

DIALOG_EESCHEMA_OPTIONS::DIALOG_EESCHEMA_OPTIONS( wxWindow* parent ) :
    DIALOG_EESCHEMA_OPTIONS_BASE( parent )
{
    m_choiceUnits->SetFocus();
40
    m_sdbSizerOK->SetDefault();
Brian Sidebotham's avatar
Brian Sidebotham committed
41

42 43 44
    // Dialog should not shrink beyond it's minimal size.
    GetSizer()->SetSizeHints( this );

Brian Sidebotham's avatar
Brian Sidebotham committed
45 46
    wxListItem col0;
    col0.SetId( 0 );
Brian Sidebotham's avatar
Brian Sidebotham committed
47
    col0.SetText( _( "Field Name" ) );
Brian Sidebotham's avatar
Brian Sidebotham committed
48 49 50

    wxListItem col1;
    col1.SetId( 1 );
Brian Sidebotham's avatar
Brian Sidebotham committed
51
    col1.SetText( _( "Default Value" ) );
Brian Sidebotham's avatar
Brian Sidebotham committed
52 53 54

    wxListItem col2;
    col2.SetId( 2 );
Brian Sidebotham's avatar
Brian Sidebotham committed
55
    col2.SetText( _( "Visible" ) );
Brian Sidebotham's avatar
Brian Sidebotham committed
56 57 58 59

    templateFieldListCtrl->InsertColumn( 0, col0 );
    templateFieldListCtrl->InsertColumn( 1, col1 );
    templateFieldListCtrl->InsertColumn( 2, col2 );
60

61 62 63
    templateFieldListCtrl->SetColumnWidth( 0, templateFieldListCtrl->GetSize().GetWidth() / 3.5 );
    templateFieldListCtrl->SetColumnWidth( 1, templateFieldListCtrl->GetSize().GetWidth() / 3.5 );
    templateFieldListCtrl->SetColumnWidth( 2, templateFieldListCtrl->GetSize().GetWidth() / 3.5 );
Brian Sidebotham's avatar
Brian Sidebotham committed
64

65 66
    // Invalid field selected
    selectedField = -1;
67 68

    // Make sure we select the first tab of the options tab page
69
    m_notebook->SetSelection( 0 );
Brian Sidebotham's avatar
Brian Sidebotham committed
70 71 72 73

    // 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.

74 75 76 77 78
    fieldNameTextCtrl->Connect( wxEVT_KILL_FOCUS,
            wxFocusEventHandler( DIALOG_EESCHEMA_OPTIONS::OnEditControlKillFocus ), NULL, this );

    fieldDefaultValueTextCtrl->Connect( wxEVT_KILL_FOCUS,
            wxFocusEventHandler( DIALOG_EESCHEMA_OPTIONS::OnEditControlKillFocus ), NULL, this );
79 80 81
}


82 83 84 85 86 87 88 89 90
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 );
}

91

92 93
void DIALOG_EESCHEMA_OPTIONS::SetRefIdSeparator( wxChar aSep, wxChar aFirstId)
{
94 95
    // m_choiceSeparatorRefId displays one of
    // "A" ".A" "-A" "_A" ".1" "-1" "_1" option
96

97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
    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 );
}
123

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
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;
    }
141
}
142

143

144
void DIALOG_EESCHEMA_OPTIONS::SetGridSizes( const GRIDS& aGridSizes, int aGridId )
145
{
146
    wxASSERT( aGridSizes.size() > 0 );
147 148 149

    int select = wxNOT_FOUND;

150
    for( size_t i = 0; i < aGridSizes.size(); i++ )
151 152
    {
        wxString tmp;
153
        tmp.Printf( wxT( "%0.1f" ), aGridSizes[i].m_Size.x );
154 155
        m_choiceGridSize->Append( tmp );

156
        if( aGridSizes[i].m_Id == aGridId )
157 158 159 160 161
            select = (int) i;
    }

    m_choiceGridSize->SetSelection( select );
}
162 163


Brian Sidebotham's avatar
Brian Sidebotham committed
164
void DIALOG_EESCHEMA_OPTIONS::RefreshTemplateFieldView( void )
Brian Sidebotham's avatar
Brian Sidebotham committed
165
{
166 167 168 169
    // Loop through the template fieldnames and add them to the list control
    // or just change texts if room exists
    long itemindex = 0;
    wxString tmp;
170

171
    for( TEMPLATE_FIELDNAMES::iterator fld = templateFields.begin();
172
            fld != templateFields.end(); ++fld, itemindex++ )
Brian Sidebotham's avatar
Brian Sidebotham committed
173
    {
174 175 176
        if( templateFieldListCtrl->GetItemCount() <= itemindex )
        {
            templateFieldListCtrl->InsertItem(
177
                templateFieldListCtrl->GetItemCount(), fld->m_Name );
178 179 180 181 182
        }

        wxListItem litem;
        litem.SetId( itemindex );
        templateFieldListCtrl->GetItem( litem );
183

184 185 186
        litem.SetColumn( 0 );
        if( litem.GetText() != fld->m_Name )
            templateFieldListCtrl->SetItem( itemindex, 0, fld->m_Name );
187

188 189 190 191 192 193 194 195 196
        litem.SetColumn( 1 );
        if( litem.GetText() != fld->m_Value )
            templateFieldListCtrl->SetItem( itemindex, 1, fld->m_Value );

        tmp = ( fld->m_Visible == true ) ? _( "Visible" ) : _( "Hidden" );

        litem.SetColumn( 2 );
        if(  litem.GetText() != tmp )
            templateFieldListCtrl->SetItem( itemindex, 2, tmp );
Brian Sidebotham's avatar
Brian Sidebotham committed
197
    }
198 199 200 201 202 203 204

    // Remove extra items:
    while( templateFieldListCtrl->GetItemCount() > itemindex )
    {
        templateFieldListCtrl->DeleteItem( itemindex );
    }

205
}
Brian Sidebotham's avatar
Brian Sidebotham committed
206

207

208
void DIALOG_EESCHEMA_OPTIONS::SelectTemplateField( int aItem )
209 210
{
    // Only select valid items!
211
    if( ( aItem < 0 ) || ( aItem >= templateFieldListCtrl->GetItemCount() ) )
212 213
        return;

214 215 216
    // Make sure we select the new item in list control
    if( templateFieldListCtrl->GetFirstSelected() != aItem )
        templateFieldListCtrl->Select( aItem, true );
217 218
}

Brian Sidebotham's avatar
Brian Sidebotham committed
219

Brian Sidebotham's avatar
Brian Sidebotham committed
220
void DIALOG_EESCHEMA_OPTIONS::OnAddButtonClick( wxCommandEvent& event )
Brian Sidebotham's avatar
Brian Sidebotham committed
221
{
Brian Sidebotham's avatar
Brian Sidebotham committed
222 223
    // If there is currently a valid selection, copy the edit panel to the
    // selected field so as not to lose the data
224
    if( fieldSelectionValid( selectedField ) )
Brian Sidebotham's avatar
Brian Sidebotham committed
225
        copyPanelToSelected();
Brian Sidebotham's avatar
Brian Sidebotham committed
226

Brian Sidebotham's avatar
Brian Sidebotham committed
227
    // Add a new fieldname to the fieldname list
228 229
    TEMPLATE_FIELDNAME newFieldname = TEMPLATE_FIELDNAME( "Fieldname" );
    newFieldname.m_Value = wxT( "Value" );
Brian Sidebotham's avatar
Brian Sidebotham committed
230 231
    newFieldname.m_Visible = false;
    templateFields.push_back( newFieldname );
Brian Sidebotham's avatar
Brian Sidebotham committed
232

Brian Sidebotham's avatar
Brian Sidebotham committed
233 234 235
    // 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
236
    selectedField = templateFields.size() - 1;
237

238 239
    // Update the display to reflect the new data
    RefreshTemplateFieldView();
Brian Sidebotham's avatar
Brian Sidebotham committed
240 241
    copySelectedToPanel();

242 243
    // Make sure we select the new item
    SelectTemplateField( selectedField );
244 245

    event.Skip();
Brian Sidebotham's avatar
Brian Sidebotham committed
246 247 248
}


249 250 251 252
void DIALOG_EESCHEMA_OPTIONS::OnDeleteButtonClick( wxCommandEvent& event )
{
    // If there is currently a valid selection, delete the template field from
    // the template field list
253
    if( fieldSelectionValid( selectedField ) )
254 255 256 257 258 259 260 261 262 263 264 265
    {
        // 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();
266

267 268 269 270 271 272 273
        copySelectedToPanel();

        // Make sure after the refresh that the selected item is correct
        SelectTemplateField( selectedField );
    }
}

274

Brian Sidebotham's avatar
Brian Sidebotham committed
275
void DIALOG_EESCHEMA_OPTIONS::copyPanelToSelected( void )
276
{
277
    if( !fieldSelectionValid( selectedField ) )
Brian Sidebotham's avatar
Brian Sidebotham committed
278 279
        return;

280
    // Update the template field from the edit panel
Brian Sidebotham's avatar
Brian Sidebotham committed
281 282 283 284
    templateFields[selectedField].m_Name = fieldNameTextCtrl->GetValue();
    templateFields[selectedField].m_Value = fieldDefaultValueTextCtrl->GetValue();
    templateFields[selectedField].m_Visible = fieldVisibleCheckbox->GetValue();
}
285

Brian Sidebotham's avatar
Brian Sidebotham committed
286

Brian Sidebotham's avatar
Brian Sidebotham committed
287 288 289 290 291
void DIALOG_EESCHEMA_OPTIONS::OnEditControlKillFocus( wxFocusEvent& event )
{
    // Update the data + UI
    copyPanelToSelected();
    RefreshTemplateFieldView();
292 293 294
    SelectTemplateField( selectedField );

    event.Skip();
Brian Sidebotham's avatar
Brian Sidebotham committed
295 296
}

297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
void DIALOG_EESCHEMA_OPTIONS::OnEnterKey( wxCommandEvent& event )
{
    // Process the event produced when the user presses enter key
    // in template fieldname text control or template fieldvalue text control
    // Validate the current name or value, and switch focus to the other param
    // (value or name)
    copyPanelToSelected();
    RefreshTemplateFieldView();

    if( fieldNameTextCtrl->HasFocus() )
        fieldDefaultValueTextCtrl->SetFocus();
    else
        fieldNameTextCtrl->SetFocus();
}


void DIALOG_EESCHEMA_OPTIONS::OnVisibleFieldClick( wxCommandEvent& event )
{
    // Process the event produced when the user click on
    // the check box which controls the field visibility
    copyPanelToSelected();
    RefreshTemplateFieldView();
}
Brian Sidebotham's avatar
Brian Sidebotham committed
320

Brian Sidebotham's avatar
Brian Sidebotham committed
321 322
void DIALOG_EESCHEMA_OPTIONS::copySelectedToPanel( void )
{
323
    if( !fieldSelectionValid( selectedField ) )
Brian Sidebotham's avatar
Brian Sidebotham committed
324 325
        return;

326
    // Update the panel data from the selected template field
Brian Sidebotham's avatar
Brian Sidebotham committed
327 328
    fieldNameTextCtrl->SetValue( templateFields[selectedField].m_Name );
    fieldDefaultValueTextCtrl->SetValue( templateFields[selectedField].m_Value );
329
    fieldVisibleCheckbox->SetValue( templateFields[selectedField].m_Visible );
Brian Sidebotham's avatar
Brian Sidebotham committed
330 331 332 333 334
}


void DIALOG_EESCHEMA_OPTIONS::OnTemplateFieldSelected( wxListEvent& event )
{
Brian Sidebotham's avatar
Brian Sidebotham committed
335
    // Before getting the new field data, make sure we save the old!
336
    copyPanelToSelected();
337

Brian Sidebotham's avatar
Brian Sidebotham committed
338 339 340
    // Now update the selected field and copy the data from the field to the
    // edit panel
    selectedField = event.GetIndex();
Brian Sidebotham's avatar
Brian Sidebotham committed
341 342 343 344
    copySelectedToPanel();
}


Brian Sidebotham's avatar
Brian Sidebotham committed
345
void DIALOG_EESCHEMA_OPTIONS::SetTemplateFields( const TEMPLATE_FIELDNAMES& aFields )
346
{
Brian Sidebotham's avatar
Brian Sidebotham committed
347
    // Set the template fields object
Brian Sidebotham's avatar
Brian Sidebotham committed
348
    templateFields = aFields;
349

350 351 352 353
    // select the last field ( will set selectedField to -1 if no field ):
    selectedField = templateFields.size()-1;

    // Build and refresh the view
Brian Sidebotham's avatar
Brian Sidebotham committed
354
    RefreshTemplateFieldView();
355 356 357 358 359 360 361

    if( selectedField >= 0 )
    {
        copySelectedToPanel();
        SelectTemplateField( selectedField );
    }

Brian Sidebotham's avatar
Brian Sidebotham committed
362
}
363

Brian Sidebotham's avatar
Brian Sidebotham committed
364

Brian Sidebotham's avatar
Brian Sidebotham committed
365
TEMPLATE_FIELDNAMES DIALOG_EESCHEMA_OPTIONS::GetTemplateFields( void )
Brian Sidebotham's avatar
Brian Sidebotham committed
366
{
Brian Sidebotham's avatar
Brian Sidebotham committed
367
    return templateFields;
368
}
Brian Sidebotham's avatar
Brian Sidebotham committed
369