Symbol Fields Table: wire up BOM format presets
This commit is contained in:
parent
bb7d55e5a4
commit
6a726709b5
|
@ -181,6 +181,16 @@ BOM_PRESET DIALOG_SYMBOL_FIELDS_TABLE::bomPresetGroupedByValueFootprint(
|
|||
true );
|
||||
|
||||
|
||||
BOM_FMT_PRESET DIALOG_SYMBOL_FIELDS_TABLE::bomFmtPresetCSV
|
||||
( _HKI("CSV"), wxS( "," ), wxT( "\"" ), false, true, true);
|
||||
|
||||
BOM_FMT_PRESET DIALOG_SYMBOL_FIELDS_TABLE::bomFmtPresetTSV
|
||||
( _HKI("TSV"), wxS( "\t" ), wxT(""), false, true, true);
|
||||
|
||||
BOM_FMT_PRESET DIALOG_SYMBOL_FIELDS_TABLE::bomFmtPresetSemicolons
|
||||
( _HKI("Semicolons"), wxS( ";" ), wxT("'"), false, true, true);
|
||||
|
||||
|
||||
DIALOG_SYMBOL_FIELDS_TABLE::DIALOG_SYMBOL_FIELDS_TABLE( SCH_EDIT_FRAME* parent ) :
|
||||
DIALOG_SYMBOL_FIELDS_TABLE_BASE( parent ), m_currentBomPreset( nullptr ),
|
||||
m_lastSelectedBomPreset( nullptr ), m_parent( parent ),
|
||||
|
@ -285,9 +295,14 @@ DIALOG_SYMBOL_FIELDS_TABLE::DIALOG_SYMBOL_FIELDS_TABLE( SCH_EDIT_FRAME* parent )
|
|||
|
||||
// Load our BOM view presets
|
||||
SetUserBomPresets( m_schSettings.m_BomPresets );
|
||||
ApplyBomPreset( m_schSettings.m_BomSettings );
|
||||
ApplyBomPreset( bomPresetGroupedByValueFootprint );
|
||||
syncBomPresetSelection();
|
||||
|
||||
// Load BOM export format presets
|
||||
SetUserBomFmtPresets( m_schSettings.m_BomFmtPresets );
|
||||
ApplyBomFmtPreset( bomFmtPresetCSV );
|
||||
syncBomFmtPresetSelection();
|
||||
|
||||
m_grid->SelectRow( 0 );
|
||||
m_grid->SetGridCursor( 0, 1 );
|
||||
SetInitialFocus( m_grid );
|
||||
|
@ -304,6 +319,7 @@ DIALOG_SYMBOL_FIELDS_TABLE::DIALOG_SYMBOL_FIELDS_TABLE( SCH_EDIT_FRAME* parent )
|
|||
m_grid->Connect( wxEVT_GRID_COL_MOVE,
|
||||
wxGridEventHandler( DIALOG_SYMBOL_FIELDS_TABLE::OnColMove ), nullptr, this );
|
||||
m_cbBomPresets->Bind( wxEVT_CHOICE, &DIALOG_SYMBOL_FIELDS_TABLE::onBomPresetChanged, this );
|
||||
m_cbBomFmtPresets->Bind( wxEVT_CHOICE, &DIALOG_SYMBOL_FIELDS_TABLE::onBomFmtPresetChanged, this );
|
||||
m_fieldsCtrl->Bind( wxEVT_DATAVIEW_ITEM_VALUE_CHANGED,
|
||||
&DIALOG_SYMBOL_FIELDS_TABLE::OnColLabelChange, this );
|
||||
}
|
||||
|
@ -1017,17 +1033,30 @@ void DIALOG_SYMBOL_FIELDS_TABLE::OnSaveAndContinue( wxCommandEvent& aEvent )
|
|||
}
|
||||
|
||||
|
||||
void DIALOG_SYMBOL_FIELDS_TABLE::OnPageChanged( wxNotebookEvent& event )
|
||||
{
|
||||
PreviewRefresh();
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_SYMBOL_FIELDS_TABLE::OnPreviewRefresh( wxCommandEvent& event )
|
||||
{
|
||||
BOM_EXPORT_SETTINGS settings = ( BOM_EXPORT_SETTINGS ){
|
||||
.FieldDelimiter = m_textFieldDelimiter->GetValue(),
|
||||
.StringDelimiter = m_textStringDelimiter->GetValue(),
|
||||
.SpacedRefs = m_checkSpacedRefs->GetValue(),
|
||||
.RemoveTabs = m_checkRemoveTabs->GetValue(),
|
||||
.RemoveLineBreaks = m_checkRemoveLineBreaks->GetValue(),
|
||||
};
|
||||
PreviewRefresh();
|
||||
syncBomFmtPresetSelection();
|
||||
}
|
||||
|
||||
m_textOutput->SetValue( m_dataModel->Export( settings ) );
|
||||
|
||||
void DIALOG_SYMBOL_FIELDS_TABLE::PreviewRefresh()
|
||||
{
|
||||
BOM_FMT_PRESET& current = m_parent->Schematic().Settings().m_BomFmtSettings;
|
||||
|
||||
current.fieldDelimiter = m_textFieldDelimiter->GetValue();
|
||||
current.stringDelimiter = m_textStringDelimiter->GetValue();
|
||||
current.spacedRefs = m_checkSpacedRefs->GetValue();
|
||||
current.removeTabs = m_checkRemoveTabs->GetValue();
|
||||
current.removeLineBreaks = m_checkRemoveLineBreaks->GetValue();
|
||||
|
||||
m_textOutput->SetValue( m_dataModel->Export( current ) );
|
||||
}
|
||||
|
||||
|
||||
|
@ -1083,12 +1112,11 @@ void DIALOG_SYMBOL_FIELDS_TABLE::OnExport( wxCommandEvent& aEvent )
|
|||
// Create output directory if it does not exist (also transform it in absolute form).
|
||||
// Bail if it fails.
|
||||
|
||||
std::function<bool( wxString* )> textResolver =
|
||||
[&]( wxString* token ) -> bool
|
||||
{
|
||||
// Handles m_board->GetTitleBlock() *and* m_board->GetProject()
|
||||
return m_parent->Schematic().ResolveTextVar( token, 0 );
|
||||
};
|
||||
std::function<bool( wxString* )> textResolver = [&]( wxString* token ) -> bool
|
||||
{
|
||||
// Handles m_board->GetTitleBlock() *and* m_board->GetProject()
|
||||
return m_parent->Schematic().ResolveTextVar( token, 0 );
|
||||
};
|
||||
|
||||
wxString path = m_outputFileName->GetValue();
|
||||
path = ExpandTextVars( path, &textResolver );
|
||||
|
@ -1097,12 +1125,11 @@ void DIALOG_SYMBOL_FIELDS_TABLE::OnExport( wxCommandEvent& aEvent )
|
|||
wxFileName outputFile = wxFileName::FileName( path );
|
||||
|
||||
auto displayErr = [&]()
|
||||
{
|
||||
wxString msg;
|
||||
msg.Printf( _( "Could not write BOM output to '%s'." ),
|
||||
outputFile.GetPath() );
|
||||
DisplayError( this, msg );
|
||||
};
|
||||
{
|
||||
wxString msg;
|
||||
msg.Printf( _( "Could not write BOM output to '%s'." ), outputFile.GetPath() );
|
||||
DisplayError( this, msg );
|
||||
};
|
||||
|
||||
if( !EnsureFileDirectoryExists( &outputFile,
|
||||
Prj().AbsolutePath( m_parent->Schematic().GetFileName() ),
|
||||
|
@ -1120,15 +1147,9 @@ void DIALOG_SYMBOL_FIELDS_TABLE::OnExport( wxCommandEvent& aEvent )
|
|||
return;
|
||||
}
|
||||
|
||||
BOM_EXPORT_SETTINGS settings = ( BOM_EXPORT_SETTINGS ){
|
||||
.FieldDelimiter = m_textFieldDelimiter->GetValue(),
|
||||
.StringDelimiter = m_textStringDelimiter->GetValue(),
|
||||
.SpacedRefs = m_checkSpacedRefs->GetValue(),
|
||||
.RemoveTabs = m_checkRemoveTabs->GetValue(),
|
||||
.RemoveLineBreaks = m_checkRemoveLineBreaks->GetValue(),
|
||||
};
|
||||
PreviewRefresh();
|
||||
|
||||
if( !out.Write( m_dataModel->Export( settings ) ) )
|
||||
if( !out.Write( m_textOutput->GetValue() ) )
|
||||
{
|
||||
displayErr();
|
||||
return;
|
||||
|
@ -1243,8 +1264,6 @@ void DIALOG_SYMBOL_FIELDS_TABLE::loadDefaultBomPresets()
|
|||
|
||||
void DIALOG_SYMBOL_FIELDS_TABLE::rebuildBomPresetsWidget()
|
||||
{
|
||||
m_bomPresetsLabel->SetLabel(
|
||||
wxString::Format( _( "Presets (%s+Tab):" ), KeyNameFromKeyCode( PRESET_SWITCH_KEY ) ) );
|
||||
m_cbBomPresets->Clear();
|
||||
|
||||
// Build the layers preset list.
|
||||
|
@ -1553,43 +1572,330 @@ void DIALOG_SYMBOL_FIELDS_TABLE::doApplyBomPreset( const BOM_PRESET& aPreset )
|
|||
}
|
||||
|
||||
|
||||
bool DIALOG_SYMBOL_FIELDS_TABLE::TryBefore( wxEvent& aEvent )
|
||||
std::vector<BOM_FMT_PRESET> DIALOG_SYMBOL_FIELDS_TABLE::GetUserBomFmtPresets() const
|
||||
{
|
||||
static bool s_presetSwitcherShown = false;
|
||||
std::vector<BOM_FMT_PRESET> ret;
|
||||
|
||||
// wxWidgets generates no key events for the tab key when the ctrl key is held down. One
|
||||
// way around this is to look at all events and inspect the keyboard state of the tab key.
|
||||
// However, this runs into issues on some linux VMs where querying the keyboard state is
|
||||
// very slow. Fortunately we only use ctrl-tab on Mac, so we implement this lovely hack:
|
||||
#ifdef __WXMAC__
|
||||
if( wxGetKeyState( WXK_TAB ) )
|
||||
#else
|
||||
if( ( aEvent.GetEventType() == wxEVT_CHAR || aEvent.GetEventType() == wxEVT_CHAR_HOOK )
|
||||
&& static_cast<wxKeyEvent&>( aEvent ).GetKeyCode() == WXK_TAB )
|
||||
#endif
|
||||
for( const std::pair<const wxString, BOM_FMT_PRESET>& pair : m_bomFmtPresets )
|
||||
{
|
||||
if( !s_presetSwitcherShown && wxGetKeyState( PRESET_SWITCH_KEY ) )
|
||||
{
|
||||
if( this->IsActive() )
|
||||
{
|
||||
if( m_bomPresetMRU.size() > 0 )
|
||||
{
|
||||
EDA_VIEW_SWITCHER switcher( this, m_bomPresetMRU, PRESET_SWITCH_KEY );
|
||||
|
||||
s_presetSwitcherShown = true;
|
||||
switcher.ShowModal();
|
||||
s_presetSwitcherShown = false;
|
||||
|
||||
int idx = switcher.GetSelection();
|
||||
|
||||
if( idx >= 0 && idx < (int) m_bomPresetMRU.size() )
|
||||
ApplyBomPreset( m_bomPresetMRU[idx] );
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
if( !pair.second.readOnly )
|
||||
ret.emplace_back( pair.second );
|
||||
}
|
||||
|
||||
return DIALOG_SYMBOL_FIELDS_TABLE_BASE::TryBefore( aEvent );
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_SYMBOL_FIELDS_TABLE::SetUserBomFmtPresets( std::vector<BOM_FMT_PRESET>& aPresetList )
|
||||
{
|
||||
// Reset to defaults
|
||||
loadDefaultBomFmtPresets();
|
||||
|
||||
for( const BOM_FMT_PRESET& preset : aPresetList )
|
||||
{
|
||||
if( m_bomFmtPresets.count( preset.name ) )
|
||||
continue;
|
||||
|
||||
m_bomFmtPresets[preset.name] = preset;
|
||||
|
||||
m_bomFmtPresetMRU.Add( preset.name );
|
||||
}
|
||||
|
||||
rebuildBomFmtPresetsWidget();
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_SYMBOL_FIELDS_TABLE::ApplyBomFmtPreset( const wxString& aPresetName )
|
||||
{
|
||||
updateBomFmtPresetSelection( aPresetName );
|
||||
|
||||
wxCommandEvent dummy;
|
||||
onBomFmtPresetChanged( dummy );
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_SYMBOL_FIELDS_TABLE::ApplyBomFmtPreset( const BOM_FMT_PRESET& aPreset )
|
||||
{
|
||||
if( m_bomFmtPresets.count( aPreset.name ) )
|
||||
m_currentBomFmtPreset = &m_bomFmtPresets[aPreset.name];
|
||||
else
|
||||
m_currentBomFmtPreset = nullptr;
|
||||
|
||||
m_lastSelectedBomFmtPreset = ( m_currentBomFmtPreset && !m_currentBomFmtPreset->readOnly )
|
||||
? m_currentBomFmtPreset
|
||||
: nullptr;
|
||||
|
||||
updateBomFmtPresetSelection( aPreset.name );
|
||||
doApplyBomFmtPreset( aPreset );
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_SYMBOL_FIELDS_TABLE::loadDefaultBomFmtPresets()
|
||||
{
|
||||
m_bomFmtPresets.clear();
|
||||
m_bomFmtPresetMRU.clear();
|
||||
|
||||
// Load the read-only defaults
|
||||
for( const BOM_FMT_PRESET& preset :
|
||||
{ bomFmtPresetCSV, bomFmtPresetSemicolons, bomFmtPresetTSV } )
|
||||
{
|
||||
m_bomFmtPresets[preset.name] = preset;
|
||||
m_bomFmtPresets[preset.name].readOnly = true;
|
||||
|
||||
m_bomFmtPresetMRU.Add( preset.name );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_SYMBOL_FIELDS_TABLE::rebuildBomFmtPresetsWidget()
|
||||
{
|
||||
m_cbBomFmtPresets->Clear();
|
||||
|
||||
// Build the layers preset list.
|
||||
// By default, the presetAllLayers will be selected
|
||||
int idx = 0;
|
||||
int default_idx = 0;
|
||||
|
||||
for( std::pair<const wxString, BOM_FMT_PRESET>& pair : m_bomFmtPresets )
|
||||
{
|
||||
m_cbBomFmtPresets->Append( wxGetTranslation( pair.first ),
|
||||
static_cast<void*>( &pair.second ) );
|
||||
|
||||
if( pair.first == bomFmtPresetCSV.name )
|
||||
default_idx = idx;
|
||||
|
||||
idx++;
|
||||
}
|
||||
|
||||
m_cbBomFmtPresets->Append( wxT( "---" ) );
|
||||
m_cbBomFmtPresets->Append( _( "Save preset..." ) );
|
||||
m_cbBomFmtPresets->Append( _( "Delete preset..." ) );
|
||||
|
||||
// At least the built-in presets should always be present
|
||||
wxASSERT( !m_bomFmtPresets.empty() );
|
||||
|
||||
// Default preset: all Boms
|
||||
m_cbBomFmtPresets->SetSelection( default_idx );
|
||||
m_currentBomFmtPreset =
|
||||
static_cast<BOM_FMT_PRESET*>( m_cbBomFmtPresets->GetClientData( default_idx ) );
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_SYMBOL_FIELDS_TABLE::syncBomFmtPresetSelection()
|
||||
{
|
||||
BOM_FMT_PRESET& current = m_parent->Schematic().Settings().m_BomFmtSettings;
|
||||
|
||||
auto it = std::find_if( m_bomFmtPresets.begin(), m_bomFmtPresets.end(),
|
||||
[&]( const std::pair<const wxString, BOM_FMT_PRESET>& aPair )
|
||||
{
|
||||
return ( aPair.second.fieldDelimiter == current.fieldDelimiter
|
||||
&& aPair.second.stringDelimiter == current.stringDelimiter
|
||||
&& aPair.second.spacedRefs == current.spacedRefs
|
||||
&& aPair.second.removeTabs == current.removeTabs
|
||||
&& aPair.second.removeLineBreaks == current.removeLineBreaks );
|
||||
} );
|
||||
|
||||
if( it != m_bomFmtPresets.end() )
|
||||
{
|
||||
// Select the right m_cbBomFmtPresets item.
|
||||
// but these items are translated if they are predefined items.
|
||||
bool do_translate = it->second.readOnly;
|
||||
wxString text = do_translate ? wxGetTranslation( it->first ) : it->first;
|
||||
|
||||
m_cbBomFmtPresets->SetStringSelection( text );
|
||||
}
|
||||
else
|
||||
{
|
||||
m_cbBomFmtPresets->SetSelection( m_cbBomFmtPresets->GetCount() - 3 ); // separator
|
||||
}
|
||||
|
||||
m_currentBomFmtPreset = static_cast<BOM_FMT_PRESET*>(
|
||||
m_cbBomFmtPresets->GetClientData( m_cbBomFmtPresets->GetSelection() ) );
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_SYMBOL_FIELDS_TABLE::updateBomFmtPresetSelection( const wxString& aName )
|
||||
{
|
||||
// look at m_userBomFmtPresets to know if aName is a read only preset, or a user preset.
|
||||
// Read only presets have translated names in UI, so we have to use
|
||||
// a translated name in UI selection.
|
||||
// But for a user preset name we should search for aName (not translated)
|
||||
wxString ui_label = aName;
|
||||
|
||||
for( std::pair<const wxString, BOM_FMT_PRESET>& pair : m_bomFmtPresets )
|
||||
{
|
||||
if( pair.first != aName )
|
||||
continue;
|
||||
|
||||
if( pair.second.readOnly == true )
|
||||
ui_label = wxGetTranslation( aName );
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
int idx = m_cbBomFmtPresets->FindString( ui_label );
|
||||
|
||||
if( idx >= 0 && m_cbBomFmtPresets->GetSelection() != idx )
|
||||
{
|
||||
m_cbBomFmtPresets->SetSelection( idx );
|
||||
m_currentBomFmtPreset =
|
||||
static_cast<BOM_FMT_PRESET*>( m_cbBomFmtPresets->GetClientData( idx ) );
|
||||
}
|
||||
else if( idx < 0 )
|
||||
{
|
||||
m_cbBomFmtPresets->SetSelection( m_cbBomFmtPresets->GetCount() - 3 ); // separator
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_SYMBOL_FIELDS_TABLE::onBomFmtPresetChanged( wxCommandEvent& aEvent )
|
||||
{
|
||||
int count = m_cbBomFmtPresets->GetCount();
|
||||
int index = m_cbBomFmtPresets->GetSelection();
|
||||
|
||||
auto resetSelection =
|
||||
[&]()
|
||||
{
|
||||
if( m_currentBomFmtPreset )
|
||||
m_cbBomFmtPresets->SetStringSelection( m_currentBomFmtPreset->name );
|
||||
else
|
||||
m_cbBomFmtPresets->SetSelection( m_cbBomFmtPresets->GetCount() - 3 );
|
||||
};
|
||||
|
||||
if( index == count - 3 )
|
||||
{
|
||||
// Separator: reject the selection
|
||||
resetSelection();
|
||||
return;
|
||||
}
|
||||
else if( index == count - 2 )
|
||||
{
|
||||
// Save current state to new preset
|
||||
wxString name;
|
||||
|
||||
if( m_lastSelectedBomFmtPreset )
|
||||
name = m_lastSelectedBomFmtPreset->name;
|
||||
|
||||
wxTextEntryDialog dlg( this, _( "BOM preset name:" ), _( "Save BOM Preset" ), name );
|
||||
|
||||
if( dlg.ShowModal() != wxID_OK )
|
||||
{
|
||||
resetSelection();
|
||||
return;
|
||||
}
|
||||
|
||||
name = dlg.GetValue();
|
||||
bool exists = m_bomFmtPresets.count( name );
|
||||
|
||||
if( !exists )
|
||||
{
|
||||
m_bomFmtPresets[name] = BOM_FMT_PRESET( name,
|
||||
m_schSettings.m_BomFmtSettings.fieldDelimiter,
|
||||
m_schSettings.m_BomFmtSettings.stringDelimiter,
|
||||
m_schSettings.m_BomFmtSettings.spacedRefs,
|
||||
m_schSettings.m_BomFmtSettings.removeTabs,
|
||||
m_schSettings.m_BomFmtSettings.removeLineBreaks );
|
||||
}
|
||||
|
||||
BOM_FMT_PRESET* preset = &m_bomFmtPresets[name];
|
||||
m_currentBomFmtPreset = preset;
|
||||
|
||||
if( !exists )
|
||||
{
|
||||
index = m_cbBomFmtPresets->Insert( name, index - 1, static_cast<void*>( preset ) );
|
||||
}
|
||||
else
|
||||
{
|
||||
preset->fieldDelimiter = m_schSettings.m_BomFmtSettings.fieldDelimiter;
|
||||
preset->stringDelimiter = m_schSettings.m_BomFmtSettings.stringDelimiter;
|
||||
preset->spacedRefs = m_schSettings.m_BomFmtSettings.spacedRefs;
|
||||
preset->removeTabs = m_schSettings.m_BomFmtSettings.removeTabs;
|
||||
preset->removeLineBreaks = m_schSettings.m_BomFmtSettings.removeLineBreaks;
|
||||
|
||||
index = m_cbBomFmtPresets->FindString( name );
|
||||
m_bomFmtPresetMRU.Remove( name );
|
||||
}
|
||||
|
||||
m_cbBomFmtPresets->SetSelection( index );
|
||||
m_bomFmtPresetMRU.Insert( name, 0 );
|
||||
|
||||
return;
|
||||
}
|
||||
else if( index == count - 1 )
|
||||
{
|
||||
// Delete a preset
|
||||
wxArrayString headers;
|
||||
std::vector<wxArrayString> items;
|
||||
|
||||
headers.Add( _( "Presets" ) );
|
||||
|
||||
for( std::pair<const wxString, BOM_FMT_PRESET>& pair : m_bomFmtPresets )
|
||||
{
|
||||
if( !pair.second.readOnly )
|
||||
{
|
||||
wxArrayString item;
|
||||
item.Add( pair.first );
|
||||
items.emplace_back( item );
|
||||
}
|
||||
}
|
||||
|
||||
EDA_LIST_DIALOG dlg( this, _( "Delete Preset" ), headers, items );
|
||||
dlg.SetListLabel( _( "Select preset:" ) );
|
||||
|
||||
if( dlg.ShowModal() == wxID_OK )
|
||||
{
|
||||
wxString presetName = dlg.GetTextSelection();
|
||||
int idx = m_cbBomFmtPresets->FindString( presetName );
|
||||
|
||||
if( idx != wxNOT_FOUND )
|
||||
{
|
||||
m_bomFmtPresets.erase( presetName );
|
||||
|
||||
m_cbBomFmtPresets->Delete( idx );
|
||||
m_currentBomFmtPreset = nullptr;
|
||||
|
||||
m_bomFmtPresetMRU.Remove( presetName );
|
||||
}
|
||||
}
|
||||
|
||||
resetSelection();
|
||||
return;
|
||||
}
|
||||
|
||||
BOM_FMT_PRESET* preset =
|
||||
static_cast<BOM_FMT_PRESET*>( m_cbBomFmtPresets->GetClientData( index ) );
|
||||
m_currentBomFmtPreset = preset;
|
||||
|
||||
m_lastSelectedBomFmtPreset = ( !preset || preset->readOnly ) ? nullptr : preset;
|
||||
|
||||
if( preset )
|
||||
{
|
||||
doApplyBomFmtPreset( *preset );
|
||||
syncBomFmtPresetSelection();
|
||||
m_currentBomFmtPreset = preset;
|
||||
|
||||
if( !m_currentBomFmtPreset->name.IsEmpty() )
|
||||
{
|
||||
m_bomFmtPresetMRU.Remove( preset->name );
|
||||
m_bomFmtPresetMRU.Insert( preset->name, 0 );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_SYMBOL_FIELDS_TABLE::doApplyBomFmtPreset( const BOM_FMT_PRESET& aPreset )
|
||||
{
|
||||
m_textFieldDelimiter->ChangeValue( aPreset.fieldDelimiter );
|
||||
m_textStringDelimiter->ChangeValue( aPreset.stringDelimiter );
|
||||
m_checkSpacedRefs->SetValue( aPreset.spacedRefs );
|
||||
m_checkRemoveTabs->SetValue( aPreset.removeTabs );
|
||||
m_checkRemoveLineBreaks->SetValue( aPreset.removeLineBreaks );
|
||||
|
||||
PreviewRefresh();
|
||||
|
||||
m_schSettings.m_BomFmtSettings.fieldDelimiter = aPreset.fieldDelimiter;
|
||||
m_schSettings.m_BomFmtSettings.stringDelimiter = aPreset.stringDelimiter;
|
||||
m_schSettings.m_BomFmtSettings.spacedRefs = aPreset.spacedRefs;
|
||||
m_schSettings.m_BomFmtSettings.removeTabs = aPreset.removeTabs;
|
||||
m_schSettings.m_BomFmtSettings.removeLineBreaks = aPreset.removeLineBreaks;
|
||||
}
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
|
||||
class SCHEMATIC_SETTINGS;
|
||||
struct BOM_PRESET;
|
||||
struct BOM_FMT_PRESET;
|
||||
class SCH_EDIT_FRAME;
|
||||
class FIELDS_EDITOR_GRID_DATA_MODEL;
|
||||
|
||||
|
@ -79,16 +80,22 @@ private:
|
|||
void OnFilterText( wxCommandEvent& aEvent ) override;
|
||||
void OnFilterMouseMoved( wxMouseEvent& event ) override;
|
||||
void OnFieldsCtrlSelectionChanged( wxDataViewEvent& event ) override;
|
||||
bool TryBefore( wxEvent& aEvent ) override;
|
||||
|
||||
void OnOutputFileBrowseClicked( wxCommandEvent& event ) override;
|
||||
void OnPageChanged( wxNotebookEvent& event ) override;
|
||||
void OnPreviewRefresh( wxCommandEvent& event ) override;
|
||||
void PreviewRefresh();
|
||||
|
||||
std::vector<BOM_PRESET> GetUserBomPresets() const;
|
||||
void SetUserBomPresets( std::vector<BOM_PRESET>& aPresetList );
|
||||
void ApplyBomPreset( const wxString& aPresetName );
|
||||
void ApplyBomPreset( const BOM_PRESET& aPreset );
|
||||
|
||||
std::vector<BOM_FMT_PRESET> GetUserBomFmtPresets() const;
|
||||
void SetUserBomFmtPresets( std::vector<BOM_FMT_PRESET>& aPresetList );
|
||||
void ApplyBomFmtPreset( const wxString& aPresetName );
|
||||
void ApplyBomFmtPreset( const BOM_FMT_PRESET& aPreset );
|
||||
|
||||
private:
|
||||
void syncBomPresetSelection();
|
||||
void rebuildBomPresetsWidget();
|
||||
|
@ -105,6 +112,22 @@ private:
|
|||
static BOM_PRESET bomPresetGroupedByValue;
|
||||
static BOM_PRESET bomPresetGroupedByValueFootprint;
|
||||
|
||||
void syncBomFmtPresetSelection();
|
||||
void rebuildBomFmtPresetsWidget();
|
||||
void updateBomFmtPresetSelection( const wxString& aName );
|
||||
void onBomFmtPresetChanged( wxCommandEvent& aEvent );
|
||||
void doApplyBomFmtPreset( const BOM_FMT_PRESET& aPreset );
|
||||
void loadDefaultBomFmtPresets();
|
||||
|
||||
std::map<wxString, BOM_FMT_PRESET> m_bomFmtPresets;
|
||||
BOM_FMT_PRESET* m_currentBomFmtPreset;
|
||||
BOM_FMT_PRESET* m_lastSelectedBomFmtPreset;
|
||||
wxArrayString m_bomFmtPresetMRU;
|
||||
|
||||
static BOM_FMT_PRESET bomFmtPresetCSV;
|
||||
static BOM_FMT_PRESET bomFmtPresetSemicolons;
|
||||
static BOM_FMT_PRESET bomFmtPresetTSV;
|
||||
|
||||
SCH_EDIT_FRAME* m_parent;
|
||||
int m_fieldNameColWidth;
|
||||
int m_labelColWidth;
|
||||
|
|
|
@ -176,11 +176,11 @@ DIALOG_SYMBOL_FIELDS_TABLE_BASE::DIALOG_SYMBOL_FIELDS_TABLE_BASE( wxWindow* pare
|
|||
m_labelBomExportPresets->Wrap( -1 );
|
||||
fgExportOptions->Add( m_labelBomExportPresets, 0, wxALIGN_CENTER_VERTICAL|wxALIGN_RIGHT|wxALL, 5 );
|
||||
|
||||
wxString m_cbBomExportPresetsChoices[] = { _("CSV"), _("Semicolons"), _("(unsaved)") };
|
||||
int m_cbBomExportPresetsNChoices = sizeof( m_cbBomExportPresetsChoices ) / sizeof( wxString );
|
||||
m_cbBomExportPresets = new wxChoice( m_panelExport, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_cbBomExportPresetsNChoices, m_cbBomExportPresetsChoices, 0 );
|
||||
m_cbBomExportPresets->SetSelection( 0 );
|
||||
fgExportOptions->Add( m_cbBomExportPresets, 0, wxALL|wxEXPAND, 5 );
|
||||
wxString m_cbBomFmtPresetsChoices[] = { _("Default"), _("(unsaved)") };
|
||||
int m_cbBomFmtPresetsNChoices = sizeof( m_cbBomFmtPresetsChoices ) / sizeof( wxString );
|
||||
m_cbBomFmtPresets = new wxChoice( m_panelExport, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_cbBomFmtPresetsNChoices, m_cbBomFmtPresetsChoices, 0 );
|
||||
m_cbBomFmtPresets->SetSelection( 0 );
|
||||
fgExportOptions->Add( m_cbBomFmtPresets, 0, wxALL|wxEXPAND, 5 );
|
||||
|
||||
m_labelFieldDelimiter = new wxStaticText( m_panelExport, wxID_ANY, _("Field Delimeter:"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
m_labelFieldDelimiter->Wrap( -1 );
|
||||
|
@ -307,6 +307,7 @@ DIALOG_SYMBOL_FIELDS_TABLE_BASE::DIALOG_SYMBOL_FIELDS_TABLE_BASE( wxWindow* pare
|
|||
|
||||
// Connect Events
|
||||
this->Connect( wxEVT_CLOSE_WINDOW, wxCloseEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnClose ) );
|
||||
m_notebook1->Connect( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, wxNotebookEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPageChanged ), NULL, this );
|
||||
m_fieldsCtrl->Connect( wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED, wxDataViewEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnColumnItemToggled ), NULL, this );
|
||||
m_fieldsCtrl->Connect( wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED, wxDataViewEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnFieldsCtrlSelectionChanged ), NULL, this );
|
||||
m_fieldsCtrl->Connect( wxEVT_SIZE, wxSizeEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnSizeFieldList ), NULL, this );
|
||||
|
@ -323,6 +324,11 @@ DIALOG_SYMBOL_FIELDS_TABLE_BASE::DIALOG_SYMBOL_FIELDS_TABLE_BASE( wxWindow* pare
|
|||
m_grid->Connect( wxEVT_GRID_CELL_RIGHT_CLICK, wxGridEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnTableItemContextMenu ), NULL, this );
|
||||
m_grid->Connect( wxEVT_GRID_COL_SIZE, wxGridSizeEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnTableColSize ), NULL, this );
|
||||
m_grid->Connect( wxEVT_GRID_RANGE_SELECT, wxGridRangeSelectEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnTableRangeSelected ), NULL, this );
|
||||
m_textFieldDelimiter->Connect( wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPreviewRefresh ), NULL, this );
|
||||
m_textStringDelimiter->Connect( wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPreviewRefresh ), NULL, this );
|
||||
m_checkSpacedRefs->Connect( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPreviewRefresh ), NULL, this );
|
||||
m_checkRemoveTabs->Connect( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPreviewRefresh ), NULL, this );
|
||||
m_checkRemoveLineBreaks->Connect( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPreviewRefresh ), NULL, this );
|
||||
m_browseButton->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnOutputFileBrowseClicked ), NULL, this );
|
||||
m_bRefreshPreview->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPreviewRefresh ), NULL, this );
|
||||
m_buttonExport->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnExport ), NULL, this );
|
||||
|
@ -334,6 +340,7 @@ DIALOG_SYMBOL_FIELDS_TABLE_BASE::~DIALOG_SYMBOL_FIELDS_TABLE_BASE()
|
|||
{
|
||||
// Disconnect Events
|
||||
this->Disconnect( wxEVT_CLOSE_WINDOW, wxCloseEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnClose ) );
|
||||
m_notebook1->Disconnect( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, wxNotebookEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPageChanged ), NULL, this );
|
||||
m_fieldsCtrl->Disconnect( wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED, wxDataViewEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnColumnItemToggled ), NULL, this );
|
||||
m_fieldsCtrl->Disconnect( wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED, wxDataViewEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnFieldsCtrlSelectionChanged ), NULL, this );
|
||||
m_fieldsCtrl->Disconnect( wxEVT_SIZE, wxSizeEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnSizeFieldList ), NULL, this );
|
||||
|
@ -350,6 +357,11 @@ DIALOG_SYMBOL_FIELDS_TABLE_BASE::~DIALOG_SYMBOL_FIELDS_TABLE_BASE()
|
|||
m_grid->Disconnect( wxEVT_GRID_CELL_RIGHT_CLICK, wxGridEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnTableItemContextMenu ), NULL, this );
|
||||
m_grid->Disconnect( wxEVT_GRID_COL_SIZE, wxGridSizeEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnTableColSize ), NULL, this );
|
||||
m_grid->Disconnect( wxEVT_GRID_RANGE_SELECT, wxGridRangeSelectEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnTableRangeSelected ), NULL, this );
|
||||
m_textFieldDelimiter->Disconnect( wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPreviewRefresh ), NULL, this );
|
||||
m_textStringDelimiter->Disconnect( wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPreviewRefresh ), NULL, this );
|
||||
m_checkSpacedRefs->Disconnect( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPreviewRefresh ), NULL, this );
|
||||
m_checkRemoveTabs->Disconnect( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPreviewRefresh ), NULL, this );
|
||||
m_checkRemoveLineBreaks->Disconnect( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPreviewRefresh ), NULL, this );
|
||||
m_browseButton->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnOutputFileBrowseClicked ), NULL, this );
|
||||
m_bRefreshPreview->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnPreviewRefresh ), NULL, this );
|
||||
m_buttonExport->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_SYMBOL_FIELDS_TABLE_BASE::OnExport ), NULL, this );
|
||||
|
|
|
@ -119,6 +119,7 @@
|
|||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<event name="OnNotebookPageChanged">OnPageChanged</event>
|
||||
<object class="notebookpage" expanded="1">
|
||||
<property name="bitmap"></property>
|
||||
<property name="label">Edit</property>
|
||||
|
@ -240,8 +241,8 @@
|
|||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<object class="splitteritem" expanded="0">
|
||||
<object class="wxPanel" expanded="0">
|
||||
<object class="splitteritem" expanded="1">
|
||||
<object class="wxPanel" expanded="1">
|
||||
<property name="BottomDockable">1</property>
|
||||
<property name="LeftDockable">1</property>
|
||||
<property name="RightDockable">1</property>
|
||||
|
@ -292,16 +293,16 @@
|
|||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style">wxTAB_TRAVERSAL</property>
|
||||
<object class="wxBoxSizer" expanded="0">
|
||||
<object class="wxBoxSizer" expanded="1">
|
||||
<property name="minimum_size"></property>
|
||||
<property name="name">bLeftSizer</property>
|
||||
<property name="orient">wxVERTICAL</property>
|
||||
<property name="permission">none</property>
|
||||
<object class="sizeritem" expanded="0">
|
||||
<object class="sizeritem" expanded="1">
|
||||
<property name="border">5</property>
|
||||
<property name="flag">wxEXPAND|wxLEFT|wxRIGHT</property>
|
||||
<property name="proportion">0</property>
|
||||
<object class="wxBoxSizer" expanded="0">
|
||||
<object class="wxBoxSizer" expanded="1">
|
||||
<property name="minimum_size"></property>
|
||||
<property name="name">bPresets</property>
|
||||
<property name="orient">wxVERTICAL</property>
|
||||
|
@ -1522,7 +1523,7 @@
|
|||
<property name="caption"></property>
|
||||
<property name="caption_visible">1</property>
|
||||
<property name="center_pane">0</property>
|
||||
<property name="choices">"CSV" "Semicolons" "(unsaved)"</property>
|
||||
<property name="choices">"Default" "(unsaved)"</property>
|
||||
<property name="close_button">1</property>
|
||||
<property name="context_help"></property>
|
||||
<property name="context_menu">1</property>
|
||||
|
@ -1544,7 +1545,7 @@
|
|||
<property name="minimize_button">0</property>
|
||||
<property name="minimum_size"></property>
|
||||
<property name="moveable">1</property>
|
||||
<property name="name">m_cbBomExportPresets</property>
|
||||
<property name="name">m_cbBomFmtPresets</property>
|
||||
<property name="pane_border">1</property>
|
||||
<property name="pane_position"></property>
|
||||
<property name="pane_size"></property>
|
||||
|
@ -1691,6 +1692,7 @@
|
|||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<event name="OnText">OnPreviewRefresh</event>
|
||||
</object>
|
||||
</object>
|
||||
<object class="sizeritem" expanded="0">
|
||||
|
@ -1816,6 +1818,7 @@
|
|||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<event name="OnText">OnPreviewRefresh</event>
|
||||
</object>
|
||||
</object>
|
||||
<object class="sizeritem" expanded="1">
|
||||
|
@ -1941,6 +1944,7 @@
|
|||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<event name="OnCheckBox">OnPreviewRefresh</event>
|
||||
</object>
|
||||
</object>
|
||||
<object class="sizeritem" expanded="1">
|
||||
|
@ -2066,6 +2070,7 @@
|
|||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<event name="OnCheckBox">OnPreviewRefresh</event>
|
||||
</object>
|
||||
</object>
|
||||
<object class="sizeritem" expanded="1">
|
||||
|
@ -2191,6 +2196,7 @@
|
|||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<event name="OnCheckBox">OnPreviewRefresh</event>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
|
|
|
@ -71,7 +71,7 @@ class DIALOG_SYMBOL_FIELDS_TABLE_BASE : public DIALOG_SHIM
|
|||
WX_GRID* m_grid;
|
||||
wxPanel* m_panelExport;
|
||||
wxStaticText* m_labelBomExportPresets;
|
||||
wxChoice* m_cbBomExportPresets;
|
||||
wxChoice* m_cbBomFmtPresets;
|
||||
wxStaticText* m_labelFieldDelimiter;
|
||||
wxTextCtrl* m_textFieldDelimiter;
|
||||
wxStaticText* m_labelStringDelimiter;
|
||||
|
@ -96,6 +96,7 @@ class DIALOG_SYMBOL_FIELDS_TABLE_BASE : public DIALOG_SHIM
|
|||
|
||||
// Virtual event handlers, override them in your derived class
|
||||
virtual void OnClose( wxCloseEvent& event ) { event.Skip(); }
|
||||
virtual void OnPageChanged( wxNotebookEvent& event ) { event.Skip(); }
|
||||
virtual void OnColumnItemToggled( wxDataViewEvent& event ) { event.Skip(); }
|
||||
virtual void OnFieldsCtrlSelectionChanged( wxDataViewEvent& event ) { event.Skip(); }
|
||||
virtual void OnSizeFieldList( wxSizeEvent& event ) { event.Skip(); }
|
||||
|
@ -111,8 +112,8 @@ class DIALOG_SYMBOL_FIELDS_TABLE_BASE : public DIALOG_SHIM
|
|||
virtual void OnTableItemContextMenu( wxGridEvent& event ) { event.Skip(); }
|
||||
virtual void OnTableColSize( wxGridSizeEvent& event ) { event.Skip(); }
|
||||
virtual void OnTableRangeSelected( wxGridRangeSelectEvent& event ) { event.Skip(); }
|
||||
virtual void OnOutputFileBrowseClicked( wxCommandEvent& event ) { event.Skip(); }
|
||||
virtual void OnPreviewRefresh( wxCommandEvent& event ) { event.Skip(); }
|
||||
virtual void OnOutputFileBrowseClicked( wxCommandEvent& event ) { event.Skip(); }
|
||||
virtual void OnExport( wxCommandEvent& event ) { event.Skip(); }
|
||||
virtual void OnSaveAndContinue( wxCommandEvent& event ) { event.Skip(); }
|
||||
virtual void OnCancel( wxCommandEvent& event ) { event.Skip(); }
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
#include "fields_data_model.h"
|
||||
|
||||
|
||||
void FIELDS_EDITOR_GRID_DATA_MODEL::AddColumn( const wxString& aFieldName, const wxString& aLabel,
|
||||
bool aAddedByUser )
|
||||
{
|
||||
|
@ -569,7 +570,7 @@ int FIELDS_EDITOR_GRID_DATA_MODEL::GetDataWidth( int aCol )
|
|||
}
|
||||
|
||||
|
||||
wxString FIELDS_EDITOR_GRID_DATA_MODEL::Export( const BOM_EXPORT_SETTINGS& settings )
|
||||
wxString FIELDS_EDITOR_GRID_DATA_MODEL::Export( const BOM_FMT_PRESET& settings )
|
||||
{
|
||||
wxString out;
|
||||
|
||||
|
@ -587,23 +588,23 @@ wxString FIELDS_EDITOR_GRID_DATA_MODEL::Export( const BOM_EXPORT_SETTINGS& setti
|
|||
|
||||
auto formatField = [&]( wxString field, bool last ) -> wxString
|
||||
{
|
||||
if( settings.RemoveLineBreaks )
|
||||
if( settings.removeLineBreaks )
|
||||
{
|
||||
field.Replace( wxS( "\r" ), wxS( "" ) );
|
||||
field.Replace( wxS( "\n" ), wxS( "" ) );
|
||||
}
|
||||
|
||||
if( settings.RemoveTabs )
|
||||
if( settings.removeTabs )
|
||||
{
|
||||
field.Replace( wxS( "\t" ), wxS( "" ) );
|
||||
}
|
||||
|
||||
if( !settings.StringDelimiter.IsEmpty() )
|
||||
field.Replace( settings.StringDelimiter,
|
||||
settings.StringDelimiter + settings.StringDelimiter );
|
||||
if( !settings.stringDelimiter.IsEmpty() )
|
||||
field.Replace( settings.stringDelimiter,
|
||||
settings.stringDelimiter + settings.stringDelimiter );
|
||||
|
||||
return settings.StringDelimiter + field + settings.StringDelimiter
|
||||
+ ( last ? wxS( "\r\n" ) : settings.FieldDelimiter );
|
||||
return settings.stringDelimiter + field + settings.stringDelimiter
|
||||
+ ( last ? wxS( "\r\n" ) : settings.fieldDelimiter );
|
||||
};
|
||||
|
||||
// Column names
|
||||
|
@ -628,7 +629,7 @@ wxString FIELDS_EDITOR_GRID_DATA_MODEL::Export( const BOM_EXPORT_SETTINGS& setti
|
|||
continue;
|
||||
|
||||
// Get the unanottated version of the field, e.g. no "> " or "v " by
|
||||
out.Append( formatField( GetRawValue( (int) row, (int) col, settings.SpacedRefs ),
|
||||
out.Append( formatField( GetRawValue( (int) row, (int) col, settings.spacedRefs ),
|
||||
col == last_col ) );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,14 +10,6 @@
|
|||
// The internal field name (untranslated)
|
||||
#define FIELD_NAME_COLUMN 4
|
||||
|
||||
struct BOM_EXPORT_SETTINGS
|
||||
{
|
||||
wxString FieldDelimiter;
|
||||
wxString StringDelimiter;
|
||||
bool SpacedRefs;
|
||||
bool RemoveTabs;
|
||||
bool RemoveLineBreaks;
|
||||
};
|
||||
|
||||
enum GROUP_TYPE
|
||||
{
|
||||
|
@ -165,7 +157,7 @@ public:
|
|||
m_cols[aCol].m_show = show;
|
||||
}
|
||||
|
||||
wxString Export( const BOM_EXPORT_SETTINGS& settings );
|
||||
wxString Export( const BOM_FMT_PRESET& settings );
|
||||
|
||||
private:
|
||||
static bool cmp( const DATA_MODEL_ROW& lhGroup, const DATA_MODEL_ROW& rhGroup,
|
||||
|
|
|
@ -66,6 +66,39 @@ struct BOM_PRESET
|
|||
bool group_symbols;
|
||||
};
|
||||
|
||||
|
||||
struct BOM_FMT_PRESET
|
||||
{
|
||||
BOM_FMT_PRESET( const wxString& aName = wxEmptyString ) :
|
||||
name( aName ), readOnly( false ), fieldDelimiter( wxS( "\"" ) ),
|
||||
stringDelimiter( wxS( "," ) ), spacedRefs( false ), removeTabs( true ),
|
||||
removeLineBreaks( true )
|
||||
{
|
||||
}
|
||||
|
||||
BOM_FMT_PRESET( const wxString& aName, const wxString& aFieldDelimiter,
|
||||
const wxString& aStringDelimiter, bool spacedRefs, bool removeTabs,
|
||||
bool removeLineBreaks ) :
|
||||
name( aName ),
|
||||
readOnly( false ),
|
||||
fieldDelimiter( aFieldDelimiter ),
|
||||
stringDelimiter( aStringDelimiter ),
|
||||
spacedRefs( spacedRefs ),
|
||||
removeTabs( removeTabs ),
|
||||
removeLineBreaks( removeLineBreaks )
|
||||
{
|
||||
}
|
||||
|
||||
wxString name;
|
||||
bool readOnly;
|
||||
wxString fieldDelimiter;
|
||||
wxString stringDelimiter;
|
||||
bool spacedRefs;
|
||||
bool removeTabs;
|
||||
bool removeLineBreaks;
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* These settings were stored in SCH_BASE_FRAME previously.
|
||||
* The backing store is currently the project file.
|
||||
|
@ -128,6 +161,10 @@ public:
|
|||
BOM_PRESET m_BomSettings;
|
||||
std::vector<BOM_PRESET> m_BomPresets;
|
||||
|
||||
/// List of stored BOM format presets
|
||||
BOM_FMT_PRESET m_BomFmtSettings;
|
||||
std::vector<BOM_FMT_PRESET> m_BomFmtPresets;
|
||||
|
||||
/**
|
||||
* Ngspice simulator settings.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue