|
|
/******************//** eeconfig.cpp **//******************/
#include "fctsys.h"
#include "appl_wxstruct.h"
#include "gr_basic.h"
#include "common.h"
#include "eeschema_id.h"
#include "class_drawpanel.h"
#include "confirm.h"
#include "gestfich.h"
#include "program.h"
#include "general.h"
#include "protos.h"
#include "eeschema_config.h"
#include "worksheet.h"
#include "hotkeys.h"
#include "dialog_eeschema_options.h"
#define HOTKEY_FILENAME wxT( "eeschema" )
void WinEDA_SchematicFrame::Process_Config( wxCommandEvent& event ){ int id = event.GetId(); wxPoint pos; wxFileName fn;
wxGetMousePosition( &pos.x, &pos.y );
pos.y += 5;
switch( id ) { case ID_COLORS_SETUP: DisplayColorSetupFrame( this, pos ); break;
case ID_CONFIG_REQ: // Display the configuration window.
InstallConfigFrame( pos ); break;
case ID_CONFIG_SAVE: SaveProjectFile( this, false ); break;
case ID_CONFIG_READ: { fn = g_RootSheet->m_AssociatedScreen->m_FileName; fn.SetExt( ProjectFileExtension );
wxFileDialog dlg( this, _( "Read Project File" ), fn.GetPath(), fn.GetFullName(), ProjectFileWildcard, wxFD_OPEN | wxFD_FILE_MUST_EXIST );
if( dlg.ShowModal() == wxID_CANCEL ) break;
LoadProjectFile( fn.GetFullPath(), TRUE ); } break;
/* Hotkey IDs */ case ID_PREFERENCES_HOTKEY_CREATE_CONFIG: fn = wxFileName( ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice ), HOTKEY_FILENAME, DEFAULT_HOTKEY_FILENAME_EXT ); WriteHotkeyConfigFile( fn.GetFullPath(), s_Eeschema_Hokeys_Descr, true ); break;
case ID_PREFERENCES_HOTKEY_READ_CONFIG: Read_Hotkey_Config( this, true ); break;
case ID_PREFERENCES_HOTKEY_EDIT_CONFIG: { fn = wxFileName( ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice ), HOTKEY_FILENAME, DEFAULT_HOTKEY_FILENAME_EXT ); wxString editorname = wxGetApp().GetEditorName(); if( !editorname.IsEmpty() ) ExecuteFile( this, editorname, QuoteFullPath( fn ) ); } break;
case ID_PREFERENCES_HOTKEY_PATH_IS_HOME: case ID_PREFERENCES_HOTKEY_PATH_IS_KICAD: HandleHotkeyConfigMenuSelection( this, id ); break;
case ID_PREFERENCES_HOTKEY_SHOW_CURRENT_LIST: // Display current hotkey list for eeschema.
DisplayHotkeyList( this, s_Schematic_Hokeys_Descr ); break;
default: DisplayError( this, wxT( "WinEDA_SchematicFrame::Process_Config internal error" ) ); }}
void WinEDA_SchematicFrame::OnSetOptions( wxCommandEvent& event ){ wxArrayString units; GridArray& grid_list = GetBaseScreen()->m_GridList;
DIALOG_EESCHEMA_OPTIONS dlg( this );
wxLogDebug( wxT( "Current grid array index %d." ), grid_list.Index( GetBaseScreen()->GetGrid() ) ); units.Add( GetUnitsLabel( INCHES ) ); units.Add( GetUnitsLabel( MILLIMETRE ) );
dlg.SetUnits( units, g_UnitMetric ); dlg.SetGridSizes( grid_list, GetBaseScreen()->GetGridId() ); dlg.SetLineWidth( g_DrawDefaultLineThickness ); dlg.SetTextSize( g_DefaultTextLabelSize ); dlg.SetRepeatHorizontal( g_RepeatStep.x ); dlg.SetRepeatVertical( g_RepeatStep.y ); dlg.SetRepeatLabel( g_RepeatDeltaLabel ); dlg.SetShowGrid( m_Draw_Grid ); dlg.SetShowHiddenPins( m_ShowAllPins ); dlg.SetEnableAutoPan( DrawPanel->m_AutoPAN_Enable ); dlg.SetEnableAnyBusOrientation( g_HVLines ); dlg.SetShowPageLimits( g_ShowPageLimits ); dlg.Layout(); dlg.Fit(); dlg.SetMinSize( dlg.GetSize() );
if( dlg.ShowModal() == wxID_CANCEL ) return;
g_UnitMetric = dlg.GetUnitsSelection(); GetBaseScreen()->SetGrid( grid_list[ (size_t) dlg.GetGridSelection() ].m_Size ); g_DrawDefaultLineThickness = dlg.GetLineWidth(); g_DefaultTextLabelSize = dlg.GetTextSize(); g_RepeatStep.x = dlg.GetRepeatHorizontal(); g_RepeatStep.y = dlg.GetRepeatVertical(); g_RepeatDeltaLabel = dlg.GetRepeatLabel(); m_Draw_Grid = dlg.GetShowGrid(); m_ShowAllPins = dlg.GetShowHiddenPins(); DrawPanel->m_AutoPAN_Enable = dlg.GetEnableAutoPan(); g_HVLines = dlg.GetEnableAnyBusOrientation(); g_ShowPageLimits = dlg.GetShowPageLimits(); DrawPanel->Refresh( true );}
/*
* Read the hotkey files config for eeschema and libedit */bool Read_Hotkey_Config( WinEDA_DrawFrame* frame, bool verbose ){ wxString FullFileName = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice );
FullFileName += HOTKEY_FILENAME; FullFileName += wxT( "." ); FullFileName += DEFAULT_HOTKEY_FILENAME_EXT; frame->ReadHotkeyConfigFile( FullFileName, s_Eeschema_Hokeys_Descr, verbose );
return TRUE;}
/**
* Return project file parameter list for EESchema. * * Populate the project file parameter array specific to EESchema if it hasn't * already been populated and return a reference to the array to the caller. * Creating the parameter list at run time has the advantage of being able * to define local variables. The old method of statically building the array * at compile time requiring global variable definitions. */PARAM_CFG_ARRAY& WinEDA_SchematicFrame::GetProjectFileParameters( void ){ if( !m_projectFileParams.empty() ) return m_projectFileParams;
m_projectFileParams.push_back( new PARAM_CFG_WXSTRING( wxT( "LibDir" ), &m_UserLibraryPath ) ); m_projectFileParams.push_back( new PARAM_CFG_LIBNAME_LIST( wxT( "LibName" ), &m_ComponentLibFiles, GROUPLIB ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "NetFmt" ), &m_NetlistFormat, NET_TYPE_PCBNEW, NET_TYPE_PCBNEW, NET_TYPE_CUSTOM_MAX ) );
/* NOTE: Left as global until supporting code can be fixed. */ m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "HPGLSpd" ), &g_HPGL_Pen_Descr.m_Pen_Speed, 20, 2, 45 ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "HPGLDm" ), &g_HPGL_Pen_Descr.m_Pen_Diam, 15, 1, 150 ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "HPGLNum" ), &g_HPGL_Pen_Descr.m_Pen_Num, 1, 1, 8 ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offX_A4" ), &g_Sheet_A4.m_Offset.x ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offY_A4" ), &g_Sheet_A4.m_Offset.y ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offX_A3" ), &g_Sheet_A3.m_Offset.x ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offY_A3" ), &g_Sheet_A3.m_Offset.y ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offX_A2" ), &g_Sheet_A2.m_Offset.x ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offY_A2" ), &g_Sheet_A2.m_Offset.y ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offX_A1" ), &g_Sheet_A1.m_Offset.x ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offY_A1" ), &g_Sheet_A1.m_Offset.y ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offX_A0" ), &g_Sheet_A0.m_Offset.x ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offY_A0" ), &g_Sheet_A0.m_Offset.y ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offX_A" ), &g_Sheet_A.m_Offset.x ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offY_A" ), &g_Sheet_A.m_Offset.y ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offX_B" ), &g_Sheet_B.m_Offset.x ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offY_B" ), &g_Sheet_B.m_Offset.y ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offX_C" ), &g_Sheet_C.m_Offset.x ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offY_C" ), &g_Sheet_C.m_Offset.y ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offX_D" ), &g_Sheet_D.m_Offset.x ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offY_D" ), &g_Sheet_D.m_Offset.y ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offX_E" ), &g_Sheet_E.m_Offset.x ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "offY_E" ), &g_Sheet_E.m_Offset.y ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "RptD_X" ), &g_RepeatStep.x, 0, -1000, +1000 ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "RptD_Y" ), &g_RepeatStep.y, 100, -1000, +1000 ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "RptLab" ), &g_RepeatDeltaLabel, 1, -10, +10 ) ); m_projectFileParams.push_back( new PARAM_CFG_WXSTRING( wxT( "SimCmd" ), &g_SimulatorCommandLine ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "UseNetN" ), &g_OptNetListUseNames, 0, 0, 1 ) ); m_projectFileParams.push_back( new PARAM_CFG_INT( wxT( "LabSize" ), &g_DefaultTextLabelSize, DEFAULT_SIZE_TEXT, 0, 1000 ) );
return m_projectFileParams;}
/*
* Load the Kicad project file (*.pro) settings specific to EESchema. */bool WinEDA_SchematicFrame::LoadProjectFile( const wxString& CfgFileName, bool ForceRereadConfig ){ wxFileName fn; bool IsRead = TRUE; wxArrayString liblist_tmp = m_ComponentLibFiles;
if( CfgFileName.IsEmpty() ) fn = g_RootSheet->m_AssociatedScreen->m_FileName; else fn = CfgFileName; m_ComponentLibFiles.Clear();
/* Change the schematic file extension (.sch) to the project file
* extension (.pro). */ fn.SetExt( ProjectFileExtension );
wxGetApp().RemoveLibraryPath( m_UserLibraryPath );
if( !wxGetApp().ReadProjectConfig( fn.GetFullPath(), GROUP, GetProjectFileParameters(), ForceRereadConfig ? FALSE : TRUE ) ) { m_ComponentLibFiles = liblist_tmp; IsRead = FALSE; }
/* User library path takes precedent over default library search paths. */ wxGetApp().InsertLibraryPath( m_UserLibraryPath, 1 );
/* If the list is void, force loadind the library "power.lib" that is
* the "standard" library for power symbols. */ if( m_ComponentLibFiles.GetCount() == 0 ) m_ComponentLibFiles.Add( wxT( "power" ) );
SetDrawBgColor( g_DrawBgColor ); LoadLibraries(); GetBaseScreen()->SetGrid( ID_POPUP_GRID_LEVEL_1000 + m_LastGridSizeId );
return IsRead;}
/*
* Save the Kicad project file (*.pro) settings specific to EESchema. */void WinEDA_SchematicFrame::SaveProjectFile( wxWindow* displayframe, bool askoverwrite ){ wxFileName fn;
fn = g_RootSheet->m_AssociatedScreen->m_FileName /*ConfigFileName*/; fn.SetExt( ProjectFileExtension );
int options = wxFD_SAVE; if( askoverwrite ) options |= wxFD_OVERWRITE_PROMPT; wxFileDialog dlg( this, _( "Save Project Settings" ), wxGetCwd(), fn.GetFullName(), ProjectFileWildcard, options );
if( dlg.ShowModal() == wxID_CANCEL ) return;
wxGetApp().WriteProjectConfig( dlg.GetPath(), GROUP, GetProjectFileParameters() );}
static const wxString DefaultDrawLineWidthEntry( wxT( "DefaultDrawLineWidth" ) );static const wxString ShowHiddenPinsEntry( wxT( "ShowHiddenPins" ) );static const wxString HorzVertLinesOnlyEntry( wxT( "HorizVertLinesOnly" ) );
/*
* Return the EESchema applications settings list. * * This replaces the old statically define list that had the project * file settings and the application settings mixed together. This * was confusing and caused some settings to get saved and loaded * incorrectly. Currently, only the settings that are needed at start * up by the main window are defined here. There are other locally used * settings scattered thoughout the EESchema source code. If you need * to define a configuration setting that need to be loaded at run time, * this is the place to define it. * * TODO: Define the configuration variables as member variables instead of * global variables or move them to the object class where they are * used. */PARAM_CFG_ARRAY& WinEDA_SchematicFrame::GetConfigurationSettings( void ){ if( !m_configSettings.empty() ) return m_configSettings;
m_configSettings.push_back( new PARAM_CFG_INT( true, wxT( "Unite" ), &g_UnitMetric, 0, 0, 1 ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColWire" ), &g_LayerDescr.LayerColor[LAYER_WIRE], GREEN ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorBus" ), &g_LayerDescr.LayerColor[LAYER_BUS], BLUE ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorConn" ), &g_LayerDescr.LayerColor[LAYER_JUNCTION], GREEN ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorLlab" ), &g_LayerDescr.LayerColor[LAYER_LOCLABEL], BLACK ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorHlab" ), &g_LayerDescr.LayerColor[LAYER_HIERLABEL], BROWN ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorGbllab" ), &g_LayerDescr.LayerColor[LAYER_GLOBLABEL], RED ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorPinF" ), &g_LayerDescr.LayerColor[LAYER_PINFUN], MAGENTA ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColPinN" ), &g_LayerDescr.LayerColor[LAYER_PINNUM], RED ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorPNam" ), &g_LayerDescr.LayerColor[LAYER_PINNAM], CYAN ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorField" ), &g_LayerDescr.LayerColor[LAYER_FIELDS], MAGENTA ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorRef" ), &g_LayerDescr.LayerColor[LAYER_REFERENCEPART], CYAN ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorValue" ), &g_LayerDescr.LayerColor[LAYER_VALUEPART], CYAN ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorNote" ), &g_LayerDescr.LayerColor[LAYER_NOTES], LIGHTBLUE ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorBody" ), &g_LayerDescr.LayerColor[LAYER_DEVICE], RED ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorBodyBg" ), &g_LayerDescr.LayerColor[LAYER_DEVICE_BACKGROUND], LIGHTYELLOW ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorNetN" ), &g_LayerDescr.LayerColor[LAYER_NETNAM], DARKGRAY ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorPin" ), &g_LayerDescr.LayerColor[LAYER_PIN], RED ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorSheet" ), &g_LayerDescr.LayerColor[LAYER_SHEET], MAGENTA ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorSheetFileName" ), &g_LayerDescr.LayerColor[LAYER_SHEETFILENAME], BROWN ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorSheetName" ), &g_LayerDescr.LayerColor[LAYER_SHEETNAME], CYAN ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorSheetLab" ), &g_LayerDescr.LayerColor[LAYER_SHEETLABEL], BROWN ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorNoCo" ), &g_LayerDescr.LayerColor[LAYER_NOCONNECT], BLUE ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorErcW" ), &g_LayerDescr.LayerColor[LAYER_ERC_WARN], GREEN ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorErcE" ), &g_LayerDescr.LayerColor[LAYER_ERC_ERR], RED ) ); m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true, wxT( "ColorGrid" ), &g_GridColor, DARKDARKGRAY ) ); return m_configSettings;}
/*
* Load the EESchema configuration parameters. */void WinEDA_SchematicFrame::LoadSettings(){ wxASSERT( wxGetApp().m_EDA_Config != NULL );
wxConfig* cfg = wxGetApp().m_EDA_Config;
WinEDA_DrawFrame::LoadSettings();
wxGetApp().ReadCurrentSetupValues( GetConfigurationSettings() );
g_DrawDefaultLineThickness = cfg->Read( DefaultDrawLineWidthEntry, (long) 6 ); cfg->Read( ShowHiddenPinsEntry, &m_ShowAllPins, false ); cfg->Read( HorzVertLinesOnlyEntry, &g_HVLines, true );}
/*
* Save the EESchema configuration parameters. */void WinEDA_SchematicFrame::SaveSettings(){ wxASSERT( wxGetApp().m_EDA_Config != NULL );
wxConfig* cfg = wxGetApp().m_EDA_Config;
WinEDA_DrawFrame::SaveSettings();
wxGetApp().SaveCurrentSetupValues( GetConfigurationSettings() );
cfg->Write( DefaultDrawLineWidthEntry, (long) g_DrawDefaultLineThickness ); cfg->Write( ShowHiddenPinsEntry, m_ShowAllPins ); cfg->Write( HorzVertLinesOnlyEntry, g_HVLines );}
|