2013-10-13 21:33:58 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2013-10-23 18:56:03 +00:00
|
|
|
* Copyright (C) 2013 CERN
|
2016-11-19 22:15:34 +00:00
|
|
|
* Copyright (C) 2013-2016 KiCad Developers, see change_log.txt for contributors.
|
2013-10-13 21:33:58 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2013-10-30 15:33:51 +00:00
|
|
|
#include <fctsys.h>
|
2013-10-13 21:33:58 +00:00
|
|
|
#include <invoke_pcb_dialog.h>
|
|
|
|
#include <dialog_fp_plugin_options_base.h>
|
|
|
|
#include <fp_lib_table.h>
|
2013-10-23 18:56:03 +00:00
|
|
|
#include <grid_tricks.h>
|
2013-10-13 21:33:58 +00:00
|
|
|
|
2013-11-12 20:49:17 +00:00
|
|
|
|
|
|
|
#define INITIAL_HELP \
|
|
|
|
_( "Select an <b>Option Choice</b> in the listbox above, and then click the <b>Append Selected Option</b> button." )
|
|
|
|
|
|
|
|
|
2013-10-24 13:58:05 +00:00
|
|
|
using std::string;
|
|
|
|
|
|
|
|
// re-enter the dialog with the column sizes preserved from last time.
|
|
|
|
static int col_width_option;
|
|
|
|
static int col_width_value;
|
|
|
|
|
2013-10-13 21:33:58 +00:00
|
|
|
|
2013-10-30 15:33:51 +00:00
|
|
|
/**
|
|
|
|
* Class DIALOG_FP_PLUGIN_OPTIONS
|
|
|
|
* is an options editor in the form of a two column name/value
|
|
|
|
* spreadsheet like (table) UI. It takes hints from a pcbnew PLUGIN as to
|
|
|
|
* supported options.
|
|
|
|
*/
|
2013-10-13 21:33:58 +00:00
|
|
|
class DIALOG_FP_PLUGIN_OPTIONS : public DIALOG_FP_PLUGIN_OPTIONS_BASE
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
DIALOG_FP_PLUGIN_OPTIONS( wxTopLevelWindow* aParent,
|
2013-11-12 00:17:27 +00:00
|
|
|
const wxString& aNickname, const wxString& aPluginType,
|
|
|
|
const wxString& aOptions, wxString* aResult ) :
|
2013-10-13 21:33:58 +00:00
|
|
|
DIALOG_FP_PLUGIN_OPTIONS_BASE( aParent ),
|
|
|
|
m_callers_options( aOptions ),
|
2013-11-12 20:49:17 +00:00
|
|
|
m_result( aResult ),
|
|
|
|
m_initial_help( INITIAL_HELP )
|
2013-10-13 21:33:58 +00:00
|
|
|
{
|
|
|
|
wxString title = wxString::Format(
|
|
|
|
_( "Options for Library '%s'" ), GetChars( aNickname ) );
|
|
|
|
|
|
|
|
SetTitle( title );
|
2013-10-23 18:56:03 +00:00
|
|
|
|
2013-10-30 05:14:11 +00:00
|
|
|
// add Cut, Copy, and Paste to wxGrid
|
2013-10-23 18:56:03 +00:00
|
|
|
m_grid->PushEventHandler( new GRID_TRICKS( m_grid ) );
|
|
|
|
|
2013-11-12 20:49:17 +00:00
|
|
|
m_grid->SetColMinimalWidth( 1, 250 );
|
|
|
|
|
|
|
|
// Fill the grid with existing aOptions
|
2013-10-24 13:58:05 +00:00
|
|
|
string options = TO_UTF8( aOptions );
|
|
|
|
|
2016-11-19 22:15:34 +00:00
|
|
|
PROPERTIES* props = LIB_TABLE::ParseOptions( options );
|
2013-10-24 13:58:05 +00:00
|
|
|
|
|
|
|
if( props )
|
|
|
|
{
|
2013-10-30 15:33:51 +00:00
|
|
|
if( (int) props->size() > m_grid->GetNumberRows() )
|
2013-10-30 05:14:11 +00:00
|
|
|
m_grid->AppendRows( props->size() - m_grid->GetNumberRows() );
|
2013-10-24 13:58:05 +00:00
|
|
|
|
|
|
|
int row = 0;
|
|
|
|
for( PROPERTIES::const_iterator it = props->begin(); it != props->end(); ++it, ++row )
|
|
|
|
{
|
|
|
|
m_grid->SetCellValue( row, 0, FROM_UTF8( it->first.c_str() ) );
|
2014-01-02 02:17:07 +00:00
|
|
|
m_grid->SetCellValue( row, 1, it->second );
|
2013-10-24 13:58:05 +00:00
|
|
|
}
|
2013-10-30 05:14:11 +00:00
|
|
|
|
|
|
|
delete props;
|
2013-10-24 13:58:05 +00:00
|
|
|
}
|
|
|
|
|
2013-11-12 00:17:27 +00:00
|
|
|
// Option Choices Panel:
|
|
|
|
|
|
|
|
IO_MGR::PCB_FILE_T pi_type = IO_MGR::EnumFromStr( aPluginType );
|
|
|
|
PLUGIN::RELEASER pi( IO_MGR::PluginFind( pi_type ) );
|
|
|
|
|
2013-11-12 20:49:17 +00:00
|
|
|
pi->FootprintLibOptions( &m_choices );
|
2013-11-12 00:17:27 +00:00
|
|
|
|
2013-11-12 20:49:17 +00:00
|
|
|
if( m_choices.size() )
|
2013-11-12 00:17:27 +00:00
|
|
|
{
|
|
|
|
int row = 0;
|
2013-11-12 20:49:17 +00:00
|
|
|
for( PROPERTIES::const_iterator it = m_choices.begin(); it != m_choices.end(); ++it, ++row )
|
2013-11-12 00:17:27 +00:00
|
|
|
{
|
2013-11-12 20:49:17 +00:00
|
|
|
wxString item = FROM_UTF8( it->first.c_str() );
|
|
|
|
|
|
|
|
m_listbox->InsertItems( 1, &item, row );
|
2013-11-12 00:17:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-12 20:49:17 +00:00
|
|
|
m_html->SetPage( m_initial_help );
|
2013-11-12 00:17:27 +00:00
|
|
|
|
2013-10-24 13:58:05 +00:00
|
|
|
if( !col_width_option )
|
|
|
|
{
|
|
|
|
m_grid->AutoSizeColumns( false );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_grid->SetColSize( 0, col_width_option );
|
|
|
|
m_grid->SetColSize( 1, col_width_value );
|
|
|
|
}
|
|
|
|
|
2013-11-12 20:49:17 +00:00
|
|
|
Fit();
|
|
|
|
|
2013-10-23 18:56:03 +00:00
|
|
|
// initial focus on the grid please.
|
|
|
|
m_grid->SetFocus();
|
|
|
|
}
|
|
|
|
|
|
|
|
~DIALOG_FP_PLUGIN_OPTIONS()
|
|
|
|
{
|
2013-10-24 13:58:05 +00:00
|
|
|
// destroy GRID_TRICKS before m_grid.
|
2013-10-23 18:56:03 +00:00
|
|
|
m_grid->PopEventHandler( true );
|
2013-10-13 21:33:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
const wxString& m_callers_options;
|
|
|
|
wxString* m_result;
|
2013-11-12 20:49:17 +00:00
|
|
|
PROPERTIES m_choices;
|
|
|
|
wxString m_initial_help;
|
|
|
|
|
2013-10-13 21:33:58 +00:00
|
|
|
|
2013-10-30 15:33:51 +00:00
|
|
|
/// If the cursor is not on a valid cell, because there are no rows at all, return -1,
|
|
|
|
/// else return a 0 based column index.
|
|
|
|
int getCursorCol() const
|
|
|
|
{
|
|
|
|
return m_grid->GetGridCursorCol();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// If the cursor is not on a valid cell, because there are no rows at all, return -1,
|
|
|
|
/// else return a 0 based row index.
|
|
|
|
int getCursorRow() const
|
|
|
|
{
|
|
|
|
return m_grid->GetGridCursorRow();
|
|
|
|
}
|
|
|
|
|
|
|
|
wxArrayString getRow( int aRow )
|
|
|
|
{
|
|
|
|
wxArrayString row;
|
|
|
|
|
|
|
|
const int col_count = m_grid->GetNumberCols();
|
|
|
|
for( int col = 0; col < col_count; ++col )
|
|
|
|
{
|
|
|
|
row.Add( m_grid->GetCellValue( aRow, col ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return row;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setRow( int aRow, const wxArrayString& aPair )
|
|
|
|
{
|
|
|
|
const int col_count = m_grid->GetNumberCols();
|
|
|
|
for( int col = 0; col < col_count; ++col )
|
|
|
|
{
|
|
|
|
m_grid->SetCellValue( aRow, col, aPair[col] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-24 13:58:05 +00:00
|
|
|
wxString makeResult()
|
|
|
|
{
|
|
|
|
PROPERTIES props;
|
|
|
|
const int rowCount = m_grid->GetNumberRows();
|
|
|
|
|
|
|
|
for( int row = 0; row<rowCount; ++row )
|
|
|
|
{
|
|
|
|
string name = TO_UTF8( m_grid->GetCellValue( row, 0 ).Trim( false ).Trim() );
|
2014-01-02 02:17:07 +00:00
|
|
|
UTF8 value = m_grid->GetCellValue( row, 1 ).Trim( false ).Trim();
|
2013-10-24 13:58:05 +00:00
|
|
|
|
|
|
|
if( name.size() )
|
|
|
|
{
|
|
|
|
props[name] = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-19 22:15:34 +00:00
|
|
|
return LIB_TABLE::FormatOptions( &props );
|
2013-10-24 13:58:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void saveColSizes()
|
|
|
|
{
|
|
|
|
col_width_option = m_grid->GetColSize( 0 );
|
|
|
|
col_width_value = m_grid->GetColSize( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
void abort()
|
|
|
|
{
|
|
|
|
saveColSizes();
|
|
|
|
|
|
|
|
*m_result = m_callers_options; // tell caller "no change"
|
|
|
|
EndModal( 0 );
|
|
|
|
}
|
|
|
|
|
2013-11-12 00:17:27 +00:00
|
|
|
int appendRow()
|
2013-10-13 21:33:58 +00:00
|
|
|
{
|
2013-10-30 15:33:51 +00:00
|
|
|
if( m_grid->AppendRows( 1 ) )
|
|
|
|
{
|
|
|
|
int last_row = m_grid->GetNumberRows() - 1;
|
|
|
|
|
|
|
|
// wx documentation is wrong, SetGridCursor does not make visible.
|
|
|
|
m_grid->MakeCellVisible( last_row, 0 );
|
|
|
|
m_grid->SetGridCursor( last_row, 0 );
|
2013-11-12 00:17:27 +00:00
|
|
|
|
|
|
|
return last_row;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-11-12 20:49:17 +00:00
|
|
|
void appendOption()
|
2013-11-12 00:17:27 +00:00
|
|
|
{
|
2013-11-12 20:49:17 +00:00
|
|
|
int selected_row = m_listbox->GetSelection();
|
|
|
|
if( selected_row != wxNOT_FOUND )
|
2013-11-12 00:17:27 +00:00
|
|
|
{
|
2013-11-12 20:49:17 +00:00
|
|
|
wxString option = m_listbox->GetString( selected_row );
|
2013-11-12 00:17:27 +00:00
|
|
|
|
|
|
|
int row_count = m_grid->GetNumberRows();
|
|
|
|
int row;
|
|
|
|
|
|
|
|
for( row=0; row<row_count; ++row )
|
|
|
|
{
|
|
|
|
wxString col0 = m_grid->GetCellValue( row, 0 );
|
|
|
|
|
|
|
|
if( !col0 ) // empty col0
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( row == row_count )
|
|
|
|
row = appendRow();
|
|
|
|
|
|
|
|
m_grid->SetCellValue( row, 0, option );
|
|
|
|
m_grid->AutoSizeColumns( false );
|
2013-10-30 15:33:51 +00:00
|
|
|
}
|
2013-10-13 21:33:58 +00:00
|
|
|
}
|
2013-11-12 20:49:17 +00:00
|
|
|
|
|
|
|
//-----<event handlers>------------------------------------------------------
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
void onListBoxItemSelected( wxCommandEvent& event ) override
|
2013-11-12 20:49:17 +00:00
|
|
|
{
|
2013-11-19 20:38:29 +00:00
|
|
|
// change the help text based on the m_listbox selection:
|
2013-11-12 20:49:17 +00:00
|
|
|
if( event.IsSelection() )
|
|
|
|
{
|
2013-11-19 20:38:29 +00:00
|
|
|
string option = TO_UTF8( event.GetString() );
|
2014-01-02 02:17:07 +00:00
|
|
|
UTF8 help_text;
|
2013-11-12 20:49:17 +00:00
|
|
|
|
2013-11-19 20:38:29 +00:00
|
|
|
if( m_choices.Value( option.c_str(), &help_text ) )
|
2013-11-12 20:49:17 +00:00
|
|
|
{
|
2014-01-02 02:17:07 +00:00
|
|
|
wxString page = help_text;
|
2013-11-12 20:49:17 +00:00
|
|
|
|
|
|
|
m_html->SetPage( page );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_html->SetPage( m_initial_help );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
void onListBoxItemDoubleClicked( wxCommandEvent& event ) override
|
2013-11-12 20:49:17 +00:00
|
|
|
{
|
|
|
|
appendOption();
|
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
void onAppendOption( wxCommandEvent& event ) override
|
2013-11-12 20:49:17 +00:00
|
|
|
{
|
|
|
|
appendOption();
|
|
|
|
}
|
2013-10-13 21:33:58 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
void onAppendRow( wxMouseEvent& event ) override
|
2013-11-12 00:17:27 +00:00
|
|
|
{
|
|
|
|
appendRow();
|
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
void onDeleteRow( wxMouseEvent& event ) override
|
2013-10-13 21:33:58 +00:00
|
|
|
{
|
2013-10-30 15:33:51 +00:00
|
|
|
int rowCount = m_grid->GetNumberRows();
|
|
|
|
int curRow = getCursorRow();
|
|
|
|
|
|
|
|
m_grid->DeleteRows( curRow );
|
|
|
|
|
|
|
|
if( curRow && curRow == rowCount - 1 )
|
|
|
|
{
|
|
|
|
m_grid->MakeCellVisible( curRow-1, getCursorCol() );
|
|
|
|
m_grid->SetGridCursor( curRow-1, getCursorCol() );
|
|
|
|
}
|
2013-10-13 21:33:58 +00:00
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
void onMoveUp( wxMouseEvent& event ) override
|
2013-10-13 21:33:58 +00:00
|
|
|
{
|
2013-10-30 15:33:51 +00:00
|
|
|
int curRow = getCursorRow();
|
|
|
|
if( curRow >= 1 )
|
|
|
|
{
|
|
|
|
int curCol = getCursorCol();
|
|
|
|
|
|
|
|
wxArrayString move_me = getRow( curRow );
|
|
|
|
|
|
|
|
m_grid->DeleteRows( curRow );
|
|
|
|
--curRow;
|
|
|
|
m_grid->InsertRows( curRow );
|
|
|
|
|
|
|
|
setRow( curRow, move_me );
|
|
|
|
|
|
|
|
wxGridTableBase* tbl = m_grid->GetTable();
|
|
|
|
|
|
|
|
if( tbl->GetView() )
|
|
|
|
{
|
|
|
|
// fire a msg to cause redrawing
|
|
|
|
wxGridTableMessage msg( tbl,
|
|
|
|
wxGRIDTABLE_NOTIFY_ROWS_INSERTED,
|
|
|
|
curRow,
|
|
|
|
0 );
|
|
|
|
|
|
|
|
tbl->GetView()->ProcessTableMessage( msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
m_grid->MakeCellVisible( curRow, curCol );
|
|
|
|
m_grid->SetGridCursor( curRow, curCol );
|
|
|
|
}
|
2013-10-13 21:33:58 +00:00
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
void onMoveDown( wxMouseEvent& event ) override
|
2013-10-13 21:33:58 +00:00
|
|
|
{
|
2013-10-30 15:33:51 +00:00
|
|
|
int curRow = getCursorRow();
|
|
|
|
if( curRow + 1 < m_grid->GetNumberRows() )
|
|
|
|
{
|
|
|
|
int curCol = getCursorCol();
|
|
|
|
|
|
|
|
wxArrayString move_me = getRow( curRow );
|
|
|
|
|
|
|
|
m_grid->DeleteRows( curRow );
|
|
|
|
++curRow;
|
|
|
|
m_grid->InsertRows( curRow );
|
|
|
|
setRow( curRow, move_me );
|
|
|
|
|
|
|
|
wxGridTableBase* tbl = m_grid->GetTable();
|
|
|
|
|
|
|
|
if( tbl->GetView() )
|
|
|
|
{
|
|
|
|
// fire a msg to cause redrawing
|
|
|
|
wxGridTableMessage msg( tbl,
|
|
|
|
wxGRIDTABLE_NOTIFY_ROWS_INSERTED,
|
|
|
|
curRow - 1,
|
|
|
|
0 );
|
|
|
|
|
|
|
|
tbl->GetView()->ProcessTableMessage( msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
m_grid->MakeCellVisible( curRow, curCol );
|
|
|
|
m_grid->SetGridCursor( curRow, curCol );
|
|
|
|
}
|
2013-10-13 21:33:58 +00:00
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
void onCancelButtonClick( wxCommandEvent& event ) override
|
2013-10-13 21:33:58 +00:00
|
|
|
{
|
2013-10-24 13:58:05 +00:00
|
|
|
abort();
|
2013-10-13 21:33:58 +00:00
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
void onCancelCaptionButtonClick( wxCloseEvent& event ) override
|
2013-10-13 21:33:58 +00:00
|
|
|
{
|
2013-10-24 13:58:05 +00:00
|
|
|
abort();
|
2013-10-13 21:33:58 +00:00
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
void onOKButtonClick( wxCommandEvent& event ) override
|
2013-10-13 21:33:58 +00:00
|
|
|
{
|
2013-10-24 13:58:05 +00:00
|
|
|
saveColSizes();
|
2013-10-13 21:33:58 +00:00
|
|
|
|
2013-10-24 13:58:05 +00:00
|
|
|
*m_result = makeResult(); // change from edits
|
2013-10-13 21:33:58 +00:00
|
|
|
EndModal( 1 );
|
|
|
|
}
|
|
|
|
//-----</event handlers>-----------------------------------------------------
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void InvokePluginOptionsEditor( wxTopLevelWindow* aCaller,
|
2013-11-12 00:17:27 +00:00
|
|
|
const wxString& aNickname, const wxString& aPluginType,
|
|
|
|
const wxString& aOptions, wxString* aResult )
|
2013-10-13 21:33:58 +00:00
|
|
|
{
|
2013-11-12 00:17:27 +00:00
|
|
|
DIALOG_FP_PLUGIN_OPTIONS dlg( aCaller, aNickname, aPluginType, aOptions, aResult );
|
2013-10-13 21:33:58 +00:00
|
|
|
|
|
|
|
dlg.ShowModal();
|
|
|
|
}
|