2011-10-13 19:56:32 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
2015-10-14 18:12:17 +00:00
|
|
|
* Copyright (C) 1992-2015 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-13 19:56:32 +00:00
|
|
|
*
|
|
|
|
* 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 dialog_general_options.cpp
|
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
|
2008-12-21 16:54:27 +00:00
|
|
|
/* functions relatives to the dialogs opened from the main menu :
|
2009-11-14 22:15:22 +00:00
|
|
|
* Preferences/general
|
|
|
|
* Preferences/display
|
|
|
|
*/
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <confirm.h>
|
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <wxPcbStruct.h>
|
|
|
|
#include <class_board_design_settings.h>
|
2013-12-17 21:38:20 +00:00
|
|
|
#include <kicad_string.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew_id.h>
|
|
|
|
#include <class_board.h>
|
2014-02-25 13:28:09 +00:00
|
|
|
#include <collectors.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialog_general_options.h>
|
2009-02-24 22:41:30 +00:00
|
|
|
|
2015-10-14 18:12:17 +00:00
|
|
|
|
2012-04-11 18:54:20 +00:00
|
|
|
DIALOG_GENERALOPTIONS::DIALOG_GENERALOPTIONS( PCB_EDIT_FRAME* parent ) :
|
|
|
|
DIALOG_GENERALOPTIONS_BOARDEDITOR_BASE( parent )
|
2008-12-21 12:11:47 +00:00
|
|
|
{
|
2009-02-24 22:41:30 +00:00
|
|
|
init();
|
2010-01-20 12:43:05 +00:00
|
|
|
|
|
|
|
GetSizer()->SetSizeHints( this );
|
|
|
|
Center();
|
2008-12-21 12:11:47 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
|
2012-04-11 18:54:20 +00:00
|
|
|
void DIALOG_GENERALOPTIONS::init()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-02-24 22:41:30 +00:00
|
|
|
SetFocus();
|
2012-04-11 18:54:20 +00:00
|
|
|
m_sdbSizerOK->SetDefault();
|
2008-04-29 03:18:02 +00:00
|
|
|
|
2011-09-26 20:32:56 +00:00
|
|
|
m_Board = GetParent()->GetBoard();
|
2015-01-10 10:27:49 +00:00
|
|
|
DISPLAY_OPTIONS* displ_opts = (DISPLAY_OPTIONS*)GetParent()->GetDisplayOptions();
|
2010-01-29 20:36:12 +00:00
|
|
|
|
2007-06-20 00:33:23 +00:00
|
|
|
/* Set display options */
|
2015-01-10 10:27:49 +00:00
|
|
|
m_PolarDisplay->SetSelection( displ_opts->m_DisplayPolarCood ? 1 : 0 );
|
2010-07-12 14:07:09 +00:00
|
|
|
m_UnitsSelection->SetSelection( g_UserUnit ? 1 : 0 );
|
2011-12-14 20:03:15 +00:00
|
|
|
m_CursorShape->SetSelection( GetParent()->GetCursorShape() ? 1 : 0 );
|
2008-04-29 03:18:02 +00:00
|
|
|
|
2011-09-07 09:27:02 +00:00
|
|
|
|
2013-12-17 21:38:20 +00:00
|
|
|
wxString rotationAngle;
|
2014-01-10 20:12:36 +00:00
|
|
|
rotationAngle = AngleToStringDegrees( (double)GetParent()->GetRotationAngle() );
|
|
|
|
m_RotationAngle->SetValue( rotationAngle );
|
2011-09-07 09:27:02 +00:00
|
|
|
|
2015-08-05 14:28:27 +00:00
|
|
|
m_spinMaxUndoItems->SetValue( GetParent()->GetScreen()->GetMaxUndoItems() );
|
|
|
|
|
2008-04-29 03:18:02 +00:00
|
|
|
wxString timevalue;
|
2011-10-13 19:56:32 +00:00
|
|
|
timevalue << GetParent()->GetAutoSaveInterval() / 60;
|
2008-04-29 03:18:02 +00:00
|
|
|
m_SaveTime->SetValue( timevalue );
|
2015-01-10 10:27:49 +00:00
|
|
|
m_MaxShowLinks->SetValue( displ_opts->m_MaxLinksShowed );
|
2008-04-29 03:18:02 +00:00
|
|
|
|
2013-03-27 18:32:12 +00:00
|
|
|
m_DrcOn->SetValue( g_Drc_On );
|
2015-01-10 10:27:49 +00:00
|
|
|
m_ShowModuleRatsnest->SetValue( displ_opts->m_Show_Module_Ratsnest );
|
2011-09-26 20:32:56 +00:00
|
|
|
m_ShowGlobalRatsnest->SetValue( m_Board->IsElementVisible( RATSNEST_VISIBLE ) );
|
2008-04-29 03:18:02 +00:00
|
|
|
m_TrackAutodel->SetValue( g_AutoDeleteOldTrack );
|
2010-05-01 09:22:12 +00:00
|
|
|
m_Track_45_Only_Ctrl->SetValue( g_Track_45_Only_Allowed );
|
2013-03-27 18:32:12 +00:00
|
|
|
m_Segments_45_Only_Ctrl->SetValue( g_Segments_45_Only );
|
2015-08-06 18:40:22 +00:00
|
|
|
m_ZoomCenterOpt->SetValue( ! GetParent()->GetCanvas()->GetEnableZoomNoCenter() );
|
2012-04-11 18:54:20 +00:00
|
|
|
m_MiddleButtonPANOpt->SetValue( GetParent()->GetCanvas()->GetEnableMiddleButtonPan() );
|
|
|
|
m_OptMiddleButtonPanLimited->SetValue( GetParent()->GetCanvas()->GetMiddleButtonPanLimited() );
|
|
|
|
m_OptMiddleButtonPanLimited->Enable( m_MiddleButtonPANOpt->GetValue() );
|
2011-12-29 20:11:42 +00:00
|
|
|
m_AutoPANOpt->SetValue( GetParent()->GetCanvas()->GetEnableAutoPan() );
|
2008-04-29 03:18:02 +00:00
|
|
|
m_Track_DoubleSegm_Ctrl->SetValue( g_TwoSegmentTrackBuild );
|
2008-12-21 12:11:47 +00:00
|
|
|
m_MagneticPadOptCtrl->SetSelection( g_MagneticPadOption );
|
|
|
|
m_MagneticTrackOptCtrl->SetSelection( g_MagneticTrackOption );
|
2015-06-12 15:13:18 +00:00
|
|
|
m_DumpZonesWhenFilling->SetValue ( g_DumpZonesWhenFilling );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2008-04-29 03:18:02 +00:00
|
|
|
|
2012-04-11 18:54:20 +00:00
|
|
|
void DIALOG_GENERALOPTIONS::OnCancelClick( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-06-05 12:10:51 +00:00
|
|
|
event.Skip();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
2008-04-29 03:18:02 +00:00
|
|
|
|
|
|
|
|
2012-04-11 18:54:20 +00:00
|
|
|
void DIALOG_GENERALOPTIONS::OnOkClick( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2011-09-06 19:42:46 +00:00
|
|
|
EDA_UNITS_T ii;
|
2015-01-10 10:27:49 +00:00
|
|
|
DISPLAY_OPTIONS* displ_opts = (DISPLAY_OPTIONS*)GetParent()->GetDisplayOptions();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2015-01-10 10:27:49 +00:00
|
|
|
displ_opts->m_DisplayPolarCood = ( m_PolarDisplay->GetSelection() == 0 ) ? false : true;
|
2010-07-12 14:07:09 +00:00
|
|
|
ii = g_UserUnit;
|
|
|
|
g_UserUnit = ( m_UnitsSelection->GetSelection() == 0 ) ? INCHES : MILLIMETRES;
|
2011-09-06 19:42:46 +00:00
|
|
|
|
2010-07-12 14:07:09 +00:00
|
|
|
if( ii != g_UserUnit )
|
2011-09-26 20:32:56 +00:00
|
|
|
GetParent()->ReCreateAuxiliaryToolbar();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
GetParent()->SetCursorShape( m_CursorShape->GetSelection() );
|
2011-10-13 19:56:32 +00:00
|
|
|
GetParent()->SetAutoSaveInterval( m_SaveTime->GetValue() * 60 );
|
2013-12-17 21:38:20 +00:00
|
|
|
GetParent()->SetRotationAngle( wxRound( 10.0 * wxAtof( m_RotationAngle->GetValue() ) ) );
|
2011-09-07 09:27:02 +00:00
|
|
|
|
2015-08-05 14:28:27 +00:00
|
|
|
GetParent()->GetScreen()->SetMaxUndoItems( m_spinMaxUndoItems->GetValue() );
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Updating the combobox to display the active layer. */
|
2015-01-10 10:27:49 +00:00
|
|
|
displ_opts->m_MaxLinksShowed = m_MaxShowLinks->GetValue();
|
2013-03-27 18:32:12 +00:00
|
|
|
g_Drc_On = m_DrcOn->GetValue();
|
2011-09-06 19:42:46 +00:00
|
|
|
|
2010-01-29 20:36:12 +00:00
|
|
|
if( m_Board->IsElementVisible(RATSNEST_VISIBLE) != m_ShowGlobalRatsnest->GetValue() )
|
2007-06-20 00:33:23 +00:00
|
|
|
{
|
2015-10-14 18:12:17 +00:00
|
|
|
GetParent()->SetElementVisibility( RATSNEST_VISIBLE, m_ShowGlobalRatsnest->GetValue() );
|
|
|
|
GetParent()->GetCanvas()->Refresh();
|
|
|
|
GetParent()->OnModify();
|
2007-06-20 00:33:23 +00:00
|
|
|
}
|
2011-09-06 19:42:46 +00:00
|
|
|
|
2015-01-10 10:27:49 +00:00
|
|
|
displ_opts->m_Show_Module_Ratsnest = m_ShowModuleRatsnest->GetValue();
|
2008-04-29 03:18:02 +00:00
|
|
|
g_AutoDeleteOldTrack = m_TrackAutodel->GetValue();
|
2013-03-27 18:32:12 +00:00
|
|
|
g_Segments_45_Only = m_Segments_45_Only_Ctrl->GetValue();
|
2010-05-01 09:22:12 +00:00
|
|
|
g_Track_45_Only_Allowed = m_Track_45_Only_Ctrl->GetValue();
|
2012-04-11 18:54:20 +00:00
|
|
|
|
2015-08-06 18:40:22 +00:00
|
|
|
GetParent()->GetCanvas()->SetEnableZoomNoCenter( ! m_ZoomCenterOpt->GetValue() );
|
2012-04-11 18:54:20 +00:00
|
|
|
GetParent()->GetCanvas()->SetEnableMiddleButtonPan( m_MiddleButtonPANOpt->GetValue() );
|
|
|
|
GetParent()->GetCanvas()->SetMiddleButtonPanLimited( m_OptMiddleButtonPanLimited->GetValue() );
|
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
GetParent()->GetCanvas()->SetEnableAutoPan( m_AutoPANOpt->GetValue() );
|
2007-05-06 16:03:28 +00:00
|
|
|
g_TwoSegmentTrackBuild = m_Track_DoubleSegm_Ctrl->GetValue();
|
2009-11-14 22:15:22 +00:00
|
|
|
g_MagneticPadOption = m_MagneticPadOptCtrl->GetSelection();
|
2009-02-24 22:41:30 +00:00
|
|
|
g_MagneticTrackOption = m_MagneticTrackOptCtrl->GetSelection();
|
2015-06-12 15:13:18 +00:00
|
|
|
g_DumpZonesWhenFilling = m_DumpZonesWhenFilling->GetValue();
|
2009-02-24 22:41:30 +00:00
|
|
|
|
2010-04-23 14:46:00 +00:00
|
|
|
EndModal( wxID_OK );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|