2011-10-19 20:32:21 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
|
|
|
* Copyright (C) 2008-2011 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
* Copyright (C) 2004-2011 KiCad Developers, see change_log.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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* eeschema/controle.cpp
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "gr_basic.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
|
|
|
|
2011-09-30 18:15:37 +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 )
|
2011-12-08 21:05:43 +00:00
|
|
|
AppendMsgPanel( LibItem->GetRef( m_CurrentSheet ),
|
2009-10-14 19:43:31 +00:00
|
|
|
LibItem->GetField( VALUE )->m_Text, DARKCYAN );
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2011-09-30 18:15:37 +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];
|
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];
|
|
|
|
}
|
|
|
|
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();
|
2011-08-29 03:04:59 +00:00
|
|
|
BITMAP_DEF xpm = m_collectedItems[i]->GetMenuImage();
|
2011-09-08 05:58:45 +00:00
|
|
|
AddMenuItem( &selectMenu, ID_SELECT_ITEM_START + i, text, KiBitmap( 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-10-19 20:32:21 +00:00
|
|
|
GetScreen()->SetCurItem( item );
|
|
|
|
|
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
|
|
|
}
|