2014-10-27 14:14:39 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012-2014 Miguel Angel Ajo <miguelangel@nbee.es>
|
|
|
|
* Copyright (C) 1992-2014 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
|
|
|
|
*/
|
|
|
|
|
2012-05-09 23:04:08 +00:00
|
|
|
/**
|
2012-07-16 14:48:51 +00:00
|
|
|
* @file dialog_footprint_wizard_list.cpp
|
2012-05-09 23:04:08 +00:00
|
|
|
*/
|
|
|
|
|
2012-07-16 14:48:51 +00:00
|
|
|
#include <wx/grid.h>
|
2012-05-09 23:04:08 +00:00
|
|
|
|
|
|
|
#include <fctsys.h>
|
|
|
|
#include <pcbnew.h>
|
2015-10-04 11:46:56 +00:00
|
|
|
#include <kiface_i.h>
|
2012-05-09 23:04:08 +00:00
|
|
|
#include <dialog_footprint_wizard_list.h>
|
|
|
|
#include <class_footprint_wizard.h>
|
|
|
|
|
2015-04-21 15:42:30 +00:00
|
|
|
#define ROW_NAME 0
|
|
|
|
#define ROW_DESCR 1
|
2015-10-04 11:46:56 +00:00
|
|
|
#define FPWIZARTDLIST_HEIGHT_KEY wxT( "FpWizardListHeight" )
|
|
|
|
#define FPWIZARTDLIST_WIDTH_KEY wxT( "FpWizardListWidth" )
|
2012-05-09 23:04:08 +00:00
|
|
|
|
|
|
|
DIALOG_FOOTPRINT_WIZARD_LIST::DIALOG_FOOTPRINT_WIZARD_LIST( wxWindow* aParent )
|
|
|
|
: DIALOG_FOOTPRINT_WIZARD_LIST_BASE( aParent )
|
|
|
|
{
|
2015-04-26 16:32:16 +00:00
|
|
|
int n_wizards = FOOTPRINT_WIZARDS::GetWizardsCount();
|
2015-10-04 11:46:56 +00:00
|
|
|
m_config = Kiface().KifaceSettings();
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2012-05-09 23:04:08 +00:00
|
|
|
// Current wizard selection, empty or first
|
2015-10-04 11:46:56 +00:00
|
|
|
m_footprintWizard = NULL;
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2014-10-27 14:14:39 +00:00
|
|
|
if( n_wizards )
|
2015-10-04 11:46:56 +00:00
|
|
|
m_footprintWizard = FOOTPRINT_WIZARDS::GetWizard( 0 );
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2012-05-09 23:04:08 +00:00
|
|
|
// Choose selection mode and insert the needed rows
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2015-10-31 11:54:48 +00:00
|
|
|
m_footprintGeneratorsGrid->SetSelectionMode( wxGrid::wxGridSelectRows );
|
|
|
|
m_footprintGeneratorsGrid->InsertRows( 0, n_wizards, true );
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2012-05-09 23:04:08 +00:00
|
|
|
// Put all wizards in the list
|
2014-10-27 14:14:39 +00:00
|
|
|
for( int i=0; i<n_wizards; i++ )
|
2012-05-09 23:04:08 +00:00
|
|
|
{
|
2014-10-27 14:14:39 +00:00
|
|
|
FOOTPRINT_WIZARD *wizard = FOOTPRINT_WIZARDS::GetWizard( i );
|
2012-05-09 23:04:08 +00:00
|
|
|
wxString name = wizard->GetName();
|
|
|
|
wxString description = wizard->GetDescription();
|
|
|
|
wxString image = wizard->GetImage();
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2015-10-31 11:54:48 +00:00
|
|
|
m_footprintGeneratorsGrid->SetCellValue( i, ROW_NAME, name );
|
|
|
|
m_footprintGeneratorsGrid->SetCellValue( i, ROW_DESCR, description );
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2012-05-09 23:04:08 +00:00
|
|
|
}
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2012-05-09 23:04:08 +00:00
|
|
|
// Select the first row
|
2015-10-31 11:54:48 +00:00
|
|
|
m_footprintGeneratorsGrid->ClearSelection();
|
|
|
|
m_footprintGeneratorsGrid->SelectRow( 0, false );
|
2012-05-09 23:04:08 +00:00
|
|
|
|
2015-10-04 11:46:56 +00:00
|
|
|
if( m_config )
|
|
|
|
{
|
|
|
|
wxSize size;
|
|
|
|
m_config->Read( FPWIZARTDLIST_WIDTH_KEY, &size.x, -1 );
|
|
|
|
m_config->Read( FPWIZARTDLIST_HEIGHT_KEY, &size.y, -1 );
|
|
|
|
SetSize( size );
|
|
|
|
}
|
|
|
|
|
2015-04-21 15:42:30 +00:00
|
|
|
Center();
|
2012-05-09 23:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-04 11:46:56 +00:00
|
|
|
DIALOG_FOOTPRINT_WIZARD_LIST::~DIALOG_FOOTPRINT_WIZARD_LIST()
|
|
|
|
{
|
|
|
|
if( m_config && !IsIconized() )
|
|
|
|
{
|
|
|
|
m_config->Write( FPWIZARTDLIST_WIDTH_KEY, GetSize().x );
|
|
|
|
m_config->Write( FPWIZARTDLIST_HEIGHT_KEY, GetSize().y );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-10-31 11:54:48 +00:00
|
|
|
void DIALOG_FOOTPRINT_WIZARD_LIST::OnCellFpGeneratorClick( wxGridEvent& event )
|
2012-05-09 23:04:08 +00:00
|
|
|
{
|
|
|
|
int click_row = event.GetRow();
|
2015-10-04 11:46:56 +00:00
|
|
|
m_footprintWizard = FOOTPRINT_WIZARDS::GetWizard( click_row );
|
2015-10-31 11:54:48 +00:00
|
|
|
m_footprintGeneratorsGrid->SelectRow( event.GetRow(), false );
|
2012-05-09 23:04:08 +00:00
|
|
|
}
|
|
|
|
|
2014-10-27 14:14:39 +00:00
|
|
|
|
2012-05-09 23:04:08 +00:00
|
|
|
FOOTPRINT_WIZARD* DIALOG_FOOTPRINT_WIZARD_LIST::GetWizard()
|
|
|
|
{
|
2015-10-04 11:46:56 +00:00
|
|
|
return m_footprintWizard;
|
2012-05-09 23:04:08 +00:00
|
|
|
}
|