2007-06-05 12:10:51 +00:00
|
|
|
|
/***********************************/
|
|
|
|
|
/** pcbcfg() : configuration **/
|
|
|
|
|
/***********************************/
|
|
|
|
|
|
|
|
|
|
/* lit ou met a jour la configuration de PCBNEW */
|
|
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
#include "pcbnew.h"
|
|
|
|
|
#include "pcbplot.h"
|
|
|
|
|
#include "pcbcfg.h"
|
|
|
|
|
#include "worksheet.h"
|
|
|
|
|
#include "id.h"
|
2007-08-21 19:37:31 +00:00
|
|
|
|
#include "hotkeys_basic.h"
|
2007-09-06 11:52:26 +00:00
|
|
|
|
#include "hotkeys.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
|
#include "protos.h"
|
|
|
|
|
|
|
|
|
|
/* Routines Locales */
|
|
|
|
|
|
|
|
|
|
/* Variables locales */
|
|
|
|
|
|
2007-09-10 04:51:01 +00:00
|
|
|
|
#define HOTKEY_FILENAME wxT("pcbnew")
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
|
/***********************************************************/
|
|
|
|
|
void WinEDA_PcbFrame::Process_Config(wxCommandEvent& event)
|
|
|
|
|
/***********************************************************/
|
|
|
|
|
{
|
|
|
|
|
int id = event.GetId();
|
|
|
|
|
wxPoint pos;
|
|
|
|
|
wxClientDC dc(DrawPanel);
|
2007-08-21 19:37:31 +00:00
|
|
|
|
wxString FullFileName;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
|
DrawPanel->PrepareGraphicContext(&dc);
|
|
|
|
|
|
|
|
|
|
pos = GetPosition();
|
|
|
|
|
pos.x += 20; pos.y += 20;
|
|
|
|
|
|
|
|
|
|
switch( id )
|
|
|
|
|
{
|
|
|
|
|
case ID_COLORS_SETUP :
|
|
|
|
|
DisplayColorSetupFrame(this, pos);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_CONFIG_REQ : // Creation de la fenetre de configuration
|
|
|
|
|
InstallConfigFrame(pos);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_PCB_TRACK_SIZE_SETUP:
|
|
|
|
|
case ID_PCB_LOOK_SETUP:
|
|
|
|
|
case ID_OPTIONS_SETUP:
|
|
|
|
|
case ID_PCB_DRAWINGS_WIDTHS_SETUP:
|
|
|
|
|
InstallPcbOptionsFrame(pos, &dc, id);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_PCB_PAD_SETUP:
|
|
|
|
|
InstallPadOptionsFrame( NULL, NULL, pos);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_CONFIG_SAVE:
|
|
|
|
|
Update_config(this);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_CONFIG_READ:
|
2007-08-21 19:37:31 +00:00
|
|
|
|
FullFileName = GetScreen()->m_FileName.AfterLast('/');
|
2007-06-05 12:10:51 +00:00
|
|
|
|
ChangeFileNameExt(FullFileName, g_Prj_Config_Filename_ext);
|
|
|
|
|
FullFileName = EDA_FileSelector(_("Read config file"),
|
|
|
|
|
wxPathOnly(GetScreen()->m_FileName),/* Chemin par defaut */
|
|
|
|
|
FullFileName, /* nom fichier par defaut */
|
|
|
|
|
g_Prj_Config_Filename_ext, /* extension par defaut */
|
|
|
|
|
FullFileName, /* Masque d'affichage */
|
|
|
|
|
this,
|
|
|
|
|
wxFD_OPEN,
|
|
|
|
|
TRUE /* ne change pas de repertoire courant */
|
|
|
|
|
);
|
|
|
|
|
if ( FullFileName.IsEmpty()) break;
|
|
|
|
|
if ( ! wxFileExists(FullFileName) )
|
|
|
|
|
{
|
|
|
|
|
wxString msg;
|
|
|
|
|
msg.Printf(_("File %s not found"), FullFileName.GetData());
|
|
|
|
|
DisplayError(this, msg); break;
|
|
|
|
|
}
|
|
|
|
|
Read_Config(FullFileName );
|
2007-08-21 19:37:31 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_PREFERENCES_CREATE_CONFIG_HOTKEYS:
|
2007-09-19 15:29:50 +00:00
|
|
|
|
FullFileName = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
FullFileName += HOTKEY_FILENAME;
|
2007-08-21 19:37:31 +00:00
|
|
|
|
FullFileName += DEFAULT_HOTKEY_FILENAME_EXT;
|
2007-09-06 11:52:26 +00:00
|
|
|
|
WriteHotkeyConfigFile(FullFileName, s_Pcbnew_Editor_Hokeys_Descr, true);
|
2007-08-21 19:37:31 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_PREFERENCES_READ_CONFIG_HOTKEYS:
|
|
|
|
|
Read_Hotkey_Config( this, true);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2007-09-19 15:29:50 +00:00
|
|
|
|
case ID_PREFERENCES_EDIT_CONFIG_HOTKEYS:
|
|
|
|
|
{
|
|
|
|
|
FullFileName = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice );
|
|
|
|
|
FullFileName += HOTKEY_FILENAME;
|
|
|
|
|
FullFileName += DEFAULT_HOTKEY_FILENAME_EXT;
|
|
|
|
|
wxString editorname = GetEditorName();
|
|
|
|
|
if ( !editorname.IsEmpty() )
|
|
|
|
|
ExecuteFile(this, editorname, FullFileName);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case ID_PREFERENCES_HOTKEY_PATH_IS_HOME:
|
|
|
|
|
case ID_PREFERENCES_HOTKEY_PATH_IS_KICAD:
|
2007-09-20 09:13:40 +00:00
|
|
|
|
HandleHotkeyConfigMenuSelection( this, id );
|
2007-09-19 15:29:50 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2007-11-14 16:02:19 +00:00
|
|
|
|
case ID_PREFERENCES_HOTKEY_SHOW_CURRENT_LIST: // Display Current hotkey list for eeschema
|
|
|
|
|
DisplayHotkeyList( this, s_Board_Editor_Hokeys_Descr );
|
|
|
|
|
break;
|
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
default:
|
|
|
|
|
DisplayError(this, wxT("WinEDA_PcbFrame::Process_Config internal error"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-08-21 19:37:31 +00:00
|
|
|
|
/***************************************************************/
|
|
|
|
|
bool Read_Hotkey_Config( WinEDA_DrawFrame * frame, bool verbose )
|
|
|
|
|
/***************************************************************/
|
|
|
|
|
/*
|
2007-08-23 01:40:50 +00:00
|
|
|
|
* Read the hotkey files config for pcbnew and module_edit
|
2007-08-21 19:37:31 +00:00
|
|
|
|
*/
|
|
|
|
|
{
|
2007-09-19 15:29:50 +00:00
|
|
|
|
wxString FullFileName = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
FullFileName += HOTKEY_FILENAME;
|
2007-08-21 19:37:31 +00:00
|
|
|
|
FullFileName += DEFAULT_HOTKEY_FILENAME_EXT;
|
2007-09-06 11:52:26 +00:00
|
|
|
|
return frame->ReadHotkeyConfigFile(FullFileName, s_Pcbnew_Editor_Hokeys_Descr, verbose);
|
2007-08-23 01:40:50 +00:00
|
|
|
|
}
|
2007-08-21 19:37:31 +00:00
|
|
|
|
|
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/**************************************************************************/
|
|
|
|
|
bool Read_Config(const wxString & project_name)
|
|
|
|
|
/*************************************************************************/
|
|
|
|
|
/* lit la configuration, si elle n'a pas deja ete lue
|
|
|
|
|
1 - lit <nom fichier brd>.pro
|
|
|
|
|
2 - si non trouve lit <chemin de *.exe>/kicad.pro
|
|
|
|
|
3 - si non trouve: init des variables aux valeurs par defaut
|
|
|
|
|
|
|
|
|
|
Retourne TRUE si lu, FALSE si config non lue ou non modifi<EFBFBD>e
|
|
|
|
|
*/
|
|
|
|
|
{
|
|
|
|
|
wxString FullFileName;
|
|
|
|
|
int ii;
|
|
|
|
|
|
|
|
|
|
g_Prj_Config_Filename_ext = wxT(".pro");
|
|
|
|
|
FullFileName = project_name;
|
|
|
|
|
ChangeFileNameExt(FullFileName, g_Prj_Config_Filename_ext);
|
|
|
|
|
|
|
|
|
|
/* Init des valeurs par defaut */
|
|
|
|
|
g_LibName_List.Clear();
|
|
|
|
|
|
2007-10-26 06:08:19 +00:00
|
|
|
|
g_EDA_Appl->ReadProjectConfig( FullFileName,
|
2007-06-05 12:10:51 +00:00
|
|
|
|
GROUP, ParamCfgList, FALSE);
|
|
|
|
|
|
|
|
|
|
/* Traitement des variables particulieres: */
|
|
|
|
|
|
|
|
|
|
SetRealLibraryPath( wxT("modules") );
|
|
|
|
|
|
|
|
|
|
if (ScreenPcb)
|
|
|
|
|
{
|
|
|
|
|
ScreenPcb->m_Diviseur_Grille = Pcbdiv_grille;
|
|
|
|
|
ScreenPcb->m_UserGrid = g_UserGrid;
|
|
|
|
|
ScreenPcb->m_UserGridUnit = g_UserGrid_Unit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_DesignSettings.m_TrackWidhtHistory[0] = g_DesignSettings.m_CurrentTrackWidth;
|
|
|
|
|
g_DesignSettings.m_ViaSizeHistory[0] = g_DesignSettings.m_CurrentViaSize;
|
|
|
|
|
for ( ii = 1; ii < HIST0RY_NUMBER; ii++)
|
|
|
|
|
{
|
|
|
|
|
g_DesignSettings.m_TrackWidhtHistory[ii] = 0;
|
|
|
|
|
g_DesignSettings.m_ViaSizeHistory[ii] = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**********************************************************/
|
|
|
|
|
void WinEDA_PcbFrame::Update_config(wxWindow * displayframe)
|
|
|
|
|
/***********************************************************/
|
|
|
|
|
/* enregistrement de la config */
|
|
|
|
|
{
|
|
|
|
|
wxString FullFileName;
|
|
|
|
|
wxString mask;
|
|
|
|
|
|
|
|
|
|
mask = wxT("*") + g_Prj_Config_Filename_ext;
|
|
|
|
|
FullFileName = GetScreen()->m_FileName.AfterLast('/');
|
|
|
|
|
ChangeFileNameExt(FullFileName, g_Prj_Config_Filename_ext);
|
|
|
|
|
|
2007-09-14 10:07:38 +00:00
|
|
|
|
FullFileName = EDA_FileSelector(_("Save preferences"),
|
2007-06-05 12:10:51 +00:00
|
|
|
|
wxPathOnly(GetScreen()->m_FileName), /* Chemin par defaut */
|
|
|
|
|
FullFileName, /* nom fichier par defaut */
|
|
|
|
|
g_Prj_Config_Filename_ext, /* extension par defaut */
|
|
|
|
|
mask, /* Masque d'affichage */
|
|
|
|
|
displayframe,
|
|
|
|
|
wxFD_SAVE,
|
|
|
|
|
TRUE
|
|
|
|
|
);
|
|
|
|
|
if ( FullFileName.IsEmpty() ) return;
|
|
|
|
|
|
|
|
|
|
Pcbdiv_grille = GetScreen()->m_Diviseur_Grille;
|
|
|
|
|
|
|
|
|
|
/* ecriture de la configuration */
|
2007-10-26 06:08:19 +00:00
|
|
|
|
g_EDA_Appl->WriteProjectConfig(FullFileName, wxT("/pcbnew"), ParamCfgList);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|