222 lines
6.4 KiB
C++
222 lines
6.4 KiB
C++
/*********************************************************************/
|
|
/* Edition of texts on copper and technical layers (TEXTE_PCB class) */
|
|
/*********************************************************************/
|
|
|
|
#include "fctsys.h"
|
|
#include "gr_basic.h"
|
|
#include "common.h"
|
|
#include "class_drawpanel.h"
|
|
|
|
#include "pcbnew.h"
|
|
#include "wxPcbStruct.h"
|
|
|
|
#include "protos.h"
|
|
|
|
/* Local functions */
|
|
static void Move_Texte_Pcb( WinEDA_DrawPanel* panel, wxDC* DC, bool erase );
|
|
static void Abort_Edit_Pcb_Text( WinEDA_DrawPanel* Panel, wxDC* DC );
|
|
|
|
/* variables : */
|
|
static TEXTE_PCB s_TextCopy( (BOARD_ITEM*) NULL ); /* copy of the edited text
|
|
* (used to undo/redo/abort a complex edition command
|
|
*/
|
|
|
|
/*************************************************************/
|
|
void Abort_Edit_Pcb_Text( WinEDA_DrawPanel* Panel, wxDC* DC )
|
|
/*************************************************************/
|
|
|
|
/*
|
|
* Routine de sortie du menu edit texte Pcb
|
|
* Si un texte est selectionne, ses coord initiales sont regenerees
|
|
*/
|
|
{
|
|
Panel->ManageCurseur = NULL;
|
|
Panel->ForceCloseManageCurseur = NULL;
|
|
( (WinEDA_PcbFrame*) Panel->m_Parent )->SetCurItem( NULL );
|
|
|
|
TEXTE_PCB* TextePcb = (TEXTE_PCB*) Panel->GetScreen()->GetCurItem();
|
|
|
|
if( TextePcb == NULL ) // Should not occur
|
|
return;
|
|
|
|
TextePcb->Draw( Panel, DC, GR_XOR );
|
|
|
|
if( (TextePcb->m_Flags & IS_NEW) ) // If new: remove it
|
|
{
|
|
TextePcb->DeleteStructure();
|
|
return;
|
|
}
|
|
|
|
|
|
SwapData(TextePcb, &s_TextCopy);
|
|
TextePcb->Draw( Panel, DC, GR_OR );
|
|
TextePcb->m_Flags = 0;
|
|
}
|
|
|
|
|
|
/*********************************************************************/
|
|
void WinEDA_PcbFrame::Place_Texte_Pcb( TEXTE_PCB* TextePcb, wxDC* DC )
|
|
/*********************************************************************/
|
|
|
|
/*
|
|
* Place the current text being moving
|
|
*/
|
|
{
|
|
DrawPanel->ManageCurseur = NULL;
|
|
DrawPanel->ForceCloseManageCurseur = NULL;
|
|
SetCurItem( NULL );
|
|
|
|
if( TextePcb == NULL )
|
|
return;
|
|
|
|
TextePcb->Draw( DrawPanel, DC, GR_OR );
|
|
GetScreen()->SetModify();
|
|
|
|
if( (TextePcb->m_Flags & IS_NEW) ) // If new: prepare undo command
|
|
{
|
|
SaveCopyInUndoList( TextePcb, UR_NEW );
|
|
TextePcb->m_Flags = 0;
|
|
return;
|
|
}
|
|
|
|
if( TextePcb->m_Flags == IS_MOVED ) // If moved only
|
|
SaveCopyInUndoList( TextePcb, UR_MOVED, TextePcb->m_Pos - s_TextCopy.m_Pos );
|
|
else
|
|
{
|
|
// Restore initial params
|
|
SwapData( TextePcb, &s_TextCopy);
|
|
// Prepare undo command
|
|
SaveCopyInUndoList( TextePcb, UR_CHANGED );
|
|
SwapData( TextePcb, &s_TextCopy);
|
|
// Restore current params
|
|
}
|
|
|
|
TextePcb->m_Flags = 0;
|
|
}
|
|
|
|
|
|
/***********************************************************************/
|
|
void WinEDA_PcbFrame::StartMoveTextePcb( TEXTE_PCB* TextePcb, wxDC* DC )
|
|
/***********************************************************************/
|
|
|
|
/* Initialise parameters to move a pcb text
|
|
*/
|
|
{
|
|
if( TextePcb == NULL )
|
|
return;
|
|
|
|
// if it is an existing item: prepare a copy to undo/abort command
|
|
if( (TextePcb->m_Flags & IS_NEW) == 0 )
|
|
s_TextCopy.Copy( TextePcb );
|
|
|
|
TextePcb->Draw( DrawPanel, DC, GR_XOR );
|
|
TextePcb->m_Flags |= IS_MOVED;
|
|
TextePcb->DisplayInfo( this );
|
|
DrawPanel->ManageCurseur = Move_Texte_Pcb;
|
|
DrawPanel->ForceCloseManageCurseur = Abort_Edit_Pcb_Text;
|
|
SetCurItem( TextePcb );
|
|
DrawPanel->ManageCurseur( DrawPanel, DC, FALSE );
|
|
}
|
|
|
|
|
|
/*************************************************************************/
|
|
static void Move_Texte_Pcb( WinEDA_DrawPanel* panel, wxDC* DC, bool erase )
|
|
/*************************************************************************/
|
|
/* Routine deplacant le texte PCB suivant le curseur de la souris */
|
|
{
|
|
TEXTE_PCB* TextePcb = (TEXTE_PCB*) panel->GetScreen()->GetCurItem();
|
|
|
|
if( TextePcb == NULL )
|
|
return;
|
|
|
|
/* effacement du texte : */
|
|
|
|
if( erase )
|
|
TextePcb->Draw( panel, DC, GR_XOR );
|
|
|
|
TextePcb->m_Pos = panel->GetScreen()->m_Curseur;
|
|
|
|
/* Redessin du Texte */
|
|
TextePcb->Draw( panel, DC, GR_XOR );
|
|
}
|
|
|
|
|
|
/**********************************************************************/
|
|
void WinEDA_PcbFrame::Delete_Texte_Pcb( TEXTE_PCB* TextePcb, wxDC* DC )
|
|
/**********************************************************************/
|
|
{
|
|
if( TextePcb == NULL )
|
|
return;
|
|
|
|
TextePcb->Draw( DrawPanel, DC, GR_XOR );
|
|
|
|
SaveCopyInUndoList( TextePcb, UR_DELETED );
|
|
TextePcb->UnLink();
|
|
DrawPanel->ManageCurseur = NULL;
|
|
DrawPanel->ForceCloseManageCurseur = NULL;
|
|
SetCurItem( NULL );
|
|
}
|
|
|
|
|
|
/*******************************************************/
|
|
TEXTE_PCB* WinEDA_PcbFrame::Create_Texte_Pcb( wxDC* DC )
|
|
/*******************************************************/
|
|
{
|
|
TEXTE_PCB* TextePcb;
|
|
|
|
TextePcb = new TEXTE_PCB( GetBoard() );
|
|
|
|
/* Chainage de la nouvelle structure en debut de liste */
|
|
GetBoard()->Add( TextePcb );
|
|
|
|
/* Mise a jour des caracteristiques */
|
|
TextePcb->m_Flags = IS_NEW;
|
|
TextePcb->SetLayer( ( (PCB_SCREEN*) GetScreen() )->m_Active_Layer );
|
|
TextePcb->m_Mirror = false;
|
|
if( TextePcb->GetLayer() == COPPER_LAYER_N )
|
|
TextePcb->m_Mirror = true;
|
|
|
|
TextePcb->m_Size = g_DesignSettings.m_PcbTextSize;
|
|
TextePcb->m_Pos = GetScreen()->m_Curseur;
|
|
TextePcb->m_Width = g_DesignSettings.m_PcbTextWidth;
|
|
|
|
InstallTextPCBOptionsFrame( TextePcb, DC );
|
|
if( TextePcb->m_Text.IsEmpty() )
|
|
{
|
|
TextePcb->DeleteStructure();
|
|
TextePcb = NULL;
|
|
}
|
|
else
|
|
StartMoveTextePcb( TextePcb, DC );
|
|
|
|
return TextePcb;
|
|
}
|
|
|
|
|
|
/***********************************************************************/
|
|
void WinEDA_PcbFrame::Rotate_Texte_Pcb( TEXTE_PCB* TextePcb, wxDC* DC )
|
|
/***********************************************************************/
|
|
{
|
|
int angle = 900;
|
|
int drawmode = GR_XOR;
|
|
|
|
if( TextePcb == NULL )
|
|
return;
|
|
|
|
/* effacement du texte : */
|
|
TextePcb->Draw( DrawPanel, DC, GR_XOR );
|
|
|
|
TextePcb->m_Orient += angle;
|
|
NORMALIZE_ANGLE( TextePcb->m_Orient );
|
|
|
|
/* Redessin du Texte */
|
|
TextePcb->Draw( DrawPanel, DC, drawmode );
|
|
TextePcb->DisplayInfo( this );
|
|
if( TextePcb->m_Flags == 0 ) // i.e. not edited, or moved
|
|
SaveCopyInUndoList( TextePcb, UR_ROTATED, TextePcb->m_Pos );
|
|
else // set flag edit, to show it was a complex command
|
|
TextePcb->m_Flags |= IN_EDIT;
|
|
|
|
GetScreen()->SetModify();
|
|
}
|