2011-10-17 20:01:27 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
|
|
|
* Copyright (C) 2009 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
* Copyright (C) 1992-2011 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
|
|
|
|
*/
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
/**
|
|
|
|
* @file gerbview_config.cpp
|
2011-09-30 18:15:37 +00:00
|
|
|
* @brief GerbView configuration.
|
2011-09-23 13:57:12 +00:00
|
|
|
*/
|
2007-09-11 07:34:46 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <id.h>
|
|
|
|
#include <common.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <gestfich.h>
|
|
|
|
#include <param_config.h>
|
|
|
|
#include <colors_selection.h>
|
|
|
|
|
|
|
|
#include <gerbview.h>
|
|
|
|
#include <hotkeys.h>
|
|
|
|
#include <dialog_hotkeys_editor.h>
|
2008-03-04 04:22:27 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2011-10-17 20:01:27 +00:00
|
|
|
#define GROUP wxT("/gerbview")
|
|
|
|
|
|
|
|
#define INSETUP true
|
|
|
|
|
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
void GERBVIEW_FRAME::Process_Config( wxCommandEvent& event )
|
2007-09-11 07:34:46 +00:00
|
|
|
{
|
2007-09-19 15:29:50 +00:00
|
|
|
int id = event.GetId();
|
|
|
|
wxString FullFileName;
|
|
|
|
|
|
|
|
switch( id )
|
|
|
|
{
|
2011-12-31 05:44:00 +00:00
|
|
|
// Hotkey IDs
|
2010-08-28 18:02:24 +00:00
|
|
|
case ID_PREFERENCES_HOTKEY_EXPORT_CONFIG:
|
|
|
|
ExportHotkeyConfigToFile( s_Gerbview_Hokeys_Descr );
|
2007-09-19 15:29:50 +00:00
|
|
|
break;
|
|
|
|
|
2010-08-28 18:02:24 +00:00
|
|
|
case ID_PREFERENCES_HOTKEY_IMPORT_CONFIG:
|
|
|
|
ImportHotkeyConfigFromFile( s_Gerbview_Hokeys_Descr );
|
2007-09-19 15:29:50 +00:00
|
|
|
break;
|
|
|
|
|
2010-08-28 18:02:24 +00:00
|
|
|
case ID_PREFERENCES_HOTKEY_SHOW_EDITOR:
|
|
|
|
InstallHotkeyFrame( this, s_Gerbview_Hokeys_Descr );
|
2007-09-19 15:29:50 +00:00
|
|
|
break;
|
|
|
|
|
2009-11-09 14:00:22 +00:00
|
|
|
case ID_PREFERENCES_HOTKEY_SHOW_CURRENT_LIST:
|
2011-03-12 09:50:21 +00:00
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
// Display current hotkey list for GerbView.
|
2008-09-03 16:19:06 +00:00
|
|
|
DisplayHotkeyList( this, s_Gerbview_Hokeys_Descr );
|
|
|
|
break;
|
|
|
|
|
2007-09-19 15:29:50 +00:00
|
|
|
default:
|
2011-04-02 16:14:07 +00:00
|
|
|
wxMessageBox( wxT( "GERBVIEW_FRAME::Process_Config error" ) );
|
|
|
|
break;
|
2007-09-19 15:29:50 +00:00
|
|
|
}
|
2007-09-11 07:34:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-31 05:44:00 +00:00
|
|
|
PARAM_CFG_ARRAY& GERBVIEW_FRAME::GetConfigurationSettings()
|
2007-09-11 07:34:46 +00:00
|
|
|
{
|
2011-03-12 09:50:21 +00:00
|
|
|
if( !m_configSettings.empty() )
|
|
|
|
return m_configSettings;
|
|
|
|
|
|
|
|
m_configSettings.push_back( new PARAM_CFG_INT( true, wxT( "Units" ),
|
2011-09-23 13:57:12 +00:00
|
|
|
(int*) &g_UserUnit, 0, 0, 1 ) );
|
2011-03-12 09:50:21 +00:00
|
|
|
|
|
|
|
m_configSettings.push_back( new PARAM_CFG_INT( true, wxT( "DrawModeOption" ),
|
2011-09-23 13:57:12 +00:00
|
|
|
&m_displayMode, 2, 0, 2 ) );
|
2011-03-12 09:50:21 +00:00
|
|
|
m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true,
|
|
|
|
wxT( "DCodeColor" ),
|
|
|
|
&g_ColorsSettings.m_ItemsColors[
|
|
|
|
DCODES_VISIBLE],
|
|
|
|
WHITE ) );
|
2013-01-06 13:31:49 +00:00
|
|
|
m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true,
|
|
|
|
wxT( "NegativeObjectsColor" ),
|
|
|
|
&g_ColorsSettings.m_ItemsColors[
|
|
|
|
NEGATIVE_OBJECTS_VISIBLE],
|
|
|
|
DARKGRAY ) );
|
2011-03-12 09:50:21 +00:00
|
|
|
m_configSettings.push_back( new PARAM_CFG_BOOL( true,
|
2011-03-14 21:19:13 +00:00
|
|
|
wxT( "DisplayPolarCoordinates" ),
|
2012-05-04 17:44:42 +00:00
|
|
|
&m_DisplayOptions.m_DisplayPolarCood,
|
2011-03-12 09:50:21 +00:00
|
|
|
false ) );
|
|
|
|
|
2011-12-31 05:44:00 +00:00
|
|
|
// Default colors for layers 0 to 31
|
2012-09-02 12:06:47 +00:00
|
|
|
static const EDA_COLOR_T color_default[] = {
|
2011-03-12 09:50:21 +00:00
|
|
|
GREEN, BLUE, LIGHTGRAY, MAGENTA,
|
|
|
|
RED, DARKGREEN, BROWN, MAGENTA,
|
|
|
|
LIGHTGRAY, BLUE, GREEN, CYAN,
|
|
|
|
LIGHTRED, LIGHTMAGENTA, YELLOW, RED,
|
|
|
|
BLUE, BROWN, LIGHTCYAN, RED,
|
|
|
|
MAGENTA, CYAN, BROWN, MAGENTA,
|
|
|
|
LIGHTGRAY, BLUE, GREEN, DARKCYAN,
|
2011-12-31 05:44:00 +00:00
|
|
|
YELLOW, LIGHTMAGENTA, YELLOW, LIGHTGRAY,
|
2011-03-12 09:50:21 +00:00
|
|
|
};
|
|
|
|
|
2011-12-31 05:44:00 +00:00
|
|
|
// List of keywords used as identifiers in config.
|
|
|
|
// They *must* be static const and not temporarily created,
|
2011-03-14 21:19:13 +00:00
|
|
|
// because the parameter list that use these keywords does not store them,
|
2011-12-31 05:44:00 +00:00
|
|
|
// just points to them.
|
|
|
|
static const wxChar* keys[] = {
|
|
|
|
wxT("ColorLayer0"), wxT("ColorLayer1"), wxT("ColorLayer2"), wxT("ColorLayer3"),
|
|
|
|
wxT("ColorLayer4"), wxT("ColorLayer5"), wxT("ColorLayer6"), wxT("ColorLayer7"),
|
|
|
|
wxT("ColorLayer8"), wxT("ColorLayer9"), wxT("ColorLayer10"), wxT("ColorLayer11"),
|
|
|
|
wxT("ColorLayer12"), wxT("ColorLayer13"), wxT("ColorLayer14"), wxT("ColorLayer15"),
|
|
|
|
|
|
|
|
wxT("ColorLayer16"), wxT("ColorLayer17"), wxT("ColorLayer18"), wxT("ColorLayer19"),
|
|
|
|
wxT("ColorLayer20"), wxT("ColorLayer21"), wxT("ColorLayer22"), wxT("ColorLayer23"),
|
|
|
|
wxT("ColorLayer24"), wxT("ColorLayer25"), wxT("ColorLayer26"), wxT("ColorLayer27"),
|
|
|
|
wxT("ColorLayer28"), wxT("ColorLayer29"), wxT("ColorLayer30"), wxT("ColorLayer31"),
|
2011-03-12 09:50:21 +00:00
|
|
|
};
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2011-12-31 05:44:00 +00:00
|
|
|
wxASSERT( DIM(keys) == DIM(color_default) );
|
|
|
|
wxASSERT( DIM(keys) <= DIM(g_ColorsSettings.m_LayersColors) && DIM(keys) <= DIM(color_default) );
|
|
|
|
|
|
|
|
for( unsigned i = 0; i < DIM(keys); ++i )
|
2011-03-12 09:50:21 +00:00
|
|
|
{
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T* prm = &g_ColorsSettings.m_LayersColors[i];
|
2011-12-31 05:44:00 +00:00
|
|
|
|
|
|
|
PARAM_CFG_SETCOLOR* prm_entry =
|
|
|
|
new PARAM_CFG_SETCOLOR( true, keys[i], prm, color_default[i] );
|
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
m_configSettings.push_back( prm_entry );
|
|
|
|
}
|
2007-09-19 15:29:50 +00:00
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
return m_configSettings;
|
2007-09-11 07:34:46 +00:00
|
|
|
}
|