140 lines
5.0 KiB
C++
140 lines
5.0 KiB
C++
/*
|
|
* 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
|
|
*/
|
|
|
|
/**
|
|
* @file gerbview_config.cpp
|
|
* @brief GerbView configuration.
|
|
*/
|
|
|
|
#include "fctsys.h"
|
|
#include "id.h"
|
|
#include "common.h"
|
|
#include "class_drawpanel.h"
|
|
#include "gestfich.h"
|
|
#include "pcbcommon.h"
|
|
#include "param_config.h"
|
|
#include "colors_selection.h"
|
|
|
|
#include "gerbview.h"
|
|
#include "hotkeys.h"
|
|
#include "class_board_design_settings.h"
|
|
#include "dialog_hotkeys_editor.h"
|
|
|
|
|
|
#define GROUP wxT("/gerbview")
|
|
|
|
#define INSETUP true
|
|
|
|
|
|
void GERBVIEW_FRAME::Process_Config( wxCommandEvent& event )
|
|
{
|
|
int id = event.GetId();
|
|
wxString FullFileName;
|
|
|
|
switch( id )
|
|
{
|
|
/* Hotkey IDs */
|
|
case ID_PREFERENCES_HOTKEY_EXPORT_CONFIG:
|
|
ExportHotkeyConfigToFile( s_Gerbview_Hokeys_Descr );
|
|
break;
|
|
|
|
case ID_PREFERENCES_HOTKEY_IMPORT_CONFIG:
|
|
ImportHotkeyConfigFromFile( s_Gerbview_Hokeys_Descr );
|
|
break;
|
|
|
|
case ID_PREFERENCES_HOTKEY_SHOW_EDITOR:
|
|
InstallHotkeyFrame( this, s_Gerbview_Hokeys_Descr );
|
|
break;
|
|
|
|
case ID_PREFERENCES_HOTKEY_SHOW_CURRENT_LIST:
|
|
|
|
// Display current hotkey list for GerbView.
|
|
DisplayHotkeyList( this, s_Gerbview_Hokeys_Descr );
|
|
break;
|
|
|
|
default:
|
|
wxMessageBox( wxT( "GERBVIEW_FRAME::Process_Config error" ) );
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
PARAM_CFG_ARRAY& GERBVIEW_FRAME::GetConfigurationSettings( void )
|
|
{
|
|
if( !m_configSettings.empty() )
|
|
return m_configSettings;
|
|
|
|
m_configSettings.push_back( new PARAM_CFG_INT( true, wxT( "Units" ),
|
|
(int*) &g_UserUnit, 0, 0, 1 ) );
|
|
|
|
m_configSettings.push_back( new PARAM_CFG_INT( true, wxT( "DrawModeOption" ),
|
|
&m_displayMode, 2, 0, 2 ) );
|
|
m_configSettings.push_back( new PARAM_CFG_SETCOLOR( true,
|
|
wxT( "DCodeColor" ),
|
|
&g_ColorsSettings.m_ItemsColors[
|
|
DCODES_VISIBLE],
|
|
WHITE ) );
|
|
|
|
m_configSettings.push_back( new PARAM_CFG_BOOL( true,
|
|
wxT( "DisplayPolarCoordinates" ),
|
|
&DisplayOpt.DisplayPolarCood,
|
|
false ) );
|
|
|
|
// Color select parameters:
|
|
static const int color_default[32] = // Default values for color layers 0 to 31
|
|
{
|
|
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,
|
|
YELLOW, LIGHTMAGENTA, YELLOW, LIGHTGRAY
|
|
};
|
|
|
|
// List of keywords used as identifiers in config
|
|
// they *must* be static const and not temporary created,
|
|
// because the parameter list that use these keywords does not store them,
|
|
// just points on them
|
|
static const wxChar * keys[32] =
|
|
{
|
|
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("ColorLaye13"), wxT("ColorLayer14"), wxT("ColorLayer15")
|
|
};
|
|
|
|
for( unsigned ii = 0; ii < 32; ii++ )
|
|
{
|
|
int * prm = &g_ColorsSettings.m_LayersColors[1];
|
|
PARAM_CFG_SETCOLOR * prm_entry =
|
|
new PARAM_CFG_SETCOLOR( true, keys[ii], prm, color_default[1] );
|
|
m_configSettings.push_back( prm_entry );
|
|
}
|
|
|
|
return m_configSettings;
|
|
}
|