kicad/pcbnew/move-drag_pads.cpp

411 lines
11 KiB
C++
Raw Normal View History

2008-02-23 01:27:21 +00:00
/*************************/
/* Edition des Pastilles */
/*************************/
#include "fctsys.h"
#include "gr_basic.h"
#include "common.h"
#include "pcbnew.h"
#include "autorout.h"
#include "trigo.h"
#include "drag.h"
#include "protos.h"
/* Routines Locales */
/* Variables locales */
2008-02-23 01:27:21 +00:00
static D_PAD* s_CurrentSelectedPad; /* pointeur sur le pad selecte pour edition */
static wxPoint Pad_OldPos;
/************************************************************/
2008-02-23 01:27:21 +00:00
static void Exit_Move_Pad( WinEDA_DrawPanel* Panel, wxDC* DC )
/************************************************************/
2008-02-23 01:27:21 +00:00
/* Routine de sortie du menu EDIT PADS.
2008-02-23 01:27:21 +00:00
* Sortie simple si pad de pad en mouvement
* Remise en etat des conditions initiales avant move si move en cours
*/
{
2008-02-23 01:27:21 +00:00
D_PAD* pad = s_CurrentSelectedPad;
Panel->ManageCurseur = NULL;
2008-02-23 03:25:54 +00:00
Panel->ForceCloseManageCurseur = NULL;
2008-02-23 01:27:21 +00:00
if( pad == NULL )
return;
2008-04-01 05:21:50 +00:00
pad->Draw( Panel, DC, GR_XOR );
2008-02-23 01:27:21 +00:00
pad->m_Flags = 0;
pad->m_Pos = Pad_OldPos;
2008-04-01 05:21:50 +00:00
pad->Draw( Panel, DC, GR_XOR );
2008-02-23 01:27:21 +00:00
/* Pad Move en cours : remise a l'etat d'origine */
if( g_Drag_Pistes_On )
{
/* Effacement des segments dragges */
DRAG_SEGM* pt_drag = g_DragSegmentList;
for( ; pt_drag != NULL; pt_drag = pt_drag->Pnext )
{
TRACK* Track = pt_drag->m_Segm;
Track->Draw( Panel, DC, GR_XOR );
Track->SetState( EDIT, OFF );
pt_drag->SetInitialValues();
Track->Draw( Panel, DC, GR_OR );
}
}
EraseDragListe();
s_CurrentSelectedPad = NULL;
g_Drag_Pistes_On = FALSE;
}
/*************************************************************************/
2008-02-23 01:27:21 +00:00
static void Show_Pad_Move( WinEDA_DrawPanel* panel, wxDC* DC, bool erase )
/*************************************************************************/
/* Affiche le pad et les pistes en mode drag lors des deplacements du pad */
{
2008-02-23 01:27:21 +00:00
TRACK* Track;
DRAG_SEGM* pt_drag;
BASE_SCREEN* screen = panel->GetScreen();
D_PAD* pad = s_CurrentSelectedPad;
if( erase )
2008-04-01 05:21:50 +00:00
pad->Draw( panel, DC, GR_XOR );
2008-02-23 01:27:21 +00:00
pad->m_Pos = screen->m_Curseur;
2008-04-01 05:21:50 +00:00
pad->Draw( panel, DC, GR_XOR );
2008-02-23 01:27:21 +00:00
if( !g_Drag_Pistes_On )
return;
/* Tracage des segments dragges */
pt_drag = g_DragSegmentList;
for( ; pt_drag != NULL; pt_drag = pt_drag->Pnext )
{
Track = pt_drag->m_Segm;
if( erase )
Track->Draw( panel, DC, GR_XOR );
if( pt_drag->m_Pad_Start )
{
Track->m_Start = pad->m_Pos;
}
if( pt_drag->m_Pad_End )
{
Track->m_End = pad->m_Pos;
}
Track->Draw( panel, DC, GR_XOR );
}
}
/*************************************************************/
2008-02-23 01:27:21 +00:00
void WinEDA_BasePcbFrame::Export_Pad_Settings( D_PAD* pt_pad )
/*************************************************************/
2008-02-23 01:27:21 +00:00
/* Charge en liste des caracteristiques par defaut celles du pad selecte
2008-02-23 01:27:21 +00:00
*/
{
2008-02-23 01:27:21 +00:00
MODULE* Module;
2008-02-23 01:27:21 +00:00
if( pt_pad == NULL )
return;
Module = (MODULE*) pt_pad->GetParent();
2008-02-23 01:27:21 +00:00
pt_pad->Display_Infos( this );
2008-02-23 01:27:21 +00:00
g_Pad_Master.m_PadShape = pt_pad->m_PadShape;
g_Pad_Master.m_Attribut = pt_pad->m_Attribut;
g_Pad_Master.m_Masque_Layer = pt_pad->m_Masque_Layer;
g_Pad_Master.m_Orient = pt_pad->m_Orient -
( (MODULE*) pt_pad->GetParent() )->m_Orient;
2008-02-23 01:27:21 +00:00
g_Pad_Master.m_Size = pt_pad->m_Size;
g_Pad_Master.m_DeltaSize = pt_pad->m_DeltaSize;
pt_pad->ComputeRayon();
2008-02-23 01:27:21 +00:00
g_Pad_Master.m_Offset = pt_pad->m_Offset;
g_Pad_Master.m_Drill = pt_pad->m_Drill;
g_Pad_Master.m_DrillShape = pt_pad->m_DrillShape;
}
/***********************************************************************/
2008-04-18 13:28:56 +00:00
void WinEDA_BasePcbFrame::Import_Pad_Settings( D_PAD* aPad, bool aDraw )
/***********************************************************************/
2008-02-23 01:27:21 +00:00
/* Met a jour les nouvelles valeurs de dimensions du pad pointe par pt_pad
2008-02-23 01:27:21 +00:00
* - Source : valeurs choisies des caracteristiques generales
* - les dimensions sont modifiees
* - la position et les noms ne sont pas touches
*/
{
2008-04-18 13:28:56 +00:00
if( aDraw )
{
aPad->m_Flags |= DO_NOT_DRAW;
DrawPanel->PostDirtyRect( aPad->GetBoundingBox() );
aPad->m_Flags &= ~DO_NOT_DRAW;
}
2008-04-18 13:28:56 +00:00
aPad->m_PadShape = g_Pad_Master.m_PadShape;
aPad->m_Masque_Layer = g_Pad_Master.m_Masque_Layer;
aPad->m_Attribut = g_Pad_Master.m_Attribut;
aPad->m_Orient = g_Pad_Master.m_Orient +
( (MODULE*) aPad->GetParent() )->m_Orient;
2008-04-18 13:28:56 +00:00
aPad->m_Size = g_Pad_Master.m_Size;
aPad->m_DeltaSize = wxSize( 0, 0 );
aPad->m_Offset = g_Pad_Master.m_Offset;
aPad->m_Drill = g_Pad_Master.m_Drill;
aPad->m_DrillShape = g_Pad_Master.m_DrillShape;
2008-02-23 01:27:21 +00:00
/* Traitement des cas particuliers : */
switch( g_Pad_Master.m_PadShape )
{
case PAD_TRAPEZOID:
2008-04-18 13:28:56 +00:00
aPad->m_DeltaSize = g_Pad_Master.m_DeltaSize;
2008-02-23 01:27:21 +00:00
break;
case PAD_CIRCLE:
2008-04-18 13:28:56 +00:00
aPad->m_Size.y = aPad->m_Size.x;
2008-02-23 01:27:21 +00:00
break;
}
switch( g_Pad_Master.m_Attribut & 0x7F )
{
case PAD_SMD:
case PAD_CONN:
2008-04-18 13:28:56 +00:00
aPad->m_Drill = wxSize( 0, 0 );
aPad->m_Offset.x = 0;
aPad->m_Offset.y = 0;
2008-02-23 01:27:21 +00:00
}
2008-04-18 13:28:56 +00:00
aPad->ComputeRayon();
2008-02-23 01:27:21 +00:00
2008-04-18 13:28:56 +00:00
if( aDraw )
DrawPanel->PostDirtyRect( aPad->GetBoundingBox() );
( (MODULE*) aPad->GetParent() )->m_LastEdit_Time = time( NULL );
}
/***********************************************************/
2008-04-18 13:28:56 +00:00
void WinEDA_BasePcbFrame::AddPad( MODULE* Module, bool draw )
/***********************************************************/
/* Routine d'ajout d'un pad sur l'module selectionnee */
{
2008-02-23 01:27:21 +00:00
D_PAD* Pad, * ptliste;
int rX, rY;
m_Pcb->m_Status_Pcb = 0;
Module->m_LastEdit_Time = time( NULL );
Pad = new D_PAD( Module );
/* Chainage de la structure en fin de liste des pads : */
ptliste = Module->m_Pads;
if( ptliste == NULL ) /* 1er pad */
{
Module->m_Pads = Pad;
Pad->SetBack( Module );
2008-02-23 01:27:21 +00:00
}
else
{
while( ptliste )
{
if( ptliste->Next() == NULL )
2008-02-23 01:27:21 +00:00
break;
ptliste = (D_PAD*) ptliste->Next();
2008-02-23 01:27:21 +00:00
}
Pad->SetBack( ptliste );
ptliste->SetNext( Pad );
2008-02-23 01:27:21 +00:00
}
/* Mise a jour des caract de la pastille : */
2008-04-18 13:28:56 +00:00
Import_Pad_Settings( Pad, false );
2008-02-23 01:27:21 +00:00
Pad->m_Netname.Empty();
Pad->m_Pos = GetScreen()->m_Curseur;
rX = Pad->m_Pos.x - Module->m_Pos.x;
rY = Pad->m_Pos.y - Module->m_Pos.y;
RotatePoint( &rX, &rY, -Module->m_Orient );
Pad->m_Pos0.x = rX;
Pad->m_Pos0.y = rY;
/* Increment automatique de la reference courante Current_PadName */
long num = 0; int ponder = 1;
while( g_Current_PadName.Len() && g_Current_PadName.Last() >= '0' &&
g_Current_PadName.Last() <= '9' )
{
num += (g_Current_PadName.Last() - '0') * ponder;
g_Current_PadName.RemoveLast();
ponder *= 10;
}
num++;
g_Current_PadName << num;
Pad->SetPadName( g_Current_PadName );
/* Redessin du module */
Module->Set_Rectangle_Encadrement();
Pad->Display_Infos( this );
2008-04-18 13:28:56 +00:00
if ( draw )
DrawPanel->PostDirtyRect( Module->GetBoundingBox() );
}
2008-02-23 01:27:21 +00:00
/*********************************************************/
2008-02-23 01:27:21 +00:00
void WinEDA_BasePcbFrame::DeletePad( D_PAD* Pad, wxDC* DC )
/*********************************************************/
/* Function to delete the pad "pad" */
{
2008-02-23 01:27:21 +00:00
MODULE* Module;
wxString line;
2008-02-23 01:27:21 +00:00
if( Pad == NULL )
return;
Module = (MODULE*) Pad->GetParent();
2008-02-23 01:27:21 +00:00
Module->m_LastEdit_Time = time( NULL );
2008-02-23 01:27:21 +00:00
line.Printf( _( "Delete Pad (module %s %s) " ),
Module->m_Reference->m_Text.GetData(), Module->m_Value->m_Text.GetData() );
if( !IsOK( this, line ) )
return;
2008-02-23 01:27:21 +00:00
m_Pcb->m_Status_Pcb = 0;
2008-02-23 01:27:21 +00:00
Pad->DeleteStructure();
2008-03-18 02:52:49 +00:00
DrawPanel->PostDirtyRect( Module->GetBoundingBox() );
2008-02-23 01:27:21 +00:00
Module->Set_Rectangle_Encadrement();
2008-03-18 02:52:49 +00:00
2008-02-23 01:27:21 +00:00
GetScreen()->SetModify();
}
2008-02-23 01:27:21 +00:00
/*************************************************************/
2008-02-23 01:27:21 +00:00
void WinEDA_BasePcbFrame::StartMovePad( D_PAD* Pad, wxDC* DC )
/*************************************************************/
/* Function to initialise the "move pad" command */
{
2008-02-23 01:27:21 +00:00
MODULE* Module;
2008-02-23 01:27:21 +00:00
if( Pad == NULL )
return;
Module = (MODULE*) Pad->GetParent();
2008-02-23 01:27:21 +00:00
s_CurrentSelectedPad = Pad;
Pad_OldPos = Pad->m_Pos;
Pad->Display_Infos( this );
DrawPanel->ManageCurseur = Show_Pad_Move;
DrawPanel->ForceCloseManageCurseur = Exit_Move_Pad;
2008-02-23 01:27:21 +00:00
/* Draw the pad (SKETCH mode) */
2008-04-01 05:21:50 +00:00
Pad->Draw( DrawPanel, DC, GR_XOR );
2008-02-23 01:27:21 +00:00
Pad->m_Flags |= IS_MOVED;
2008-04-01 05:21:50 +00:00
Pad->Draw( DrawPanel, DC, GR_XOR );
2008-02-23 01:27:21 +00:00
/* Build the list of track segments to drag if the command is a drag pad*/
if( g_Drag_Pistes_On )
Build_1_Pad_SegmentsToDrag( DrawPanel, DC, Pad );
else
EraseDragListe();
}
/*********************************************************/
2008-02-23 01:27:21 +00:00
void WinEDA_BasePcbFrame::PlacePad( D_PAD* Pad, wxDC* DC )
/*********************************************************/
/* Routine to Place a moved pad */
{
2008-02-23 01:27:21 +00:00
int dX, dY;
TRACK* Track;
DRAG_SEGM* pt_drag;
MODULE* Module;
if( Pad == NULL )
return;
Module = (MODULE*) Pad->GetParent();
2008-02-23 01:27:21 +00:00
/* Placement du pad */
2008-04-01 05:21:50 +00:00
Pad->Draw( DrawPanel, DC, GR_XOR );
2008-02-23 01:27:21 +00:00
/* Save old module */
Pad->m_Pos = Pad_OldPos; SaveCopyInUndoList( m_Pcb->m_Modules );
Pad->m_Pos = GetScreen()->m_Curseur;
2008-02-23 01:27:21 +00:00
/* Compute local coordinates (i.e refer to Module position and for Module orient = 0)*/
dX = Pad->m_Pos.x - Pad_OldPos.x;
dY = Pad->m_Pos.y - Pad_OldPos.y;
RotatePoint( &dX, &dY, -Module->m_Orient );
2008-02-23 01:27:21 +00:00
Pad->m_Pos0.x += dX;
s_CurrentSelectedPad->m_Pos0.y += dY;
2008-02-23 01:27:21 +00:00
Pad->m_Flags = 0;
2008-04-01 05:21:50 +00:00
Pad->Draw( DrawPanel, DC, GR_OR );
2008-02-23 01:27:21 +00:00
Module->Set_Rectangle_Encadrement();
Module->m_LastEdit_Time = time( NULL );
2008-02-23 01:27:21 +00:00
/* Tracage des segments dragges */
pt_drag = g_DragSegmentList;
for( ; pt_drag; pt_drag = pt_drag->Pnext )
{
Track = pt_drag->m_Segm;
Track->SetState( EDIT, OFF );
Track->Draw( DrawPanel, DC, GR_OR );
}
2008-02-23 01:27:21 +00:00
EraseDragListe();
GetScreen()->SetModify();
DrawPanel->ManageCurseur = NULL;
DrawPanel->ForceCloseManageCurseur = NULL;
m_Pcb->m_Status_Pcb &= ~( LISTE_CHEVELU_OK | CONNEXION_OK);
}
2008-02-23 01:27:21 +00:00
/**********************************************************/
2008-02-23 01:27:21 +00:00
void WinEDA_BasePcbFrame::RotatePad( D_PAD* Pad, wxDC* DC )
/**********************************************************/
2008-02-23 01:27:21 +00:00
/* Tourne de 90 degres le pad selectionne :
2008-02-23 01:27:21 +00:00
* c.a.d intervertit dim X et Y et offsets
*/
{
2008-02-23 01:27:21 +00:00
MODULE* Module;
2008-02-23 01:27:21 +00:00
if( Pad == NULL )
return;
Module = (MODULE*) Pad->GetParent();
2008-02-23 01:27:21 +00:00
Module->m_LastEdit_Time = time( NULL );
2008-02-23 01:27:21 +00:00
GetScreen()->SetModify();
2008-04-01 05:21:50 +00:00
Module->Draw( DrawPanel, DC, GR_XOR );
2008-02-23 01:27:21 +00:00
EXCHG( Pad->m_Size.x, Pad->m_Size.y );
EXCHG( Pad->m_Drill.x, Pad->m_Drill.y );
EXCHG( Pad->m_Offset.x, Pad->m_Offset.y );
Pad->m_Offset.y = -Pad->m_Offset.y;
2008-02-23 01:27:21 +00:00
EXCHG( Pad->m_DeltaSize.x, Pad->m_DeltaSize.y );
Pad->m_DeltaSize.x = -Pad->m_DeltaSize.x; /* ceci est la variation
* de la dim Y sur l'axe X */
2008-02-23 01:27:21 +00:00
Module->Set_Rectangle_Encadrement();
2008-02-23 01:27:21 +00:00
Pad->Display_Infos( this );
2008-04-01 05:21:50 +00:00
Module->Draw( DrawPanel, DC, GR_OR );
2008-02-23 01:27:21 +00:00
}