2007-08-14 19:24:48 +00:00
|
|
|
/****************/
|
|
|
|
/* controle.cpp */
|
|
|
|
/****************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "gr_basic.h"
|
|
|
|
#include "common.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "class_drawpanel.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
#include "eda_dde.h"
|
2010-11-10 15:30:12 +00:00
|
|
|
#include "wxEeschemaStruct.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2010-11-10 15:30:12 +00:00
|
|
|
#include "eeschema_id.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "general.h"
|
2011-03-25 19:16:05 +00:00
|
|
|
#include "hotkeys.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
#include "protos.h"
|
2010-02-16 16:21:52 +00:00
|
|
|
#include "libeditframe.h"
|
|
|
|
#include "viewlib_frame.h"
|
2010-10-08 20:40:57 +00:00
|
|
|
#include "lib_draw_item.h"
|
2010-10-22 12:11:52 +00:00
|
|
|
#include "lib_pin.h"
|
2010-11-11 21:10:27 +00:00
|
|
|
#include "sch_sheet.h"
|
|
|
|
#include "sch_sheet_path.h"
|
|
|
|
#include "sch_marker.h"
|
|
|
|
#include "sch_component.h"
|
2009-07-07 17:50:02 +00:00
|
|
|
|
2009-09-25 18:49:04 +00:00
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
SCH_ITEM* SCH_EDIT_FRAME::LocateAndShowItem( const wxPoint& aPosition, const KICAD_T aFilterList[],
|
|
|
|
int aHotKeyCommandId )
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2011-02-02 19:01:21 +00:00
|
|
|
SCH_ITEM* item;
|
2009-01-31 10:05:16 +00:00
|
|
|
wxString msg;
|
2009-10-08 13:19:28 +00:00
|
|
|
LIB_PIN* Pin = NULL;
|
2008-03-20 01:50:21 +00:00
|
|
|
SCH_COMPONENT* LibItem = NULL;
|
2011-02-02 19:01:21 +00:00
|
|
|
wxPoint gridPosition = GetScreen()->GetNearestGridPosition( aPosition );
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
// Check the on grid position first. There is more likely to be multple items on
|
|
|
|
// grid than off grid.
|
|
|
|
item = LocateItem( gridPosition, aFilterList, aHotKeyCommandId );
|
2011-02-01 15:46:25 +00:00
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
// If the user aborted the clarification context menu, don't show it again at the
|
|
|
|
// off grid position.
|
|
|
|
if( !item && DrawPanel->m_AbortRequest )
|
|
|
|
{
|
|
|
|
DrawPanel->m_AbortRequest = false;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !item && (aPosition != gridPosition) )
|
|
|
|
item = LocateItem( aPosition, aFilterList, aHotKeyCommandId );
|
2011-02-01 15:46:25 +00:00
|
|
|
|
2011-02-02 19:01:21 +00:00
|
|
|
if( !item )
|
2011-03-25 19:16:05 +00:00
|
|
|
{
|
|
|
|
DrawPanel->m_AbortRequest = false; // Just in case the user aborted the context menu.
|
2007-08-14 19:24:48 +00:00
|
|
|
return NULL;
|
2011-03-25 19:16:05 +00:00
|
|
|
}
|
2007-08-14 19:24:48 +00:00
|
|
|
|
|
|
|
/* Cross probing to pcbnew if a pin or a component is found */
|
2011-02-02 19:01:21 +00:00
|
|
|
switch( item->Type() )
|
2007-08-14 19:24:48 +00:00
|
|
|
{
|
2010-12-10 19:47:44 +00:00
|
|
|
case SCH_FIELD_T:
|
|
|
|
case LIB_FIELD_T:
|
2011-02-02 19:01:21 +00:00
|
|
|
LibItem = (SCH_COMPONENT*) item->GetParent();
|
|
|
|
SendMessageToPCBNEW( item, LibItem );
|
2007-08-14 19:24:48 +00:00
|
|
|
break;
|
|
|
|
|
2010-12-10 19:47:44 +00:00
|
|
|
case SCH_COMPONENT_T:
|
2011-02-02 19:01:21 +00:00
|
|
|
LibItem = (SCH_COMPONENT*) item;
|
|
|
|
SendMessageToPCBNEW( item, LibItem );
|
2007-08-14 19:24:48 +00:00
|
|
|
break;
|
|
|
|
|
2010-12-10 19:47:44 +00:00
|
|
|
case LIB_PIN_T:
|
2011-02-02 19:01:21 +00:00
|
|
|
Pin = (LIB_PIN*) item;
|
2011-05-07 08:13:09 +00:00
|
|
|
LibItem = (SCH_COMPONENT*) LocateItem( aPosition, SCH_COLLECTOR::ComponentsOnly );
|
2007-08-14 19:24:48 +00:00
|
|
|
break;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
;
|
2007-08-14 19:24:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( Pin )
|
|
|
|
{
|
2011-02-02 19:01:21 +00:00
|
|
|
// Force display pin information (the previous display could be a component info)
|
2009-04-17 08:51:02 +00:00
|
|
|
Pin->DisplayInfo( this );
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2007-08-14 19:24:48 +00:00
|
|
|
if( LibItem )
|
2009-10-14 19:43:31 +00:00
|
|
|
AppendMsgPanel( LibItem->GetRef( GetSheet() ),
|
|
|
|
LibItem->GetField( VALUE )->m_Text, DARKCYAN );
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2011-02-02 19:01:21 +00:00
|
|
|
// Cross probing:2 - pin found, and send a locate pin command to pcbnew (highlight net)
|
2008-02-29 20:35:11 +00:00
|
|
|
SendMessageToPCBNEW( Pin, LibItem );
|
2007-08-14 19:24:48 +00:00
|
|
|
}
|
2011-02-02 19:01:21 +00:00
|
|
|
|
|
|
|
return item;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
SCH_ITEM* SCH_EDIT_FRAME::LocateItem( const wxPoint& aPosition, const KICAD_T aFilterList[],
|
|
|
|
int aHotKeyCommandId )
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2011-03-25 19:16:05 +00:00
|
|
|
SCH_ITEM* item = NULL;
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
m_collectedItems.Collect( GetScreen()->GetDrawItems(), aFilterList, aPosition );
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
if( m_collectedItems.GetCount() == 0 )
|
2007-08-14 19:24:48 +00:00
|
|
|
{
|
2009-10-14 19:43:31 +00:00
|
|
|
ClearMsgPanel();
|
2007-08-14 19:24:48 +00:00
|
|
|
}
|
2011-03-25 19:16:05 +00:00
|
|
|
else if( m_collectedItems.GetCount() == 1 )
|
2007-08-14 19:24:48 +00:00
|
|
|
{
|
2011-03-25 19:16:05 +00:00
|
|
|
item = m_collectedItems[0];
|
|
|
|
GetScreen()->SetCurItem( item );
|
2007-08-14 19:24:48 +00:00
|
|
|
}
|
2011-03-25 19:16:05 +00:00
|
|
|
else
|
2007-08-14 19:24:48 +00:00
|
|
|
{
|
2011-03-25 19:16:05 +00:00
|
|
|
// There are certain combinations of items that do not need clarification such as
|
|
|
|
// a corner were two lines meet or all the items form a junction.
|
|
|
|
if( aHotKeyCommandId )
|
2007-08-14 19:24:48 +00:00
|
|
|
{
|
2011-03-25 19:16:05 +00:00
|
|
|
switch( aHotKeyCommandId )
|
|
|
|
{
|
|
|
|
case HK_DRAG:
|
2011-05-20 19:21:09 +00:00
|
|
|
if( m_collectedItems.IsCorner() || m_collectedItems.IsNode( false )
|
|
|
|
|| m_collectedItems.IsDraggableJunction() )
|
2011-03-25 19:16:05 +00:00
|
|
|
{
|
|
|
|
item = m_collectedItems[0];
|
|
|
|
GetScreen()->SetCurItem( item );
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
;
|
|
|
|
}
|
2007-08-14 19:24:48 +00:00
|
|
|
}
|
2011-03-10 19:36:30 +00:00
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
if( item == NULL )
|
|
|
|
{
|
|
|
|
wxASSERT_MSG( m_collectedItems.GetCount() <= MAX_SELECT_ITEM_IDS,
|
|
|
|
wxT( "Select item clarification context menu size limit exceeded." ) );
|
|
|
|
|
|
|
|
wxMenu selectMenu;
|
|
|
|
wxMenuItem* title = new wxMenuItem( &selectMenu, wxID_NONE, _( "Clarify Selection" ) );
|
|
|
|
|
|
|
|
selectMenu.Append( title );
|
|
|
|
selectMenu.AppendSeparator();
|
|
|
|
|
|
|
|
for( int i = 0; i < m_collectedItems.GetCount() && i < MAX_SELECT_ITEM_IDS; i++ )
|
|
|
|
{
|
|
|
|
wxString text = m_collectedItems[i]->GetSelectMenuText();
|
|
|
|
const char** xpm = m_collectedItems[i]->GetMenuImage();
|
2011-04-27 19:44:32 +00:00
|
|
|
ADD_MENUITEM( &selectMenu, ID_SELECT_ITEM_START + i, text, xpm );
|
2011-03-25 19:16:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set to NULL in case user aborts the clarification context menu.
|
|
|
|
GetScreen()->SetCurItem( NULL );
|
|
|
|
DrawPanel->m_AbortRequest = true; // Changed to false if an item is selected
|
|
|
|
PopupMenu( &selectMenu );
|
|
|
|
DrawPanel->MoveCursorToCrossHair();
|
|
|
|
item = GetScreen()->GetCurItem();
|
|
|
|
}
|
2007-08-14 19:24:48 +00:00
|
|
|
}
|
|
|
|
|
2011-02-02 19:01:21 +00:00
|
|
|
if( item )
|
2011-03-25 19:16:05 +00:00
|
|
|
item->DisplayInfo( this );
|
|
|
|
else
|
2010-07-21 01:37:34 +00:00
|
|
|
ClearMsgPanel();
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
return item;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-22 16:43:03 +00:00
|
|
|
void SCH_EDIT_FRAME::GeneralControl( wxDC* aDC, const wxPoint& aPosition, int aHotKey )
|
2008-04-21 06:34:56 +00:00
|
|
|
{
|
2011-02-01 15:46:25 +00:00
|
|
|
wxRealPoint gridSize;
|
2009-01-31 10:05:16 +00:00
|
|
|
SCH_SCREEN* screen = GetScreen();
|
2011-02-01 15:46:25 +00:00
|
|
|
wxPoint oldpos;
|
|
|
|
wxPoint pos = aPosition;
|
2008-04-21 06:34:56 +00:00
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
pos = screen->GetNearestGridPosition( pos );
|
|
|
|
oldpos = screen->GetCrossHairPosition();
|
2011-02-01 15:46:25 +00:00
|
|
|
gridSize = screen->GetGridSize();
|
2008-04-21 06:34:56 +00:00
|
|
|
|
2011-02-22 16:43:03 +00:00
|
|
|
switch( aHotKey )
|
2008-04-21 06:34:56 +00:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
case WXK_NUMPAD8:
|
2008-04-21 06:34:56 +00:00
|
|
|
case WXK_UP:
|
2011-02-01 15:46:25 +00:00
|
|
|
pos.y -= wxRound( gridSize.y );
|
|
|
|
DrawPanel->MoveCursor( pos );
|
2008-04-21 06:34:56 +00:00
|
|
|
break;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
case WXK_NUMPAD2:
|
2008-04-21 06:34:56 +00:00
|
|
|
case WXK_DOWN:
|
2011-02-01 15:46:25 +00:00
|
|
|
pos.y += wxRound( gridSize.y );
|
|
|
|
DrawPanel->MoveCursor( pos );
|
2008-04-21 06:34:56 +00:00
|
|
|
break;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
case WXK_NUMPAD4:
|
2008-04-21 06:34:56 +00:00
|
|
|
case WXK_LEFT:
|
2011-02-01 15:46:25 +00:00
|
|
|
pos.x -= wxRound( gridSize.x );
|
|
|
|
DrawPanel->MoveCursor( pos );
|
2008-04-21 06:34:56 +00:00
|
|
|
break;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
case WXK_NUMPAD6:
|
2008-04-21 06:34:56 +00:00
|
|
|
case WXK_RIGHT:
|
2011-02-01 15:46:25 +00:00
|
|
|
pos.x += wxRound( gridSize.x );
|
|
|
|
DrawPanel->MoveCursor( pos );
|
2008-04-21 06:34:56 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-02-01 15:46:25 +00:00
|
|
|
// Update cursor position.
|
2011-02-11 20:48:13 +00:00
|
|
|
screen->SetCrossHairPosition( pos );
|
2008-04-21 06:34:56 +00:00
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
if( oldpos != screen->GetCrossHairPosition() )
|
2008-04-21 06:34:56 +00:00
|
|
|
{
|
2011-02-11 20:48:13 +00:00
|
|
|
pos = screen->GetCrossHairPosition();
|
|
|
|
screen->SetCrossHairPosition( oldpos );
|
|
|
|
DrawPanel->CrossHairOff( aDC );
|
|
|
|
screen->SetCrossHairPosition( pos );
|
|
|
|
DrawPanel->CrossHairOn( aDC );
|
2008-04-21 06:34:56 +00:00
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
if( DrawPanel->IsMouseCaptured() )
|
2008-04-21 06:34:56 +00:00
|
|
|
{
|
2011-05-20 18:25:11 +00:00
|
|
|
#ifdef USE_WX_OVERLAY
|
|
|
|
wxDCOverlay oDC( DrawPanel->m_overlay, (wxWindowDC*)aDC );
|
|
|
|
oDC.Clear();
|
|
|
|
DrawPanel->m_mouseCaptureCallback( DrawPanel, aDC, aPosition, false );
|
|
|
|
#else
|
2011-04-27 19:44:32 +00:00
|
|
|
DrawPanel->m_mouseCaptureCallback( DrawPanel, aDC, aPosition, true );
|
2011-05-20 18:25:11 +00:00
|
|
|
#endif
|
2008-04-21 06:34:56 +00:00
|
|
|
}
|
2011-05-20 18:25:11 +00:00
|
|
|
#ifdef USE_WX_OVERLAY
|
|
|
|
else
|
|
|
|
DrawPanel->m_overlay.Reset();
|
|
|
|
#endif
|
2008-04-21 06:34:56 +00:00
|
|
|
}
|
|
|
|
|
2011-02-22 16:43:03 +00:00
|
|
|
if( aHotKey )
|
2008-04-21 06:34:56 +00:00
|
|
|
{
|
2011-03-10 19:36:30 +00:00
|
|
|
if( screen->GetCurItem() && screen->GetCurItem()->GetFlags() )
|
2011-02-22 16:43:03 +00:00
|
|
|
OnHotKey( aDC, aHotKey, aPosition, screen->GetCurItem() );
|
2008-04-21 06:34:56 +00:00
|
|
|
else
|
2011-02-22 16:43:03 +00:00
|
|
|
OnHotKey( aDC, aHotKey, aPosition, NULL );
|
2008-04-21 06:34:56 +00:00
|
|
|
}
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
UpdateStatusBar(); /* Display cursor coordinates info */
|
2008-04-21 06:34:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-22 16:43:03 +00:00
|
|
|
void LIB_EDIT_FRAME::GeneralControl( wxDC* aDC, const wxPoint& aPosition, int aHotKey )
|
2008-04-21 06:34:56 +00:00
|
|
|
{
|
2011-02-01 15:46:25 +00:00
|
|
|
wxRealPoint gridSize;
|
2009-01-31 10:05:16 +00:00
|
|
|
SCH_SCREEN* screen = GetScreen();
|
2011-02-01 15:46:25 +00:00
|
|
|
wxPoint oldpos;
|
|
|
|
wxPoint pos = aPosition;
|
2008-04-21 06:34:56 +00:00
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
pos = screen->GetNearestGridPosition( pos );
|
|
|
|
oldpos = screen->GetCrossHairPosition();
|
2011-02-01 15:46:25 +00:00
|
|
|
gridSize = screen->GetGridSize();
|
2008-04-21 06:34:56 +00:00
|
|
|
|
2011-02-22 16:43:03 +00:00
|
|
|
switch( aHotKey )
|
2008-04-21 06:34:56 +00:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
case WXK_NUMPAD8:
|
2008-04-21 06:34:56 +00:00
|
|
|
case WXK_UP:
|
2011-02-01 15:46:25 +00:00
|
|
|
pos.y -= wxRound( gridSize.y );
|
|
|
|
DrawPanel->MoveCursor( pos );
|
2008-04-21 06:34:56 +00:00
|
|
|
break;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
case WXK_NUMPAD2:
|
2008-04-21 06:34:56 +00:00
|
|
|
case WXK_DOWN:
|
2011-02-01 15:46:25 +00:00
|
|
|
pos.y += wxRound( gridSize.y );
|
|
|
|
DrawPanel->MoveCursor( pos );
|
2008-04-21 06:34:56 +00:00
|
|
|
break;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
case WXK_NUMPAD4:
|
2008-04-21 06:34:56 +00:00
|
|
|
case WXK_LEFT:
|
2011-02-01 15:46:25 +00:00
|
|
|
pos.x -= wxRound( gridSize.x );
|
|
|
|
DrawPanel->MoveCursor( pos );
|
2008-04-21 06:34:56 +00:00
|
|
|
break;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
case WXK_NUMPAD6:
|
2008-04-21 06:34:56 +00:00
|
|
|
case WXK_RIGHT:
|
2011-02-01 15:46:25 +00:00
|
|
|
pos.x += wxRound( gridSize.x );
|
|
|
|
DrawPanel->MoveCursor( pos );
|
2008-04-21 06:34:56 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-02-01 15:46:25 +00:00
|
|
|
// Update the cursor position.
|
2011-02-11 20:48:13 +00:00
|
|
|
screen->SetCrossHairPosition( pos );
|
2008-04-21 06:34:56 +00:00
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
if( oldpos != screen->GetCrossHairPosition() )
|
2008-04-21 06:34:56 +00:00
|
|
|
{
|
2011-02-11 20:48:13 +00:00
|
|
|
pos = screen->GetCrossHairPosition();
|
|
|
|
screen->SetCrossHairPosition( oldpos );
|
|
|
|
DrawPanel->CrossHairOff( aDC );
|
|
|
|
screen->SetCrossHairPosition( pos );
|
|
|
|
DrawPanel->CrossHairOn( aDC );
|
2008-04-21 06:34:56 +00:00
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
if( DrawPanel->IsMouseCaptured() )
|
2008-04-21 06:34:56 +00:00
|
|
|
{
|
2011-05-20 18:25:11 +00:00
|
|
|
#ifdef USE_WX_OVERLAY
|
|
|
|
wxDCOverlay oDC( DrawPanel->m_overlay, (wxWindowDC*)aDC );
|
|
|
|
oDC.Clear();
|
|
|
|
DrawPanel->m_mouseCaptureCallback( DrawPanel, aDC, aPosition, false );
|
|
|
|
#else
|
2011-04-27 19:44:32 +00:00
|
|
|
DrawPanel->m_mouseCaptureCallback( DrawPanel, aDC, aPosition, true );
|
2011-05-20 18:25:11 +00:00
|
|
|
#endif
|
2008-04-21 06:34:56 +00:00
|
|
|
}
|
2011-05-20 18:25:11 +00:00
|
|
|
#ifdef USE_WX_OVERLAY
|
|
|
|
else
|
|
|
|
DrawPanel->m_overlay.Reset();
|
|
|
|
#endif
|
2008-04-21 06:34:56 +00:00
|
|
|
}
|
|
|
|
|
2011-02-22 16:43:03 +00:00
|
|
|
if( aHotKey )
|
2008-04-21 06:34:56 +00:00
|
|
|
{
|
2011-04-27 19:44:32 +00:00
|
|
|
OnHotKey( aDC, aHotKey, aPosition, NULL );
|
2008-04-21 06:34:56 +00:00
|
|
|
}
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
UpdateStatusBar();
|
2008-04-21 06:34:56 +00:00
|
|
|
}
|
|
|
|
|
2009-01-31 10:05:16 +00:00
|
|
|
|
2011-02-22 16:43:03 +00:00
|
|
|
void LIB_VIEW_FRAME::GeneralControl( wxDC* aDC, const wxPoint& aPosition, int aHotKey )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-02-01 15:46:25 +00:00
|
|
|
wxRealPoint gridSize;
|
2009-01-31 10:05:16 +00:00
|
|
|
SCH_SCREEN* screen = GetScreen();
|
2011-02-01 15:46:25 +00:00
|
|
|
wxPoint oldpos;
|
|
|
|
wxPoint pos = aPosition;
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
pos = screen->GetNearestGridPosition( pos );
|
|
|
|
oldpos = screen->GetCrossHairPosition();
|
2011-02-01 15:46:25 +00:00
|
|
|
gridSize = screen->GetGridSize();
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2011-02-22 16:43:03 +00:00
|
|
|
switch( aHotKey )
|
2007-08-14 19:24:48 +00:00
|
|
|
{
|
2007-08-30 08:15:05 +00:00
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
case WXK_NUMPAD8:
|
2007-08-14 19:24:48 +00:00
|
|
|
case WXK_UP:
|
2011-02-01 15:46:25 +00:00
|
|
|
pos.y -= wxRound( gridSize.y );
|
|
|
|
DrawPanel->MoveCursor( pos );
|
2007-08-14 19:24:48 +00:00
|
|
|
break;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
case WXK_NUMPAD2:
|
2007-08-14 19:24:48 +00:00
|
|
|
case WXK_DOWN:
|
2011-02-01 15:46:25 +00:00
|
|
|
pos.y += wxRound( gridSize.y );
|
|
|
|
DrawPanel->MoveCursor( pos );
|
2007-08-14 19:24:48 +00:00
|
|
|
break;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
case WXK_NUMPAD4:
|
2007-08-14 19:24:48 +00:00
|
|
|
case WXK_LEFT:
|
2011-02-01 15:46:25 +00:00
|
|
|
pos.x -= wxRound( gridSize.x );
|
|
|
|
DrawPanel->MoveCursor( pos );
|
2007-08-14 19:24:48 +00:00
|
|
|
break;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
case WXK_NUMPAD6:
|
2007-08-14 19:24:48 +00:00
|
|
|
case WXK_RIGHT:
|
2011-02-01 15:46:25 +00:00
|
|
|
pos.x += wxRound( gridSize.x );
|
|
|
|
DrawPanel->MoveCursor( pos );
|
2007-08-14 19:24:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-02-01 15:46:25 +00:00
|
|
|
// Update cursor position.
|
2011-02-11 20:48:13 +00:00
|
|
|
screen->SetCrossHairPosition( pos );
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
if( oldpos != screen->GetCrossHairPosition() )
|
2007-08-14 19:24:48 +00:00
|
|
|
{
|
2011-02-11 20:48:13 +00:00
|
|
|
pos = screen->GetCrossHairPosition();
|
|
|
|
screen->SetCrossHairPosition( oldpos );
|
|
|
|
DrawPanel->CrossHairOff( aDC );
|
|
|
|
screen->SetCrossHairPosition( pos );
|
|
|
|
DrawPanel->CrossHairOn( aDC );
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
if( DrawPanel->IsMouseCaptured() )
|
2007-08-14 19:24:48 +00:00
|
|
|
{
|
2011-04-27 19:44:32 +00:00
|
|
|
DrawPanel->m_mouseCaptureCallback( DrawPanel, aDC, aPosition, true );
|
2007-08-14 19:24:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-22 16:43:03 +00:00
|
|
|
if( aHotKey )
|
2007-08-14 19:24:48 +00:00
|
|
|
{
|
2011-03-10 19:36:30 +00:00
|
|
|
if( screen->GetCurItem() && screen->GetCurItem()->GetFlags() )
|
2011-02-22 16:43:03 +00:00
|
|
|
OnHotKey( aDC, aHotKey, aPosition, screen->GetCurItem() );
|
2007-08-14 19:24:48 +00:00
|
|
|
else
|
2011-02-22 16:43:03 +00:00
|
|
|
OnHotKey( aDC, aHotKey, aPosition, NULL );
|
2007-08-14 19:24:48 +00:00
|
|
|
}
|
2007-08-21 19:37:31 +00:00
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
UpdateStatusBar();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|