2013-11-18 17:52:18 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2013-11-19 18:58:12 +00:00
|
|
|
* Copyright (C) 2010 Jean-Pierre Charras <jp.charras@wanadoo.fr>
|
|
|
|
* Copyright (C) 1992-2011 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-11-18 17:52:18 +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
|
|
|
|
*/
|
2008-12-23 13:15:08 +00:00
|
|
|
|
2013-11-19 18:58:12 +00:00
|
|
|
/**
|
|
|
|
* @file dialog_graphic_item_properties.cpp
|
|
|
|
*/
|
|
|
|
|
2008-12-23 13:15:08 +00:00
|
|
|
/* Edit parameters values of graphic items type DRAWSEGMENTS:
|
|
|
|
* Lines
|
|
|
|
* Circles
|
|
|
|
* Arcs
|
|
|
|
* used as graphic elements found on non copper layers in boards
|
|
|
|
* items on edge layers are considered as graphic items
|
|
|
|
* Pcb texts are not always graphic items and are not handled here
|
|
|
|
*/
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <gr_basic.h>
|
|
|
|
#include <confirm.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <wxPcbStruct.h>
|
|
|
|
#include <class_board_design_settings.h>
|
2012-04-13 18:51:24 +00:00
|
|
|
#include <base_units.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
|
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_drawsegment.h>
|
|
|
|
|
|
|
|
#include <dialog_graphic_item_properties_base.h>
|
2013-09-03 12:48:38 +00:00
|
|
|
#include <class_pcb_layer_box_selector.h>
|
2008-12-23 13:15:08 +00:00
|
|
|
|
2013-11-19 18:58:12 +00:00
|
|
|
|
2012-02-12 19:39:37 +00:00
|
|
|
class DIALOG_GRAPHIC_ITEM_PROPERTIES: public DIALOG_GRAPHIC_ITEM_PROPERTIES_BASE
|
2008-12-23 13:15:08 +00:00
|
|
|
{
|
|
|
|
private:
|
2012-02-12 19:39:37 +00:00
|
|
|
PCB_EDIT_FRAME* m_parent;
|
2008-12-23 13:15:08 +00:00
|
|
|
wxDC* m_DC;
|
|
|
|
DRAWSEGMENT* m_Item;
|
2012-02-12 19:39:37 +00:00
|
|
|
BOARD_DESIGN_SETTINGS m_brdSettings;
|
2008-12-23 13:15:08 +00:00
|
|
|
|
|
|
|
public:
|
2012-02-12 19:39:37 +00:00
|
|
|
DIALOG_GRAPHIC_ITEM_PROPERTIES( PCB_EDIT_FRAME* aParent, DRAWSEGMENT * aItem, wxDC * aDC);
|
|
|
|
~DIALOG_GRAPHIC_ITEM_PROPERTIES() {};
|
2008-12-23 13:15:08 +00:00
|
|
|
|
|
|
|
private:
|
2011-10-18 17:28:49 +00:00
|
|
|
void initDlg( );
|
2009-01-05 05:21:35 +00:00
|
|
|
void OnOkClick( wxCommandEvent& event );
|
2013-11-18 17:52:18 +00:00
|
|
|
void OnCancelClick( wxCommandEvent& event ) { event.Skip(); }
|
2009-01-05 05:21:35 +00:00
|
|
|
void OnLayerChoice( wxCommandEvent& event );
|
2008-12-23 13:15:08 +00:00
|
|
|
};
|
|
|
|
|
2012-02-12 19:39:37 +00:00
|
|
|
DIALOG_GRAPHIC_ITEM_PROPERTIES::DIALOG_GRAPHIC_ITEM_PROPERTIES( PCB_EDIT_FRAME* aParent,
|
2013-11-19 18:58:12 +00:00
|
|
|
DRAWSEGMENT * aItem, wxDC * aDC ):
|
2012-02-12 19:39:37 +00:00
|
|
|
DIALOG_GRAPHIC_ITEM_PROPERTIES_BASE( aParent )
|
2008-12-23 13:15:08 +00:00
|
|
|
{
|
2012-02-12 19:39:37 +00:00
|
|
|
m_parent = aParent;
|
2009-01-05 05:21:35 +00:00
|
|
|
m_DC = aDC;
|
|
|
|
m_Item = aItem;
|
2012-02-12 19:39:37 +00:00
|
|
|
m_brdSettings = m_parent->GetDesignSettings();
|
2011-10-18 17:28:49 +00:00
|
|
|
initDlg();
|
2009-08-11 10:27:21 +00:00
|
|
|
Layout();
|
|
|
|
GetSizer()->SetSizeHints( this );
|
2011-10-18 17:28:49 +00:00
|
|
|
Centre();
|
2008-12-23 13:15:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-19 18:58:12 +00:00
|
|
|
void PCB_EDIT_FRAME::InstallGraphicItemPropertiesDialog( DRAWSEGMENT* aItem, wxDC* aDC )
|
2008-12-23 13:15:08 +00:00
|
|
|
{
|
2009-02-24 13:55:13 +00:00
|
|
|
if ( aItem == NULL )
|
|
|
|
{
|
2013-11-19 18:58:12 +00:00
|
|
|
DisplayError( this, wxT( "InstallGraphicItemPropertiesDialog() error: NULL item" ) );
|
2009-02-24 13:55:13 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-12-22 13:28:11 +00:00
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->SetIgnoreMouseEvents( true );
|
2013-11-18 17:52:18 +00:00
|
|
|
DIALOG_GRAPHIC_ITEM_PROPERTIES dlg( this, aItem, aDC );
|
|
|
|
dlg.ShowModal();
|
2011-12-22 13:28:11 +00:00
|
|
|
m_canvas->MoveCursorToCrossHair();
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->SetIgnoreMouseEvents( false );
|
2008-12-23 13:15:08 +00:00
|
|
|
}
|
|
|
|
|
2013-11-19 18:58:12 +00:00
|
|
|
|
2012-02-12 19:39:37 +00:00
|
|
|
void DIALOG_GRAPHIC_ITEM_PROPERTIES::initDlg( )
|
2008-12-23 13:15:08 +00:00
|
|
|
{
|
2012-02-12 19:39:37 +00:00
|
|
|
m_StandardButtonsSizerOK->SetDefault();
|
|
|
|
|
|
|
|
// Set unit symbol
|
|
|
|
wxStaticText * texts_unit[] =
|
|
|
|
{
|
|
|
|
m_StartPointXUnit,
|
|
|
|
m_StartPointYUnit,
|
|
|
|
m_EndPointXUnit,
|
|
|
|
m_EndPointYUnit,
|
|
|
|
m_ThicknessTextUnit,
|
|
|
|
m_DefaulThicknessTextUnit,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
for( int ii = 0; ; ii++ )
|
|
|
|
{
|
|
|
|
if( texts_unit[ii] == NULL )
|
|
|
|
break;
|
2013-11-19 18:58:12 +00:00
|
|
|
|
2012-02-12 19:39:37 +00:00
|
|
|
texts_unit[ii]->SetLabel( GetAbbreviatedUnitsLabel() );
|
|
|
|
}
|
2009-01-05 05:21:35 +00:00
|
|
|
|
|
|
|
wxString msg;
|
++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
|
|
|
|
2009-01-05 05:21:35 +00:00
|
|
|
// Change texts according to the segment shape:
|
2011-12-14 04:29:25 +00:00
|
|
|
switch ( m_Item->GetShape() )
|
2009-01-05 05:21:35 +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
|
|
|
case S_CIRCLE:
|
2013-11-19 18:58:12 +00:00
|
|
|
m_StartPointXLabel->SetLabel( _( "Center X" ) );
|
|
|
|
m_StartPointYLabel->SetLabel( _( "Center Y" ) );
|
|
|
|
m_EndPointXLabel->SetLabel( _( "Point X" ) );
|
|
|
|
m_EndPointYLabel->SetLabel( _( "Point Y" ) );
|
|
|
|
m_Angle_Text->Show( false );
|
|
|
|
m_Angle_Ctrl->Show( false );
|
|
|
|
m_AngleUnit->Show( false );
|
++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
|
|
|
break;
|
|
|
|
|
|
|
|
case S_ARC:
|
2013-11-19 18:58:12 +00:00
|
|
|
m_StartPointXLabel->SetLabel( _( "Center X" ) );
|
|
|
|
m_StartPointYLabel->SetLabel( _( "Center Y" ) );
|
|
|
|
m_EndPointXLabel->SetLabel( _( "Start Point X" ) );
|
|
|
|
m_EndPointYLabel->SetLabel( _( "Start Point Y" ) );
|
2013-05-05 07:17:48 +00:00
|
|
|
|
2013-11-19 18:58:12 +00:00
|
|
|
// Here the angle is a double, but the UI is still working with integers.
|
2013-05-05 07:17:48 +00:00
|
|
|
msg << int( m_Item->GetAngle() );
|
2013-11-19 18:58:12 +00:00
|
|
|
m_Angle_Ctrl->SetValue( msg );
|
++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
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-11-19 18:58:12 +00:00
|
|
|
m_Angle_Text->Show( false );
|
|
|
|
m_Angle_Ctrl->Show( false );
|
|
|
|
m_AngleUnit->Show( false );
|
++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
|
|
|
break;
|
2009-01-05 05:21:35 +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
|
|
|
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_Center_StartXCtrl, m_Item->GetStart().x );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_Center_StartYCtrl, m_Item->GetStart().y );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_EndX_Radius_Ctrl, m_Item->GetEnd().x );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_EndY_Ctrl, m_Item->GetEnd().y );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_ThicknessCtrl, m_Item->GetWidth() );
|
++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
|
|
|
|
2009-01-05 05:21:35 +00:00
|
|
|
int thickness;
|
++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
|
|
|
|
2008-12-23 13:15:08 +00:00
|
|
|
if( m_Item->GetLayer() == EDGE_N )
|
2012-02-12 19:39:37 +00:00
|
|
|
thickness = m_brdSettings.m_EdgeSegmentWidth;
|
2008-12-23 13:15:08 +00:00
|
|
|
else
|
2012-02-12 19:39:37 +00:00
|
|
|
thickness = m_brdSettings.m_DrawSegmentWidth;
|
++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-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_DefaultThicknessCtrl, thickness );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
2013-09-03 12:48:38 +00:00
|
|
|
// Configure the layers list selector
|
|
|
|
m_LayerSelectionCtrl->SetLayersHotkeys( false );
|
|
|
|
m_LayerSelectionCtrl->SetLayerMask( ALL_CU_LAYERS );
|
|
|
|
m_LayerSelectionCtrl->SetBoardFrame( m_parent );
|
|
|
|
m_LayerSelectionCtrl->Resync();
|
2013-09-11 15:30:21 +00:00
|
|
|
|
2013-09-03 12:48:38 +00:00
|
|
|
if( m_LayerSelectionCtrl->SetLayerSelection( m_Item->GetLayer() ) < 0 )
|
2008-12-23 13:15:08 +00:00
|
|
|
{
|
2013-11-19 18:58:12 +00:00
|
|
|
wxMessageBox( _( "This item has an illegal layer id.\n"
|
|
|
|
"Now, forced on the drawings layer. Please, fix it" ) );
|
2013-09-03 12:48:38 +00:00
|
|
|
m_LayerSelectionCtrl->SetLayerSelection( DRAW_N );
|
2008-12-23 13:15:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-12 19:39:37 +00:00
|
|
|
void DIALOG_GRAPHIC_ITEM_PROPERTIES::OnLayerChoice( wxCommandEvent& event )
|
2008-12-23 13:15:08 +00:00
|
|
|
{
|
2009-01-05 05:21:35 +00:00
|
|
|
int thickness;
|
++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
|
|
|
|
2013-09-03 12:48:38 +00:00
|
|
|
if( m_LayerSelectionCtrl->GetLayerSelection() == EDGE_N )
|
2012-02-12 19:39:37 +00:00
|
|
|
thickness = m_brdSettings.m_EdgeSegmentWidth;
|
2008-12-23 13:15:08 +00:00
|
|
|
else
|
2012-02-12 19:39:37 +00:00
|
|
|
thickness = m_brdSettings.m_DrawSegmentWidth;
|
++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-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_DefaultThicknessCtrl, thickness );
|
2008-12-23 13:15:08 +00:00
|
|
|
}
|
|
|
|
|
2013-11-19 18:58:12 +00:00
|
|
|
|
2012-02-12 19:39:37 +00:00
|
|
|
void DIALOG_GRAPHIC_ITEM_PROPERTIES::OnOkClick( wxCommandEvent& event )
|
2008-12-23 13:15:08 +00:00
|
|
|
{
|
2012-02-12 19:39:37 +00:00
|
|
|
m_parent->SaveCopyInUndoList( m_Item, UR_CHANGED );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2009-01-05 05:21:35 +00:00
|
|
|
wxString msg;
|
2011-12-22 13:28:11 +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
|
|
|
if( m_DC )
|
2012-02-12 19:39:37 +00:00
|
|
|
m_Item->Draw( m_parent->GetCanvas(), m_DC, GR_XOR );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
|
|
|
msg = m_Center_StartXCtrl->GetValue();
|
2012-04-16 17:39:32 +00:00
|
|
|
m_Item->SetStartX( ReturnValueFromString( g_UserUnit, msg ) );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
|
|
|
msg = m_Center_StartYCtrl->GetValue();
|
2012-04-16 17:39:32 +00:00
|
|
|
m_Item->SetStartY( ReturnValueFromString( g_UserUnit, msg ) );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
|
|
|
msg = m_EndX_Radius_Ctrl->GetValue();
|
2012-04-16 17:39:32 +00:00
|
|
|
m_Item->SetEndX( ReturnValueFromString( g_UserUnit, msg ) );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
|
|
|
msg = m_EndY_Ctrl->GetValue();
|
2012-04-16 17:39:32 +00:00
|
|
|
m_Item->SetEndY( ReturnValueFromString( g_UserUnit, msg ) );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
|
|
|
msg = m_ThicknessCtrl->GetValue();
|
2012-04-16 17:39:32 +00:00
|
|
|
m_Item->SetWidth( ReturnValueFromString( g_UserUnit, msg ) );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
|
|
|
msg = m_DefaultThicknessCtrl->GetValue();
|
2012-04-16 17:39:32 +00:00
|
|
|
int thickness = ReturnValueFromString( g_UserUnit, msg );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
2013-09-03 12:48:38 +00:00
|
|
|
m_Item->SetLayer( m_LayerSelectionCtrl->GetLayerSelection() );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
2009-01-05 05:21:35 +00:00
|
|
|
if( m_Item->GetLayer() == EDGE_N )
|
2012-02-12 19:39:37 +00:00
|
|
|
m_brdSettings.m_EdgeSegmentWidth = thickness;
|
2008-12-23 13:15:08 +00:00
|
|
|
else
|
2012-02-12 19:39:37 +00:00
|
|
|
m_brdSettings.m_DrawSegmentWidth = thickness;
|
2008-12-23 13:15:08 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
if( m_Item->GetShape() == S_ARC )
|
2009-01-05 05:21:35 +00:00
|
|
|
{
|
2011-12-14 04:29:25 +00:00
|
|
|
double angle;
|
|
|
|
m_Angle_Ctrl->GetValue().ToDouble( &angle );
|
2011-01-05 17:28:55 +00:00
|
|
|
NORMALIZE_ANGLE_360(angle);
|
2011-12-14 04:29:25 +00:00
|
|
|
m_Item->SetAngle( angle );
|
2009-01-05 05:21:35 +00:00
|
|
|
}
|
2008-12-23 13:15:08 +00:00
|
|
|
|
2012-02-12 19:39:37 +00:00
|
|
|
m_parent->OnModify();
|
2011-12-22 13:28:11 +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
|
|
|
if( m_DC )
|
2012-02-12 19:39:37 +00:00
|
|
|
m_Item->Draw( m_parent->GetCanvas(), m_DC, GR_OR );
|
2011-12-22 13:28:11 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
m_parent->SetMsgPanel( m_Item );
|
2008-12-23 13:15:08 +00:00
|
|
|
|
2012-02-12 19:39:37 +00:00
|
|
|
m_parent->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-01-22 17:20:22 +00:00
|
|
|
Close( true );
|
2008-12-23 13:15:08 +00:00
|
|
|
}
|