2007-08-20 01:20:48 +00:00
|
|
|
|
/*********************************************/
|
|
|
|
|
/* Routines de gestion des mires de centrage */
|
|
|
|
|
/*********************************************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
|
#include "gr_basic.h"
|
|
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
#include "pcbnew.h"
|
|
|
|
|
|
|
|
|
|
#include "protos.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Routines Locales */
|
2007-08-20 01:20:48 +00:00
|
|
|
|
static void Exit_EditMire( WinEDA_DrawPanel* Panel, wxDC* DC );
|
|
|
|
|
static void Montre_Position_Mire( WinEDA_DrawPanel* panel, wxDC* DC, bool erase );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
/* Variables locales : */
|
|
|
|
|
static wxPoint OldPos;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
static int MireDefaultSize = 5000;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
enum id_mire_properties {
|
2007-10-11 04:56:44 +00:00
|
|
|
|
ID_SIZE_MIRE = 1900, // (Not currently used anywhere else)
|
2007-08-20 01:20:48 +00:00
|
|
|
|
ID_LISTBOX_SHAPE_MIRE
|
2007-05-06 16:03:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
/************************************/
|
|
|
|
|
/* class WinEDA_MirePropertiesFrame */
|
|
|
|
|
/************************************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
class WinEDA_MirePropertiesFrame : public wxDialog
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
WinEDA_PcbFrame* m_Parent;
|
|
|
|
|
wxDC* m_DC;
|
|
|
|
|
MIREPCB* m_MirePcb;
|
|
|
|
|
WinEDA_ValueCtrl* m_MireWidthCtrl;
|
|
|
|
|
WinEDA_ValueCtrl* m_MireSizeCtrl;
|
|
|
|
|
wxRadioBox* m_MireShape;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
public:
|
2007-08-20 01:20:48 +00:00
|
|
|
|
|
|
|
|
|
// Constructor and destructor
|
|
|
|
|
WinEDA_MirePropertiesFrame( WinEDA_PcbFrame* parent,
|
|
|
|
|
MIREPCB* Mire, wxDC* DC, const wxPoint& pos );
|
2007-10-11 04:56:44 +00:00
|
|
|
|
~WinEDA_MirePropertiesFrame() { }
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2007-10-11 04:56:44 +00:00
|
|
|
|
void OnOkClick( wxCommandEvent& event );
|
|
|
|
|
void OnCancelClick( wxCommandEvent& event );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
DECLARE_EVENT_TABLE()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
BEGIN_EVENT_TABLE( WinEDA_MirePropertiesFrame, wxDialog )
|
2007-10-11 04:56:44 +00:00
|
|
|
|
EVT_BUTTON( wxID_OK, WinEDA_MirePropertiesFrame::OnOkClick )
|
|
|
|
|
EVT_BUTTON( wxID_CANCEL, WinEDA_MirePropertiesFrame::OnCancelClick )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************/
|
2007-08-20 01:20:48 +00:00
|
|
|
|
void WinEDA_PcbFrame::InstallMireOptionsFrame( MIREPCB* MirePcb,
|
|
|
|
|
wxDC* DC, const wxPoint& pos )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/***************************************************************/
|
|
|
|
|
{
|
2007-08-20 01:20:48 +00:00
|
|
|
|
WinEDA_MirePropertiesFrame* frame = new WinEDA_MirePropertiesFrame( this,
|
|
|
|
|
MirePcb, DC, pos );
|
|
|
|
|
|
2007-10-11 04:56:44 +00:00
|
|
|
|
frame->ShowModal();
|
|
|
|
|
frame->Destroy();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
WinEDA_MirePropertiesFrame::WinEDA_MirePropertiesFrame( WinEDA_PcbFrame* parent,
|
|
|
|
|
MIREPCB* Mire, wxDC* DC,
|
|
|
|
|
const wxPoint& framepos ) :
|
2007-10-10 14:08:26 +00:00
|
|
|
|
wxDialog( parent, -1, _( "Target Properties" ), framepos, wxSize( 270, 210 ),
|
2007-08-20 01:20:48 +00:00
|
|
|
|
DIALOG_STYLE )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2007-08-20 01:20:48 +00:00
|
|
|
|
wxString number;
|
|
|
|
|
wxButton* Button;
|
|
|
|
|
|
|
|
|
|
m_Parent = parent;
|
|
|
|
|
SetFont( *g_DialogFont );
|
|
|
|
|
m_DC = DC;
|
|
|
|
|
Centre();
|
|
|
|
|
|
|
|
|
|
m_MirePcb = Mire;
|
|
|
|
|
|
|
|
|
|
wxBoxSizer* MainBoxSizer = new wxBoxSizer( wxHORIZONTAL );
|
|
|
|
|
SetSizer( MainBoxSizer );
|
|
|
|
|
wxBoxSizer* LeftBoxSizer = new wxBoxSizer( wxVERTICAL );
|
|
|
|
|
wxBoxSizer* RightBoxSizer = new wxBoxSizer( wxVERTICAL );
|
|
|
|
|
MainBoxSizer->Add( LeftBoxSizer, 0, wxGROW | wxALL, 5 );
|
|
|
|
|
MainBoxSizer->Add( RightBoxSizer, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5 );
|
|
|
|
|
|
|
|
|
|
/* Creation des boutons de commande */
|
2007-10-11 04:56:44 +00:00
|
|
|
|
Button = new wxButton( this, wxID_OK, _( "OK" ) );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
Button->SetForegroundColour( *wxRED );
|
|
|
|
|
RightBoxSizer->Add( Button, 0, wxGROW | wxALL, 5 );
|
|
|
|
|
|
2007-10-11 04:56:44 +00:00
|
|
|
|
Button = new wxButton( this, wxID_CANCEL, _( "Cancel" ) );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
Button->SetForegroundColour( *wxBLUE );
|
|
|
|
|
RightBoxSizer->Add( Button, 0, wxGROW | wxALL, 5 );
|
|
|
|
|
|
|
|
|
|
// Size:
|
|
|
|
|
m_MireSizeCtrl = new WinEDA_ValueCtrl( this, _( "Size" ),
|
|
|
|
|
m_MirePcb->m_Size,
|
|
|
|
|
g_UnitMetric, LeftBoxSizer, m_Parent->m_InternalUnits );
|
|
|
|
|
|
|
|
|
|
// Width:
|
|
|
|
|
m_MireWidthCtrl = new WinEDA_ValueCtrl( this, _( "Width" ),
|
|
|
|
|
m_MirePcb->m_Width,
|
|
|
|
|
g_UnitMetric, LeftBoxSizer, m_Parent->m_InternalUnits );
|
|
|
|
|
|
|
|
|
|
// Shape
|
|
|
|
|
wxString shape_list[2] = { _( "shape +" ), _( "shape X" ) };
|
|
|
|
|
m_MireShape = new wxRadioBox( this, ID_LISTBOX_SHAPE_MIRE,
|
2007-10-10 14:08:26 +00:00
|
|
|
|
_( "Target Shape:" ),
|
2007-08-20 01:20:48 +00:00
|
|
|
|
wxDefaultPosition, wxSize( -1, -1 ),
|
|
|
|
|
2, shape_list, 1 );
|
|
|
|
|
m_MireShape->SetSelection( m_MirePcb->m_Shape ? 1 : 0 );
|
|
|
|
|
LeftBoxSizer->Add( m_MireShape, 0, wxGROW | wxALL, 5 );
|
|
|
|
|
|
|
|
|
|
GetSizer()->Fit( this );
|
|
|
|
|
GetSizer()->SetSizeHints( this );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************/
|
2007-10-11 04:56:44 +00:00
|
|
|
|
void WinEDA_MirePropertiesFrame::OnCancelClick( wxCommandEvent& WXUNUSED (event) )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**********************************************************************/
|
|
|
|
|
{
|
2007-10-11 04:56:44 +00:00
|
|
|
|
EndModal( -1 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************/
|
2007-10-11 04:56:44 +00:00
|
|
|
|
void WinEDA_MirePropertiesFrame::OnOkClick( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**************************************************************************/
|
2007-08-20 01:20:48 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/* Met a jour les differents parametres pour le composant en cours d'<27>dition
|
2007-08-20 01:20:48 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2008-04-01 05:21:50 +00:00
|
|
|
|
m_MirePcb->Draw( m_Parent->DrawPanel, m_DC, GR_XOR );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
m_MirePcb->m_Width = m_MireWidthCtrl->GetValue();
|
|
|
|
|
MireDefaultSize = m_MirePcb->m_Size = m_MireSizeCtrl->GetValue();
|
|
|
|
|
m_MirePcb->m_Shape = m_MireShape->GetSelection() ? 1 : 0;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-04-01 05:21:50 +00:00
|
|
|
|
m_MirePcb->Draw( m_Parent->DrawPanel, m_DC, GR_OR );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
m_Parent->GetScreen()->SetModify();
|
2007-10-11 04:56:44 +00:00
|
|
|
|
EndModal( 1 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**************************************************************/
|
2007-08-20 01:20:48 +00:00
|
|
|
|
void WinEDA_PcbFrame::Delete_Mire( MIREPCB* MirePcb, wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**************************************************************/
|
|
|
|
|
{
|
2007-08-20 01:20:48 +00:00
|
|
|
|
if( MirePcb == NULL )
|
|
|
|
|
return;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-04-01 05:21:50 +00:00
|
|
|
|
MirePcb->Draw( DrawPanel, DC, GR_XOR );
|
|
|
|
|
MirePcb->DeleteStructure();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************/
|
2007-08-20 01:20:48 +00:00
|
|
|
|
static void Exit_EditMire( WinEDA_DrawPanel* Panel, wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**********************************************************/
|
|
|
|
|
{
|
2007-08-20 01:20:48 +00:00
|
|
|
|
BASE_SCREEN* screen = Panel->GetScreen();
|
|
|
|
|
MIREPCB* MirePcb = (MIREPCB*) screen->GetCurItem();
|
|
|
|
|
|
|
|
|
|
Panel->ManageCurseur = NULL;
|
|
|
|
|
Panel->ForceCloseManageCurseur = NULL;
|
|
|
|
|
|
|
|
|
|
if( MirePcb )
|
|
|
|
|
{
|
|
|
|
|
/* Effacement de la mire */
|
2008-04-01 05:21:50 +00:00
|
|
|
|
MirePcb->Draw( Panel, DC, GR_XOR );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
|
|
|
|
|
if( MirePcb->m_Flags & IS_NEW )
|
|
|
|
|
{
|
2008-04-01 05:21:50 +00:00
|
|
|
|
MirePcb->Draw( Panel, DC, GR_XOR );
|
2007-10-03 15:21:13 +00:00
|
|
|
|
MirePcb ->DeleteStructure();
|
2007-08-20 01:20:48 +00:00
|
|
|
|
MirePcb = NULL;
|
|
|
|
|
}
|
|
|
|
|
else /* Ancienne mire en deplacement: Remise en ancienne position */
|
|
|
|
|
{
|
|
|
|
|
MirePcb->m_Pos = OldPos;
|
|
|
|
|
MirePcb->m_Flags = 0;
|
2008-04-01 05:21:50 +00:00
|
|
|
|
MirePcb->Draw( Panel, DC, GR_OR );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*****************************************************/
|
2007-08-20 01:20:48 +00:00
|
|
|
|
MIREPCB* WinEDA_PcbFrame::Create_Mire( wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*****************************************************/
|
2007-08-20 01:20:48 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/* Routine de creation d'un Draw Symbole Pcb type MIRE
|
2007-08-20 01:20:48 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2007-08-20 01:20:48 +00:00
|
|
|
|
MIREPCB* MirePcb = new MIREPCB( m_Pcb );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-11-24 06:53:43 +00:00
|
|
|
|
MirePcb->SetNext( m_Pcb->m_Drawings );
|
|
|
|
|
MirePcb->SetBack( m_Pcb );
|
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
if( m_Pcb->m_Drawings )
|
2008-11-24 06:53:43 +00:00
|
|
|
|
m_Pcb->m_Drawings->SetBack( MirePcb );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
m_Pcb->m_Drawings = MirePcb;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
|
MirePcb->SetLayer( EDGE_N );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
MirePcb->m_Width = g_DesignSettings.m_EdgeSegmentWidth;
|
|
|
|
|
MirePcb->m_Size = MireDefaultSize;
|
|
|
|
|
MirePcb->m_Pos = GetScreen()->m_Curseur;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
Place_Mire( MirePcb, DC );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
return MirePcb;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************/
|
2007-08-20 01:20:48 +00:00
|
|
|
|
void WinEDA_PcbFrame::StartMove_Mire( MIREPCB* MirePcb, wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**********************************************************************/
|
2007-08-20 01:20:48 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/* Routine d'initialisation du deplacement d'une mire
|
2007-08-20 01:20:48 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2007-08-20 01:20:48 +00:00
|
|
|
|
if( MirePcb == NULL )
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
OldPos = MirePcb->m_Pos;
|
|
|
|
|
MirePcb->m_Flags |= IS_MOVED;
|
|
|
|
|
DrawPanel->ManageCurseur = Montre_Position_Mire;
|
|
|
|
|
DrawPanel->ForceCloseManageCurseur = Exit_EditMire;
|
2007-09-12 02:14:07 +00:00
|
|
|
|
SetCurItem( MirePcb );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************/
|
2007-08-20 01:20:48 +00:00
|
|
|
|
void WinEDA_PcbFrame::Place_Mire( MIREPCB* MirePcb, wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**************************************************************/
|
|
|
|
|
{
|
2007-08-20 01:20:48 +00:00
|
|
|
|
if( MirePcb == NULL )
|
|
|
|
|
return;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-04-01 05:21:50 +00:00
|
|
|
|
MirePcb->Draw( DrawPanel, DC, GR_OR );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
MirePcb->m_Flags = 0;
|
|
|
|
|
DrawPanel->ManageCurseur = NULL;
|
|
|
|
|
DrawPanel->ForceCloseManageCurseur = NULL;
|
2007-09-12 02:14:07 +00:00
|
|
|
|
SetCurItem( NULL );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
GetScreen()->SetModify();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2007-08-20 01:20:48 +00:00
|
|
|
|
static void Montre_Position_Mire( WinEDA_DrawPanel* panel, wxDC* DC, bool erase )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*********************************************************************************/
|
|
|
|
|
/* redessin du contour de la piste lors des deplacements de la souris */
|
|
|
|
|
{
|
2007-08-20 01:20:48 +00:00
|
|
|
|
BASE_SCREEN* screen = panel->GetScreen();
|
|
|
|
|
MIREPCB* MirePcb = (MIREPCB*) screen->GetCurItem();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
if( MirePcb == NULL )
|
|
|
|
|
return;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
/* efface ancienne position */
|
|
|
|
|
if( erase )
|
2008-04-01 05:21:50 +00:00
|
|
|
|
MirePcb->Draw( panel, DC, GR_XOR );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
MirePcb->m_Pos = screen->m_Curseur;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
// Reaffichage
|
2008-04-01 05:21:50 +00:00
|
|
|
|
MirePcb->Draw( panel, DC, GR_XOR );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|