kicad/pcbnew/basepcbframe.cpp

301 lines
8.5 KiB
C++
Raw Normal View History

2007-09-05 04:48:47 +00:00
/************************************************************************/
/* basepcbframe.cpp - fonctions des classes du type WinEDA_BasePcbFrame */
/************************************************************************/
#ifdef __GNUG__
#pragma implementation
#endif
#include "fctsys.h"
#include "common.h"
#include "pcbnew.h"
#include "bitmaps.h"
#include "protos.h"
#include "id.h"
2007-09-05 04:48:47 +00:00
#include "collectors.h"
2007-09-05 04:48:47 +00:00
/*******************************/
/* class WinEDA_BasePcbFrame */
/*******************************/
BEGIN_EVENT_TABLE( WinEDA_BasePcbFrame, WinEDA_DrawFrame )
COMMON_EVENTS_DRAWFRAME EVT_MENU_RANGE( ID_POPUP_PCB_ITEM_SELECTION_START,
ID_POPUP_PCB_ITEM_SELECTION_END,
WinEDA_BasePcbFrame::ProcessItemSelection )
END_EVENT_TABLE()
2007-09-05 04:48:47 +00:00
/****************/
/* Constructeur */
/****************/
WinEDA_BasePcbFrame::WinEDA_BasePcbFrame( wxWindow* father,
WinEDA_App* parent,
int idtype,
2007-09-05 04:48:47 +00:00
const wxString& title,
const wxPoint& pos,
const wxSize& size,
long style) :
WinEDA_DrawFrame( father, idtype, parent, title, pos, size, style )
{
2007-09-05 04:48:47 +00:00
m_InternalUnits = 10000; // Internal unit = 1/10000 inch
m_CurrentScreen = NULL;
m_Pcb = NULL;
m_DisplayPadFill = TRUE; // How to draw pads
m_DisplayPadNum = TRUE; // show pads number
m_DisplayModEdge = FILLED; // How to show module drawings
m_DisplayModText = FILLED; // How to show module texts
m_DisplayPcbTrackFill = TRUE; /* FALSE = sketch , TRUE = filled */
m_Draw3DFrame = NULL; // Display Window in 3D mode (OpenGL)
m_Collector = new GENERAL_COLLECTOR();
}
2007-09-05 04:48:47 +00:00
WinEDA_BasePcbFrame::~WinEDA_BasePcbFrame( void )
{
2007-09-05 04:48:47 +00:00
delete m_Collector;
}
/**************************************/
2007-09-05 04:48:47 +00:00
int WinEDA_BasePcbFrame::BestZoom( void )
/**************************************/
/**
* Return the "best" zoom, i.e. the zoom which shows the entire borad on screen
*/
{
2007-09-05 04:48:47 +00:00
int dx, dy, ii, jj;
int bestzoom;
wxSize size;
2007-09-05 04:48:47 +00:00
if( m_Pcb == NULL )
return 32;
2007-09-05 04:48:47 +00:00
m_Pcb->ComputeBoundaryBox();
2007-09-05 04:48:47 +00:00
dx = m_Pcb->m_BoundaryBox.GetWidth();
dy = m_Pcb->m_BoundaryBox.GetHeight();
2007-09-05 04:48:47 +00:00
size = DrawPanel->GetClientSize();
ii = ( dx + (size.x / 2) ) / size.x;
jj = ( dy + (size.y / 2) ) / size.y;
bestzoom = MAX( ii, jj ) + 1;
2007-09-05 04:48:47 +00:00
m_CurrentScreen->m_Curseur = m_Pcb->m_BoundaryBox.Centre();
2007-09-05 04:48:47 +00:00
return bestzoom;
}
/*************************************************/
void WinEDA_BasePcbFrame::ReCreateMenuBar( void )
/*************************************************/
// Virtual function
{
}
#ifdef CVPCB
/********************************************************************/
void WinEDA_BasePcbFrame::GeneralControle( wxDC* DC, wxPoint Mouse )
/********************************************************************/
// Virtual function
{
}
#endif
2007-09-05 04:48:47 +00:00
#include "3d_viewer.h"
/***********************************************************/
2007-09-05 04:48:47 +00:00
void WinEDA_BasePcbFrame::Show3D_Frame( wxCommandEvent& event )
/***********************************************************/
2007-09-05 04:48:47 +00:00
/* Creat and show the 3D frame display
2007-09-05 04:48:47 +00:00
*/
{
#ifndef GERBVIEW
2007-09-05 04:48:47 +00:00
// Create the main frame window
if( m_Draw3DFrame )
{
DisplayInfo( this, _( "3D Frame already opened" ) );
return;
}
#ifdef CVPCB
m_Draw3DFrame = new WinEDA3D_DrawFrame( this, m_Parent, _( "3D Viewer" ),
KICAD_DEFAULT_3D_DRAWFRAME_STYLE | wxFRAME_FLOAT_ON_PARENT );
#else
2007-09-05 04:48:47 +00:00
m_Draw3DFrame = new WinEDA3D_DrawFrame( this, m_Parent, _( "3D Viewer" ) );
#endif
2007-09-05 04:48:47 +00:00
// Show the frame
m_Draw3DFrame->Show( TRUE );
#endif
2007-05-06 16:03:28 +00:00
}
/* Virtual functions: Do nothing for WinEDA_BasePcbFrame window */
/***********************************************************************************/
2007-09-05 04:48:47 +00:00
void WinEDA_BasePcbFrame::SaveCopyInUndoList( EDA_BaseStruct* ItemToCopy, int flag )
/***********************************************************************************/
{
}
2007-09-05 04:48:47 +00:00
/********************************************************/
2007-09-05 04:48:47 +00:00
void WinEDA_BasePcbFrame::GetComponentFromUndoList( void )
/********************************************************/
{
}
2007-09-05 04:48:47 +00:00
/********************************************************/
2007-09-05 04:48:47 +00:00
void WinEDA_BasePcbFrame::GetComponentFromRedoList( void )
/********************************************************/
{
}
/****************************************************************/
2007-09-05 04:48:47 +00:00
void WinEDA_BasePcbFrame::SwitchLayer( wxDC* DC, int layer )
/*****************************************************************/
2007-10-10 21:35:41 +00:00
// Note: virtual, overridden in WinEDA_PcbFrame;
{
2007-09-05 04:48:47 +00:00
int preslayer = GetScreen()->m_Active_Layer;
2007-10-10 21:35:41 +00:00
// Check if the specified layer matches the present layer
if( layer == preslayer )
2007-09-05 04:48:47 +00:00
return;
2007-10-10 21:35:41 +00:00
// Copper layers cannot be selected unconditionally; how many
// of those layers are currently enabled needs to be checked.
if( (layer >= COPPER_LAYER_N) && (layer <= CMP_N) )
{
// If only one copper layer is enabled, the only such layer
// that can be selected to is the "Copper" layer (so the
// selection of any other copper layer is disregarded).
if( m_Pcb->m_BoardSettings->m_CopperLayerCount < 2 )
{
if( layer != COPPER_LAYER_N )
{
return;
}
}
// If more than one copper layer is enabled, the "Copper"
// and "Component" layers can be selected, but the total
// number of copper layers determines which internal
// layers are also capable of being selected.
else
{
if( (layer != COPPER_LAYER_N) && (layer != LAYER_CMP_N)
&& (layer >= m_Pcb->m_BoardSettings->m_CopperLayerCount - 1) )
{
return;
}
}
}
// Is yet more checking required? E.g. when the layer to be selected
// is a non-copper layer, or when switching between a copper layer
// and a non-copper layer, or vice-versa?
// ...
2007-09-05 04:48:47 +00:00
GetScreen()->m_Active_Layer = layer;
if( DisplayOpt.ContrastModeDisplay )
GetScreen()->SetRefreshReq();
}
/**********************************************************************/
void WinEDA_BasePcbFrame::ProcessItemSelection( wxCommandEvent& event )
/**********************************************************************/
{
int id = event.GetId();
// index into the collector list:
int itemNdx = id - ID_POPUP_PCB_ITEM_SELECTION_START;
2007-10-10 04:53:23 +00:00
if( id >= ID_POPUP_PCB_ITEM_SELECTION_START
&& id <= ID_POPUP_PCB_ITEM_SELECTION_END )
{
BOARD_ITEM* item = (*m_Collector)[itemNdx];
DrawPanel->m_AbortRequest = false;
2007-10-10 04:53:23 +00:00
#if defined (DEBUG) && 0
item->Show( 0, std::cout );
#endif
SetCurItem( item );
}
}
/*****************************************************************/
void WinEDA_BasePcbFrame::SetCurItem( BOARD_ITEM* aItem )
/*****************************************************************/
{
m_CurrentScreen->SetCurItem( aItem );
2007-10-10 12:43:30 +00:00
if( aItem )
2007-10-10 12:43:30 +00:00
{
aItem->Display_Infos( this );
2007-10-10 12:43:30 +00:00
#if defined(DEBUG)
aItem->Show( 0, std::cout );
#endif
}
else
{
2007-10-10 12:43:30 +00:00
// we can use either of these two:
//MsgPanel->EraseMsgBox();
2007-10-10 12:43:30 +00:00
m_Pcb->Display_Infos( this ); // show the BOARD stuff
#if defined(DEBUG)
std::cout << "SetCurItem(NULL)\n";
#endif
}
}
/*****************************************************************/
BOARD_ITEM* WinEDA_BasePcbFrame::GetCurItem()
/*****************************************************************/
{
return (BOARD_ITEM*) m_CurrentScreen->GetCurItem();
}
2007-09-05 04:48:47 +00:00
/****************************************************************/
GENERAL_COLLECTORS_GUIDE WinEDA_BasePcbFrame::GetCollectorsGuide()
/****************************************************************/
{
GENERAL_COLLECTORS_GUIDE guide( m_Pcb->m_BoardSettings->GetVisibleLayers(),
GetScreen()->m_Active_Layer );
2007-09-05 04:48:47 +00:00
// account for the globals
guide.SetIgnoreMTextsMarkedNoShow( g_ModuleTextNOVColor & ITEM_NOT_SHOW );
guide.SetIgnoreMTextsOnCopper( g_ModuleTextCUColor & ITEM_NOT_SHOW );
guide.SetIgnoreMTextsOnCmp( g_ModuleTextCMPColor & ITEM_NOT_SHOW );
guide.SetIgnoreModulesOnCu( !DisplayOpt.Show_Modules_Cu );
guide.SetIgnoreModulesOnCmp( !DisplayOpt.Show_Modules_Cmp );
return guide;
}