kicad/pcbnew/onleftclick.cpp

622 lines
18 KiB
C++
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2007 Jean-Pierre Charras, jean-pierre.charras@gipsa-lab.inpg.fr
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 1992-2017 KiCad Developers, see AUTHORS.txt for contributors.
*
* 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
*/
/**
* @file pcbnew/onleftclick.cpp
* @brief Functions called when the left button is clicked or double clicked.
*/
2007-09-29 15:30:16 +00:00
#include <fctsys.h>
#include <class_drawpanel.h>
#include <confirm.h>
2018-01-29 20:58:58 +00:00
#include <pcb_edit_frame.h>
#include <msgpanel.h>
2007-09-29 15:30:16 +00:00
#include <class_board.h>
#include <class_drawsegment.h>
#include <class_dimension.h>
#include <class_zone.h>
#include <class_pcb_text.h>
#include <class_text_mod.h>
#include <class_module.h>
#include <class_pcb_target.h>
#include <origin_viewitem.h>
#include <project.h>
#include <pcbnew.h>
#include <pcbnew_id.h>
#include <menus_helpers.h>
#include <tools/pcb_editor_control.h>
#include <tools/pcbnew_control.h>
2007-09-29 15:30:16 +00:00
/* Handle the left button mouse click, when a tool is active
2007-09-29 15:30:16 +00:00
*/
void PCB_EDIT_FRAME::OnLeftClick( wxDC* aDC, const wxPoint& aPosition )
2007-09-29 15:30:16 +00:00
{
BOARD_ITEM* curr_item = GetCurItem();
bool exit = false;
bool no_tool = GetToolId() == ID_NO_TOOL_SELECTED;
2007-09-29 15:30:16 +00:00
if( no_tool || ( curr_item && curr_item->GetFlags() ) )
2007-09-29 15:30:16 +00:00
{
m_canvas->SetAutoPanRequest( false );
if( curr_item && curr_item->GetFlags() ) // Command in progress
2007-09-29 15:30:16 +00:00
{
m_canvas->SetIgnoreMouseEvents( true );
m_canvas->CrossHairOff( aDC );
2007-09-29 15:30:16 +00:00
switch( curr_item->Type() )
2007-09-29 15:30:16 +00:00
{
case PCB_ZONE_AREA_T:
if( curr_item->IsNew() )
{
m_canvas->SetAutoPanRequest( true );
Begin_Zone( aDC );
}
else
{
End_Move_Zone_Corner_Or_Outlines( aDC, static_cast<ZONE_CONTAINER*>( curr_item ) );
}
2007-09-29 15:30:16 +00:00
exit = true;
break;
case PCB_TRACE_T:
case PCB_VIA_T:
if( curr_item->IsDragging() )
{
PlaceDraggedOrMovedTrackSegment( static_cast<TRACK*>( curr_item ), aDC );
exit = true;
}
break;
case PCB_TEXT_T:
Place_Texte_Pcb( static_cast<TEXTE_PCB*>( curr_item ), aDC );
exit = true;
break;
2007-09-29 15:30:16 +00:00
case PCB_MODULE_TEXT_T:
PlaceTexteModule( static_cast<TEXTE_MODULE*>( curr_item ), aDC );
exit = true;
break;
2007-09-29 15:30:16 +00:00
case PCB_PAD_T:
PlacePad( static_cast<D_PAD*>( curr_item ), aDC );
exit = true;
break;
2007-09-29 15:30:16 +00:00
case PCB_MODULE_T:
PlaceModule( static_cast<MODULE*>( curr_item ), aDC );
exit = true;
break;
2007-09-29 15:30:16 +00:00
case PCB_TARGET_T:
PlaceTarget( static_cast<PCB_TARGET*>( curr_item ), aDC );
exit = true;
break;
case PCB_LINE_T:
if( no_tool ) // when no tools: existing item moving.
{
Place_DrawItem( static_cast<DRAWSEGMENT*>( curr_item ), aDC );
exit = true;
}
break;
case PCB_DIMENSION_T:
if( ! curr_item->IsNew() )
{ // We are moving the text of an existing dimension. Place it
PlaceDimensionText( static_cast<DIMENSION*>( curr_item ), aDC );
exit = true;
}
break;
case PCB_MARKER_T: // MARKER_PCB, a marker used to show something
curr_item->ClearFlags(); // Not reason to have flags set
exit = true;
break;
default:
DisplayError( this,
wxString::Format(
"PCB_EDIT_FRAME::OnLeftClick() err: curr_item type %d m_Flags != 0 (%X)",
curr_item->Type(), curr_item->GetFlags() ) );
exit = true;
break;
}
m_canvas->SetIgnoreMouseEvents( false );
m_canvas->CrossHairOn( aDC );
if( exit )
return;
2007-09-29 15:30:16 +00:00
}
else if( !wxGetKeyState( WXK_SHIFT ) && !wxGetKeyState( WXK_ALT )
&& !wxGetKeyState( WXK_CONTROL ) )
2007-09-29 15:30:16 +00:00
{
curr_item = PcbGeneralLocateAndDisplay();
if( curr_item )
SendMessageToEESCHEMA( curr_item );
2008-02-23 04:53:44 +00:00
}
2007-09-29 15:30:16 +00:00
}
2008-02-23 04:53:44 +00:00
if( curr_item ) // display netclass info for zones, tracks and pads
{
switch( curr_item->Type() )
{
case PCB_ZONE_AREA_T:
case PCB_TRACE_T:
case PCB_VIA_T:
case PCB_PAD_T:
SetCurrentNetClass(
((BOARD_CONNECTED_ITEM*)curr_item)->GetNetClassName() );
break;
default:
break;
}
}
switch( GetToolId() )
2007-09-29 15:30:16 +00:00
{
case ID_MAIN_MENUBAR:
case ID_NO_TOOL_SELECTED:
2016-06-08 11:19:53 +00:00
case ID_ZOOM_SELECTION:
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_MUWAVE_TOOL_SELF_CMD:
case ID_PCB_MUWAVE_TOOL_GAP_CMD:
case ID_PCB_MUWAVE_TOOL_STUB_CMD:
case ID_PCB_MUWAVE_TOOL_STUB_ARC_CMD:
case ID_PCB_MUWAVE_TOOL_FUNCTION_SHAPE_CMD:
MuWaveCommand( aDC, aPosition );
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_HIGHLIGHT_BUTT:
{
int netcode = SelectHighLight( aDC );
if( netcode < 0 )
SetMsgPanel( GetBoard() );
else
2008-02-23 04:53:44 +00:00
{
NETINFO_ITEM* net = GetBoard()->FindNet( netcode );
if( net )
{
MSG_PANEL_ITEMS items;
net->GetMsgPanelInfo( m_UserUnits, items );
SetMsgPanel( items );
}
2008-02-23 04:53:44 +00:00
}
}
break;
2007-09-29 15:30:16 +00:00
case ID_PCB_SHOW_1_RATSNEST_BUTT:
curr_item = PcbGeneralLocateAndDisplay();
Show_1_Ratsnest( curr_item, aDC );
2008-02-23 04:53:44 +00:00
if( curr_item )
SendMessageToEESCHEMA( curr_item );
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_TARGET_BUTT:
if( (curr_item == NULL) || (curr_item->GetFlags() == 0) )
2007-09-29 15:30:16 +00:00
{
SetCurItem( (BOARD_ITEM*) CreateTarget( aDC ) );
m_canvas->MoveCursorToCrossHair();
2007-09-29 15:30:16 +00:00
}
else if( curr_item->Type() == PCB_TARGET_T )
2007-09-29 15:30:16 +00:00
{
PlaceTarget( (PCB_TARGET*) curr_item, aDC );
2007-09-29 15:30:16 +00:00
}
else
{
DisplayError( this, wxT( "OnLeftClick err: not a PCB_TARGET_T" ) );
}
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_CIRCLE_BUTT:
case ID_PCB_ARC_BUTT:
case ID_PCB_ADD_LINE_BUTT:
2012-05-22 17:51:18 +00:00
{
STROKE_T shape = S_SEGMENT;
2012-05-22 17:51:18 +00:00
if( GetToolId() == ID_PCB_CIRCLE_BUTT )
shape = S_CIRCLE;
2012-05-22 17:51:18 +00:00
if( GetToolId() == ID_PCB_ARC_BUTT )
shape = S_ARC;
2007-09-29 15:30:16 +00:00
if( (curr_item == NULL) || (curr_item->GetFlags() == 0) )
2012-05-22 17:51:18 +00:00
{
curr_item = (BOARD_ITEM*) Begin_DrawSegment( NULL, shape, aDC );
SetCurItem( curr_item );
2012-05-22 17:51:18 +00:00
m_canvas->SetAutoPanRequest( true );
}
else if( curr_item
&& (curr_item->Type() == PCB_LINE_T)
&& curr_item->IsNew() )
2012-05-22 17:51:18 +00:00
{
curr_item = (BOARD_ITEM*) Begin_DrawSegment( (DRAWSEGMENT*) curr_item, shape, aDC );
SetCurItem( curr_item );
2012-05-22 17:51:18 +00:00
m_canvas->SetAutoPanRequest( true );
}
2007-09-29 15:30:16 +00:00
}
break;
case ID_TRACK_BUTT:
if( !IsCopperLayer( GetActiveLayer() ) )
2007-09-29 15:30:16 +00:00
{
DisplayError( this, _( "Tracks on Copper layers only" ) );
2007-09-29 15:30:16 +00:00
break;
}
if( (curr_item == NULL) || (curr_item->GetFlags() == 0) )
2007-09-29 15:30:16 +00:00
{
curr_item = (BOARD_ITEM*) Begin_Route( NULL, aDC );
SetCurItem( curr_item );
if( curr_item )
m_canvas->SetAutoPanRequest( true );
2007-09-29 15:30:16 +00:00
}
else if( curr_item && curr_item->IsNew() )
2007-09-29 15:30:16 +00:00
{
TRACK* track = Begin_Route( (TRACK*) curr_item, aDC );
// SetCurItem() must not write to the msg panel
// because a track info is displayed while moving the mouse cursor
if( track ) // A new segment was created
SetCurItem( curr_item = (BOARD_ITEM*) track, false );
m_canvas->SetAutoPanRequest( true );
2007-09-29 15:30:16 +00:00
}
break;
2007-09-29 15:30:16 +00:00
case ID_PCB_ZONES_BUTT:
case ID_PCB_KEEPOUT_AREA_BUTT:
/* ZONE or KEEPOUT Tool is selected. Determine action for a left click:
* this can be start a new zone or select and move an existing zone outline corner
* if found near the mouse cursor
*/
if( (curr_item == NULL) || (curr_item->GetFlags() == 0) )
2007-09-29 15:30:16 +00:00
{
if( Begin_Zone( aDC ) )
2008-02-23 04:53:44 +00:00
{
m_canvas->SetAutoPanRequest( true );
curr_item = GetBoard()->m_CurrentZoneContour;
GetScreen()->SetCurItem( curr_item );
2008-02-23 04:53:44 +00:00
}
2007-09-29 15:30:16 +00:00
}
else if( curr_item && (curr_item->Type() == PCB_ZONE_AREA_T) && curr_item->IsNew() )
{ // Add a new corner to the current outline being created:
m_canvas->SetAutoPanRequest( true );
Begin_Zone( aDC );
curr_item = GetBoard()->m_CurrentZoneContour;
GetScreen()->SetCurItem( curr_item );
2007-09-29 15:30:16 +00:00
}
else
{
DisplayError( this, wxT( "PCB_EDIT_FRAME::OnLeftClick() zone internal error" ) );
}
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_ADD_TEXT_BUTT:
if( Edge_Cuts == GetActiveLayer() )
{
DisplayError( this,
_( "Texts not allowed on Edge Cut layer" ) );
break;
}
if( (curr_item == NULL) || (curr_item->GetFlags() == 0) )
2007-09-29 15:30:16 +00:00
{
SetCurItem( CreateTextePcb( aDC ) );
m_canvas->MoveCursorToCrossHair();
m_canvas->SetAutoPanRequest( true );
2007-09-29 15:30:16 +00:00
}
else if( curr_item->Type() == PCB_TEXT_T )
2007-09-29 15:30:16 +00:00
{
Place_Texte_Pcb( (TEXTE_PCB*) curr_item, aDC );
m_canvas->SetAutoPanRequest( false );
2007-09-29 15:30:16 +00:00
}
else
{
DisplayError( this, wxT( "OnLeftClick err: not a PCB_TEXT_T" ) );
}
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_MODULE_BUTT:
if( (curr_item == NULL) || (curr_item->GetFlags() == 0) )
2007-09-29 15:30:16 +00:00
{
m_canvas->MoveCursorToCrossHair();
MODULE* module = SelectFootprintFromLibTree();
* KIWAY Milestone A): Make major modules into DLL/DSOs. ! The initial testing of this commit should be done using a Debug build so that all the wxASSERT()s are enabled. Also, be sure and keep enabled the USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it off is senseless anyways. If you want stable code, go back to a prior version, the one tagged with "stable". * Relocate all functionality out of the wxApp derivative into more finely targeted purposes: a) DLL/DSO specific b) PROJECT specific c) EXE or process specific d) configuration file specific data e) configuration file manipulations functions. All of this functionality was blended into an extremely large wxApp derivative and that was incompatible with the desire to support multiple concurrently loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects. An amazing amount of organization come from simply sorting each bit of functionality into the proper box. * Switch to wxConfigBase from wxConfig everywhere except instantiation. * Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD, PGM_SINGLE_TOP, * Remove "Return" prefix on many function names. * Remove obvious comments from CMakeLists.txt files, and from else() and endif()s. * Fix building boost for use in a DSO on linux. * Remove some of the assumptions in the CMakeLists.txt files that windows had to be the host platform when building windows binaries. * Reduce the number of wxStrings being constructed at program load time via static construction. * Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that these functions are useful even when the wxConfigBase comes from another source, as is the case in the KICAD_MANAGER_FRAME. * Move the setting of the KIPRJMOD environment variable into class PROJECT, so that it can be moved into a project variable soon, and out of FP_LIB_TABLE. * Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all its child wxFrames and wxDialogs now have a Kiway() member function which returns a KIWAY& that that window tree branch is in support of. This is like wxWindows DNA in that child windows get this member with proper value at time of construction. * Anticipate some of the needs for milestones B) and C) and make code adjustments now in an effort to reduce work in those milestones. * No testing has been done for python scripting, since milestone C) has that being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
SetCurItem( (BOARD_ITEM*) module );
if( module )
{
m_canvas->MoveCursorToCrossHair();
module->SetLink( 0 );
AddModuleToBoard( module );
if( aDC )
module->Draw( m_canvas, aDC, GR_OR );
StartMoveModule( module, aDC, false );
}
2007-09-29 15:30:16 +00:00
}
else if( curr_item->Type() == PCB_MODULE_T )
2007-09-29 15:30:16 +00:00
{
PlaceModule( (MODULE*) curr_item, aDC );
m_canvas->SetAutoPanRequest( false );
2007-09-29 15:30:16 +00:00
}
else
{
DisplayError( this, wxT( "Internal err: Struct not PCB_MODULE_T" ) );
}
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_DIMENSION_BUTT:
if( IsCopperLayer( GetActiveLayer() ) || GetActiveLayer() == Edge_Cuts )
2007-09-29 15:30:16 +00:00
{
DisplayError( this, _( "Dimension not allowed on Copper or Edge Cut layers" ) );
2007-09-29 15:30:16 +00:00
break;
}
if( !curr_item || !curr_item->GetFlags() )
2007-09-29 15:30:16 +00:00
{
curr_item = (BOARD_ITEM*) EditDimension( NULL, aDC );
SetCurItem( curr_item );
m_canvas->SetAutoPanRequest( true );
2007-09-29 15:30:16 +00:00
}
else if( curr_item && (curr_item->Type() == PCB_DIMENSION_T) && curr_item->IsNew() )
2007-09-29 15:30:16 +00:00
{
curr_item = (BOARD_ITEM*) EditDimension( (DIMENSION*) curr_item, aDC );
SetCurItem( curr_item );
m_canvas->SetAutoPanRequest( true );
2007-09-29 15:30:16 +00:00
}
else
{
DisplayError( this,
wxT( "PCB_EDIT_FRAME::OnLeftClick() error item is not a DIMENSION" ) );
}
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_DELETE_ITEM_BUTT:
if( !curr_item || !curr_item->GetFlags() )
2007-09-29 15:30:16 +00:00
{
curr_item = PcbGeneralLocateAndDisplay();
if( curr_item && (curr_item->GetFlags() == 0) )
2007-09-29 15:30:16 +00:00
{
RemoveStruct( curr_item, aDC );
SetCurItem( curr_item = NULL );
2007-09-29 15:30:16 +00:00
}
}
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_PLACE_OFFSET_COORD_BUTT:
PCB_EDITOR_CONTROL::SetDrillOrigin( GetGalCanvas()->GetView(), this,
new KIGFX::ORIGIN_VIEWITEM( GetAuxOrigin(), UR_TRANSIENT ),
GetCrossHairPosition() );
m_canvas->Refresh();
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_PLACE_GRID_COORD_BUTT:
PCBNEW_CONTROL::SetGridOrigin( GetGalCanvas()->GetView(), this,
new KIGFX::ORIGIN_VIEWITEM( GetBoard()->GetGridOrigin(), UR_TRANSIENT ),
GetCrossHairPosition() );
m_canvas->Refresh();
break;
case ID_PCB_DRAW_VIA_BUTT:
DisplayError( this, _( "Via Tool not available in Legacy Toolset" ) );
SetNoToolSelected();
break;
case ID_PCB_MEASUREMENT_TOOL:
DisplayError( this, _( "Measurement Tool not available in Legacy Toolset" ) );
SetNoToolSelected();
break;
2007-09-29 15:30:16 +00:00
default:
DisplayError( this, wxT( "PCB_EDIT_FRAME::OnLeftClick() id error" ) );
SetNoToolSelected();
2007-09-29 15:30:16 +00:00
break;
}
}
2008-02-23 04:53:44 +00:00
/* handle the double click on the mouse left button
2007-09-29 15:30:16 +00:00
*/
void PCB_EDIT_FRAME::OnLeftDClick( wxDC* aDC, const wxPoint& aPosition )
2007-09-29 15:30:16 +00:00
{
BOARD_ITEM* curr_item = GetCurItem();
2007-09-29 15:30:16 +00:00
switch( GetToolId() )
2007-09-29 15:30:16 +00:00
{
case ID_NO_TOOL_SELECTED:
if( (curr_item == NULL) || (curr_item->GetFlags() == 0) )
2007-09-29 15:30:16 +00:00
{
curr_item = PcbGeneralLocateAndDisplay();
2007-09-29 15:30:16 +00:00
}
if( (curr_item == NULL) || (curr_item->GetFlags() != 0) )
2007-09-29 15:30:16 +00:00
break;
SendMessageToEESCHEMA( curr_item );
2007-09-29 15:30:16 +00:00
// An item is found
SetCurItem( curr_item );
2007-09-29 15:30:16 +00:00
switch( curr_item->Type() )
2007-09-29 15:30:16 +00:00
{
case PCB_TRACE_T:
case PCB_VIA_T:
if( curr_item->IsNew() )
2007-09-29 15:30:16 +00:00
{
if( End_Route( (TRACK*) curr_item, aDC ) )
m_canvas->SetAutoPanRequest( false );
2007-09-29 15:30:16 +00:00
}
else if( curr_item->GetFlags() == 0 )
2007-09-29 15:30:16 +00:00
{
Edit_TrackSegm_Width( aDC, (TRACK*) curr_item );
2007-09-29 15:30:16 +00:00
}
2007-09-29 15:30:16 +00:00
break;
case PCB_TEXT_T:
case PCB_PAD_T:
case PCB_MODULE_T:
case PCB_TARGET_T:
case PCB_DIMENSION_T:
case PCB_MODULE_TEXT_T:
OnEditItemRequest( aDC, curr_item );
m_canvas->MoveCursorToCrossHair();
2007-09-29 15:30:16 +00:00
break;
case PCB_LINE_T:
OnEditItemRequest( aDC, curr_item );
break;
2007-09-29 15:30:16 +00:00
case PCB_ZONE_AREA_T:
if( curr_item->GetFlags() )
break;
OnEditItemRequest( aDC, curr_item );
break;
2007-09-29 15:30:16 +00:00
default:
break;
}
break; // end case 0
case ID_TRACK_BUTT:
if( curr_item && curr_item->IsNew() )
2007-09-29 15:30:16 +00:00
{
if( End_Route( (TRACK*) curr_item, aDC ) )
m_canvas->SetAutoPanRequest( false );
2007-09-29 15:30:16 +00:00
}
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_ZONES_BUTT:
case ID_PCB_KEEPOUT_AREA_BUTT:
if( End_Zone( aDC ) )
2008-02-23 04:53:44 +00:00
{
m_canvas->SetAutoPanRequest( false );
2008-02-23 04:53:44 +00:00
SetCurItem( NULL );
}
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_ADD_LINE_BUTT:
2007-09-29 15:30:16 +00:00
case ID_PCB_ARC_BUTT:
case ID_PCB_CIRCLE_BUTT:
if( curr_item == NULL )
2007-09-29 15:30:16 +00:00
break;
if( curr_item->Type() != PCB_LINE_T )
2007-09-29 15:30:16 +00:00
{
DisplayErrorMessage( this, "Item type is incorrect",
wxString::Format( "Selected item type is %d\n"
"Expected: %d", curr_item->Type(), PCB_LINE_T ) );
m_canvas->SetAutoPanRequest( false );
2007-09-29 15:30:16 +00:00
break;
}
if( curr_item->IsNew() )
2007-09-29 15:30:16 +00:00
{
End_Edge( (DRAWSEGMENT*) curr_item, aDC );
m_canvas->SetAutoPanRequest( false );
2007-09-29 15:30:16 +00:00
SetCurItem( NULL );
}
2007-09-29 15:30:16 +00:00
break;
}
}
void PCB_EDIT_FRAME::OnEditItemRequest( wxDC* aDC, BOARD_ITEM* aItem )
{
switch( aItem->Type() )
{
case PCB_TRACE_T:
case PCB_VIA_T:
Edit_TrackSegm_Width( aDC, static_cast<TRACK*>( aItem ) );
break;
case PCB_TEXT_T:
InstallTextOptionsFrame( aItem, aDC );
break;
case PCB_PAD_T:
InstallPadOptionsFrame( static_cast<D_PAD*>( aItem ) );
break;
case PCB_MODULE_T:
InstallFootprintPropertiesDialog( static_cast<MODULE*>( aItem ), aDC );
break;
case PCB_TARGET_T:
ShowTargetOptionsDialog( static_cast<PCB_TARGET*>( aItem ), aDC );
break;
case PCB_DIMENSION_T:
ShowDimensionPropertyDialog( static_cast<DIMENSION*>( aItem ), aDC );
break;
case PCB_MODULE_TEXT_T:
InstallTextOptionsFrame( aItem, aDC );
break;
case PCB_LINE_T:
InstallGraphicItemPropertiesDialog( aItem );
break;
case PCB_ZONE_AREA_T:
Edit_Zone_Params( aDC, static_cast<ZONE_CONTAINER*>( aItem ) );
break;
default:
break;
}
}