2009-11-14 22:15:22 +00:00
|
|
|
/************************************/
|
|
|
|
/* dialog_graphic_items_options.cpp */
|
|
|
|
/************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <wxPcbStruct.h>
|
2012-04-13 18:51:24 +00:00
|
|
|
#include <base_units.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew_id.h>
|
|
|
|
#include <module_editor_frame.h>
|
|
|
|
#include <class_board.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialog_graphic_items_options.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2010-02-24 15:33:03 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::OnConfigurePcbOptions( wxCommandEvent& aEvent )
|
2010-02-24 15:33:03 +00:00
|
|
|
{
|
2010-04-23 14:46:00 +00:00
|
|
|
DIALOG_GRAPHIC_ITEMS_OPTIONS dlg( this );
|
|
|
|
|
|
|
|
dlg.ShowModal();
|
2010-02-24 15:33:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-26 17:01:17 +00:00
|
|
|
void FOOTPRINT_EDIT_FRAME::InstallOptionsFrame( const wxPoint& pos )
|
2010-02-24 15:33:03 +00:00
|
|
|
{
|
|
|
|
DIALOG_GRAPHIC_ITEMS_OPTIONS dlg( this );
|
|
|
|
dlg.ShowModal();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DIALOG_GRAPHIC_ITEMS_OPTIONS constructor
|
|
|
|
*/
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
DIALOG_GRAPHIC_ITEMS_OPTIONS::DIALOG_GRAPHIC_ITEMS_OPTIONS( PCB_BASE_FRAME* parent )
|
2010-02-24 15:33:03 +00:00
|
|
|
: DIALOG_GRAPHIC_ITEMS_OPTIONS_BASE( parent )
|
|
|
|
{
|
2012-02-12 19:39:37 +00:00
|
|
|
m_parent = parent;
|
|
|
|
m_brdSettings = m_parent->GetDesignSettings();
|
2010-02-24 15:33:03 +00:00
|
|
|
initValues( );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-03-14 15:17:18 +00:00
|
|
|
m_sdbSizer1OK->SetDefault();
|
2010-02-24 15:33:03 +00:00
|
|
|
GetSizer()->SetSizeHints( this );
|
|
|
|
|
|
|
|
Centre();
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
++PCBNew
* Removed Pcb_Frame argument from BOARD() constructor, since it precludes
having a BOARD being edited by more than one editor, it was a bad design.
And this meant removing m_PcbFrame from BOARD.
* removed BOARD::SetWindowFrame(), and BOARD::m_PcbFrame
* Removed the global BOARD_DESIGN_SETTINGS which was in class_board.cpp
* added BOARD_DESIGN_SETTINGS to the BOARD class, a full instance
* a couple dialogs now only change BOARD_DESIGN_SETTINGS when OK is pressed,
such as dialog_mask_clearance, dialog_drc, etc.
* Removed common/pcbcommon.cpp's int g_CurrentVersionPCB = 1 and replaced it
with build_version.h's #define BOARD_FILE_VERSION, although there may be a
better place for this constant.
* Made the public functions in PARAM_CFG_ARRAY be type const.
void SaveParam(..) const and void ReadParam(..) const
* PARAM_CFG_BASE now has virtual destructor since we have various way of
destroying the derived class and boost::ptr_vector must be told about this.
* Pass const PARAM_CFG_ARRAY& instead of PARAM_CFG_ARRAY so that we can use
an automatic PARAM_CFG_ARRAY which is on the stack.\
* PCB_EDIT_FRAME::GetProjectFileParameters() may no longer cache the array,
since it has to access the current BOARD and the BOARD can change.
Remember BOARD_DESIGN_SETTINGS are now in the BOARD.
* Made the m_BoundingBox member private, this was a brutally hard task,
and indicative of the lack of commitment to accessors and object oriented
design on the part of KiCad developers. We must do better.
Added BOARD::GetBoundingBox, SetBoundingBox(), ComputeBoundingBox().
* Added PCB_BASE_FRAME::GetBoardBoundingBox() which calls BOARD::ComputeBoundingBox()
2011-12-05 06:15:33 +00:00
|
|
|
DIALOG_GRAPHIC_ITEMS_OPTIONS::~DIALOG_GRAPHIC_ITEMS_OPTIONS()
|
2010-02-24 15:33:03 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_GRAPHIC_ITEMS_OPTIONS::initValues()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2010-02-24 20:38:55 +00:00
|
|
|
SetFocus();
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Drawings width */
|
|
|
|
AddUnitSymbol( *m_GraphicSegmWidthTitle );
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_OptPcbSegmWidth, m_brdSettings.m_DrawSegmentWidth );
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Edges width */
|
|
|
|
AddUnitSymbol( *m_BoardEdgesWidthTitle );
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_OptPcbEdgesWidth, m_brdSettings.m_EdgeSegmentWidth );
|
2009-11-14 22:15:22 +00:00
|
|
|
|
|
|
|
/* Pcb Textes (Size & Width) */
|
|
|
|
AddUnitSymbol( *m_CopperTextWidthTitle );
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_OptPcbTextWidth, m_brdSettings.m_PcbTextWidth );
|
2009-11-14 22:15:22 +00:00
|
|
|
|
|
|
|
AddUnitSymbol( *m_TextSizeVTitle );
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_OptPcbTextVSize, m_brdSettings.m_PcbTextSize.y );
|
2009-11-14 22:15:22 +00:00
|
|
|
|
|
|
|
AddUnitSymbol( *m_TextSizeHTitle );
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_OptPcbTextHSize, m_brdSettings.m_PcbTextSize.x );
|
2009-11-14 22:15:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Modules: Edges width */
|
|
|
|
AddUnitSymbol( *m_EdgeModWidthTitle );
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_OptModuleEdgesWidth, m_brdSettings.m_ModuleSegmentWidth );
|
2009-11-14 22:15:22 +00:00
|
|
|
|
|
|
|
/* Modules: Texts: Size & width */
|
|
|
|
AddUnitSymbol( *m_TextModWidthTitle );
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_OptModuleTextWidth, m_brdSettings.m_ModuleTextWidth );
|
2009-11-14 22:15:22 +00:00
|
|
|
|
|
|
|
AddUnitSymbol( *m_TextModSizeVTitle );
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_OptModuleTextVSize, m_brdSettings.m_ModuleTextSize.y );
|
2009-11-14 22:15:22 +00:00
|
|
|
|
|
|
|
AddUnitSymbol( *m_TextModSizeHTitle );
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_OptModuleTextHSize, m_brdSettings.m_ModuleTextSize.x );
|
2010-02-24 15:33:03 +00:00
|
|
|
|
|
|
|
AddUnitSymbol( *m_DefaultPenSizeTitle );
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_DefaultPenSizeCtrl, g_DrawDefaultLineThickness );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-24 15:33:03 +00:00
|
|
|
void DIALOG_GRAPHIC_ITEMS_OPTIONS::OnOkClick( wxCommandEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2012-04-16 17:39:32 +00:00
|
|
|
m_brdSettings.m_DrawSegmentWidth = ReturnValueFromTextCtrl( *m_OptPcbSegmWidth );
|
|
|
|
m_brdSettings.m_EdgeSegmentWidth = ReturnValueFromTextCtrl( *m_OptPcbEdgesWidth );
|
|
|
|
m_brdSettings.m_PcbTextWidth = ReturnValueFromTextCtrl( *m_OptPcbTextWidth );
|
|
|
|
m_brdSettings.m_PcbTextSize.y = ReturnValueFromTextCtrl( *m_OptPcbTextVSize );
|
|
|
|
m_brdSettings.m_PcbTextSize.x = ReturnValueFromTextCtrl( *m_OptPcbTextHSize );
|
2009-11-14 22:15:22 +00:00
|
|
|
|
2012-02-12 19:39:37 +00:00
|
|
|
m_parent->GetBoard()->SetDesignSettings( m_brdSettings );
|
++PCBNew
* Removed Pcb_Frame argument from BOARD() constructor, since it precludes
having a BOARD being edited by more than one editor, it was a bad design.
And this meant removing m_PcbFrame from BOARD.
* removed BOARD::SetWindowFrame(), and BOARD::m_PcbFrame
* Removed the global BOARD_DESIGN_SETTINGS which was in class_board.cpp
* added BOARD_DESIGN_SETTINGS to the BOARD class, a full instance
* a couple dialogs now only change BOARD_DESIGN_SETTINGS when OK is pressed,
such as dialog_mask_clearance, dialog_drc, etc.
* Removed common/pcbcommon.cpp's int g_CurrentVersionPCB = 1 and replaced it
with build_version.h's #define BOARD_FILE_VERSION, although there may be a
better place for this constant.
* Made the public functions in PARAM_CFG_ARRAY be type const.
void SaveParam(..) const and void ReadParam(..) const
* PARAM_CFG_BASE now has virtual destructor since we have various way of
destroying the derived class and boost::ptr_vector must be told about this.
* Pass const PARAM_CFG_ARRAY& instead of PARAM_CFG_ARRAY so that we can use
an automatic PARAM_CFG_ARRAY which is on the stack.\
* PCB_EDIT_FRAME::GetProjectFileParameters() may no longer cache the array,
since it has to access the current BOARD and the BOARD can change.
Remember BOARD_DESIGN_SETTINGS are now in the BOARD.
* Made the m_BoundingBox member private, this was a brutally hard task,
and indicative of the lack of commitment to accessors and object oriented
design on the part of KiCad developers. We must do better.
Added BOARD::GetBoundingBox, SetBoundingBox(), ComputeBoundingBox().
* Added PCB_BASE_FRAME::GetBoardBoundingBox() which calls BOARD::ComputeBoundingBox()
2011-12-05 06:15:33 +00:00
|
|
|
|
2012-04-16 17:39:32 +00:00
|
|
|
m_brdSettings.m_ModuleSegmentWidth = ReturnValueFromTextCtrl( *m_OptModuleEdgesWidth );
|
|
|
|
m_brdSettings.m_ModuleTextWidth = ReturnValueFromTextCtrl( *m_OptModuleTextWidth );
|
|
|
|
m_brdSettings.m_ModuleTextSize.y = ReturnValueFromTextCtrl( *m_OptModuleTextVSize );
|
|
|
|
m_brdSettings.m_ModuleTextSize.x = ReturnValueFromTextCtrl( *m_OptModuleTextHSize );
|
|
|
|
|
|
|
|
g_DrawDefaultLineThickness = ReturnValueFromTextCtrl( *m_DefaultPenSizeCtrl );
|
2010-02-24 20:38:55 +00:00
|
|
|
|
2010-02-24 15:33:03 +00:00
|
|
|
if( g_DrawDefaultLineThickness < 0 )
|
|
|
|
g_DrawDefaultLineThickness = 0;
|
2009-11-14 22:15:22 +00:00
|
|
|
|
2012-02-12 19:39:37 +00:00
|
|
|
m_parent->SetDesignSettings( m_brdSettings );
|
|
|
|
|
2010-04-23 14:46:00 +00:00
|
|
|
EndModal( wxID_OK );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL
|
|
|
|
*/
|
|
|
|
|
2010-02-24 15:33:03 +00:00
|
|
|
void DIALOG_GRAPHIC_ITEMS_OPTIONS::OnCancelClick( wxCommandEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
event.Skip();
|
2009-11-14 22:15:22 +00:00
|
|
|
}
|