2009-11-23 15:16:50 +00:00
|
|
|
/*****************/
|
|
|
|
/* drawframe.cpp */
|
|
|
|
/*****************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "appl_wxstruct.h"
|
2009-01-29 14:26:20 +00:00
|
|
|
#include "gr_basic.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "bitmaps.h"
|
2008-12-19 13:51:48 +00:00
|
|
|
#include "macros.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
#include "id.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "class_drawpanel.h"
|
|
|
|
#include "class_base_screen.h"
|
|
|
|
#include "wxstruct.h"
|
|
|
|
#include "confirm.h"
|
2010-02-08 18:15:42 +00:00
|
|
|
#include "kicad_device_context.h"
|
2010-11-18 21:16:28 +00:00
|
|
|
#include "dialog_helpers.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-12-19 13:51:48 +00:00
|
|
|
#include <wx/fontdlg.h>
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-02-22 16:45:35 +00:00
|
|
|
/* Definitions for enabling and disabling extra debugging output. Please
|
|
|
|
* remember to set these to 0 before committing changes to SVN.
|
|
|
|
*/
|
|
|
|
#define DEBUG_DUMP_SCROLLBAR_SETTINGS 0 // Set to 1 to print scroll bar settings.
|
|
|
|
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
/* Configuration entry names. */
|
2010-02-01 21:23:27 +00:00
|
|
|
static const wxString CursorShapeEntryKeyword( wxT( "CursorShape" ) );
|
|
|
|
static const wxString ShowGridEntryKeyword( wxT( "ShowGrid" ) );
|
|
|
|
static const wxString GridColorEntryKeyword( wxT( "GridColor" ) );
|
2009-10-14 19:43:31 +00:00
|
|
|
static const wxString LastGridSizeId( wxT( "_LastGridSize" ) );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
BEGIN_EVENT_TABLE( EDA_DRAW_FRAME, EDA_BASE_FRAME )
|
|
|
|
EVT_MOUSEWHEEL( EDA_DRAW_FRAME::OnMouseEvent )
|
|
|
|
EVT_MENU_OPEN( EDA_DRAW_FRAME::OnMenuOpen )
|
|
|
|
EVT_ACTIVATE( EDA_DRAW_FRAME::OnActivate )
|
2011-02-21 21:07:00 +00:00
|
|
|
EVT_MENU_RANGE( ID_ZOOM_IN, ID_ZOOM_REDRAW, EDA_DRAW_FRAME::OnZoom )
|
2009-01-07 15:59:49 +00:00
|
|
|
EVT_MENU_RANGE( ID_POPUP_ZOOM_START_RANGE, ID_POPUP_ZOOM_END_RANGE,
|
2011-01-21 19:30:59 +00:00
|
|
|
EDA_DRAW_FRAME::OnZoom )
|
2009-10-14 19:43:31 +00:00
|
|
|
EVT_MENU_RANGE( ID_POPUP_GRID_LEVEL_1000, ID_POPUP_GRID_USER,
|
2011-01-21 19:30:59 +00:00
|
|
|
EDA_DRAW_FRAME::OnSelectGrid )
|
2011-02-21 13:54:29 +00:00
|
|
|
|
|
|
|
EVT_TOOL( ID_TB_OPTIONS_SHOW_GRID, EDA_DRAW_FRAME::OnToggleGridState )
|
|
|
|
EVT_TOOL_RANGE( ID_TB_OPTIONS_SELECT_UNIT_MM, ID_TB_OPTIONS_SELECT_UNIT_INCH,
|
|
|
|
EDA_DRAW_FRAME::OnSelectUnits )
|
|
|
|
EVT_TOOL( ID_TB_OPTIONS_SELECT_CURSOR, EDA_DRAW_FRAME::OnToggleCrossHairStyle )
|
|
|
|
|
|
|
|
EVT_UPDATE_UI( wxID_UNDO, EDA_DRAW_FRAME::OnUpdateUndo )
|
|
|
|
EVT_UPDATE_UI( wxID_REDO, EDA_DRAW_FRAME::OnUpdateRedo )
|
|
|
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_GRID, EDA_DRAW_FRAME::OnUpdateGrid )
|
|
|
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SELECT_CURSOR, EDA_DRAW_FRAME::OnUpdateCrossHairStyle )
|
|
|
|
EVT_UPDATE_UI_RANGE( ID_TB_OPTIONS_SELECT_UNIT_MM, ID_TB_OPTIONS_SELECT_UNIT_INCH,
|
|
|
|
EDA_DRAW_FRAME::OnUpdateUnits )
|
2009-01-07 15:59:49 +00:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
EDA_DRAW_FRAME::EDA_DRAW_FRAME( wxWindow* father, int idtype, const wxString& title,
|
|
|
|
const wxPoint& pos, const wxSize& size, long style ) :
|
2011-01-21 19:30:59 +00:00
|
|
|
EDA_BASE_FRAME( father, idtype, title, pos, size, style )
|
2007-08-15 02:43:57 +00:00
|
|
|
{
|
|
|
|
wxSize minsize;
|
|
|
|
|
2009-01-29 14:26:20 +00:00
|
|
|
m_VToolBar = NULL;
|
|
|
|
m_AuxVToolBar = NULL;
|
|
|
|
m_OptionsToolBar = NULL;
|
|
|
|
m_AuxiliaryToolBar = NULL;
|
|
|
|
m_SelGridBox = NULL;
|
|
|
|
m_SelZoomBox = NULL;
|
2010-02-14 18:14:33 +00:00
|
|
|
m_HotkeysZoomAndGridList = NULL;
|
2009-01-29 14:26:20 +00:00
|
|
|
|
|
|
|
DrawPanel = NULL;
|
|
|
|
MsgPanel = NULL;
|
2011-02-05 02:21:11 +00:00
|
|
|
m_currentScreen = NULL;
|
2011-02-24 20:22:12 +00:00
|
|
|
m_toolId = ID_NO_TOOL_SELECTED;
|
|
|
|
m_ID_last_state = ID_NO_TOOL_SELECTED;
|
2007-08-15 02:43:57 +00:00
|
|
|
m_HTOOL_current_state = 0;
|
2009-11-23 15:16:50 +00:00
|
|
|
m_Draw_Axis = FALSE; // TRUE to draw axis.
|
|
|
|
m_Draw_Sheet_Ref = FALSE; // TRUE to display reference sheet.
|
|
|
|
m_Print_Sheet_Ref = TRUE; // TRUE to print reference sheet.
|
|
|
|
m_Draw_Auxiliary_Axis = FALSE; // TRUE draw auxilary axis.
|
2010-07-13 10:42:32 +00:00
|
|
|
m_Draw_Grid_Axis = FALSE; // TRUE to draw the grid axis
|
2009-04-05 20:49:15 +00:00
|
|
|
m_CursorShape = 0;
|
2009-10-14 19:43:31 +00:00
|
|
|
m_LastGridSizeId = 0;
|
2010-02-01 21:23:27 +00:00
|
|
|
m_DrawGrid = true; // hide/Show grid. default = show
|
|
|
|
m_GridColor = DARKGRAY; // Grid color
|
2011-02-03 19:27:28 +00:00
|
|
|
m_snapToGrid = true;
|
2009-01-29 14:26:20 +00:00
|
|
|
|
|
|
|
// Internal units per inch: = 1000 for schema, = 10000 for PCB
|
|
|
|
m_InternalUnits = EESCHEMA_INTERNAL_UNIT;
|
|
|
|
minsize.x = 470;
|
|
|
|
minsize.y = 350 + m_MsgFrameHeight;
|
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
SetSizeHints( minsize.x, minsize.y, -1, -1, -1, -1 );
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
/* Make sure window has a sane minimum size. */
|
2008-12-19 13:51:48 +00:00
|
|
|
if( ( size.x < minsize.x ) || ( size.y < minsize.y ) )
|
2007-08-15 02:43:57 +00:00
|
|
|
SetSize( 0, 0, minsize.x, minsize.y );
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
// Pane sizes for status bar.
|
2009-04-09 18:23:28 +00:00
|
|
|
#define ZOOM_DISPLAY_SIZE 60
|
|
|
|
#define COORD_DISPLAY_SIZE 156
|
|
|
|
#define UNITS_DISPLAY_SIZE 50
|
|
|
|
#define FUNCTION_DISPLAY_SIZE 100
|
|
|
|
|
2007-10-31 17:47:44 +00:00
|
|
|
static const int dims[6] = { -1, ZOOM_DISPLAY_SIZE,
|
2008-04-17 16:25:29 +00:00
|
|
|
COORD_DISPLAY_SIZE, COORD_DISPLAY_SIZE,
|
|
|
|
UNITS_DISPLAY_SIZE, FUNCTION_DISPLAY_SIZE };
|
2007-08-15 02:43:57 +00:00
|
|
|
|
|
|
|
CreateStatusBar( 6 );
|
|
|
|
SetStatusWidths( 6, dims );
|
|
|
|
|
|
|
|
// Create child subwindows.
|
2009-11-23 15:16:50 +00:00
|
|
|
GetClientSize( &m_FrameSize.x, &m_FrameSize.y );
|
2007-08-15 02:43:57 +00:00
|
|
|
m_FramePos.x = m_FramePos.y = 0;
|
|
|
|
m_FrameSize.y -= m_MsgFrameHeight;
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
DrawPanel = new EDA_DRAW_PANEL( this, -1, wxPoint( 0, 0 ), m_FrameSize );
|
2009-01-17 20:31:19 +00:00
|
|
|
MsgPanel = new WinEDA_MsgPanel( this, -1, wxPoint( 0, m_FrameSize.y ),
|
|
|
|
wxSize( m_FrameSize.x, m_MsgFrameHeight ) );
|
2009-04-09 18:23:28 +00:00
|
|
|
|
2009-01-17 20:31:19 +00:00
|
|
|
MsgPanel->SetBackgroundColour( wxColour( ColorRefs[LIGHTGRAY].m_Red,
|
|
|
|
ColorRefs[LIGHTGRAY].m_Green,
|
|
|
|
ColorRefs[LIGHTGRAY].m_Blue ) );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
EDA_DRAW_FRAME::~EDA_DRAW_FRAME()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2011-02-05 02:21:11 +00:00
|
|
|
SAFE_DELETE( m_currentScreen );
|
2009-11-05 08:52:41 +00:00
|
|
|
|
2009-11-02 22:24:55 +00:00
|
|
|
m_auimgr.UnInit();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::EraseMsgBox()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-15 02:43:57 +00:00
|
|
|
if( MsgPanel )
|
|
|
|
MsgPanel->EraseMsgBox();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::OnActivate( wxActivateEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-15 02:43:57 +00:00
|
|
|
m_FrameIsActive = event.GetActive();
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
if( DrawPanel )
|
|
|
|
DrawPanel->m_CanStartBlock = -1;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
event.Skip(); // required under wxMAC
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::OnMenuOpen( wxMenuEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-15 02:43:57 +00:00
|
|
|
if( DrawPanel )
|
|
|
|
DrawPanel->m_CanStartBlock = -1;
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
event.Skip();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
void EDA_DRAW_FRAME::OnToggleGridState( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
SetGridVisibility( !IsGridVisible() );
|
|
|
|
DrawPanel->Refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EDA_DRAW_FRAME::OnSelectUnits( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
|
|
|
|
if( aEvent.GetId() == ID_TB_OPTIONS_SELECT_UNIT_MM && g_UserUnit != MILLIMETRES )
|
|
|
|
{
|
|
|
|
g_UserUnit = MILLIMETRES;
|
|
|
|
UpdateStatusBar();
|
|
|
|
}
|
|
|
|
else if( aEvent.GetId() == ID_TB_OPTIONS_SELECT_UNIT_INCH && g_UserUnit != INCHES )
|
|
|
|
{
|
|
|
|
g_UserUnit = INCHES;
|
|
|
|
UpdateStatusBar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EDA_DRAW_FRAME::OnToggleCrossHairStyle( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
INSTALL_UNBUFFERED_DC( dc, DrawPanel );
|
|
|
|
DrawPanel->CrossHairOff( &dc );
|
|
|
|
m_CursorShape = !m_CursorShape;
|
|
|
|
DrawPanel->CrossHairOn( &dc );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EDA_DRAW_FRAME::OnUpdateUndo( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
if( GetScreen() )
|
|
|
|
aEvent.Enable( GetScreen()->GetUndoCommandCount() > 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EDA_DRAW_FRAME::OnUpdateRedo( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
if( GetScreen() )
|
|
|
|
aEvent.Enable( GetScreen()->GetRedoCommandCount() > 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EDA_DRAW_FRAME::OnUpdateUnits( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
bool enable;
|
|
|
|
|
|
|
|
enable = ( ((aEvent.GetId() == ID_TB_OPTIONS_SELECT_UNIT_MM) && (g_UserUnit == MILLIMETRES))
|
|
|
|
|| ((aEvent.GetId() == ID_TB_OPTIONS_SELECT_UNIT_INCH) && (g_UserUnit == INCHES)) );
|
|
|
|
|
|
|
|
aEvent.Check( enable );
|
|
|
|
DisplayUnitsMsg();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EDA_DRAW_FRAME::OnUpdateGrid( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
wxString tool_tip = IsGridVisible() ? _( "Hide grid" ) : _( "Show grid" );
|
|
|
|
|
|
|
|
aEvent.Check( IsGridVisible() );
|
|
|
|
m_OptionsToolBar->SetToolShortHelp( ID_TB_OPTIONS_SHOW_GRID, tool_tip );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EDA_DRAW_FRAME::OnUpdateCrossHairStyle( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
aEvent.Check( m_CursorShape );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-01 15:37:42 +00:00
|
|
|
// Virtual function
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::ReCreateAuxiliaryToolbar()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
|
2007-10-01 15:37:42 +00:00
|
|
|
// Virtual function
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::ReCreateMenuBar()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
// Virtual function
|
2011-02-02 19:01:21 +00:00
|
|
|
void EDA_DRAW_FRAME::OnHotKey( wxDC* aDC, int aHotKey, const wxPoint& aPosition, EDA_ITEM* aItem )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-01 15:37:42 +00:00
|
|
|
// Virtual function
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::ToolOnRightClick( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2010-11-12 16:59:16 +00:00
|
|
|
/**
|
|
|
|
* Function PrintPage (virtual)
|
2010-03-18 20:35:29 +00:00
|
|
|
* used to print a page
|
|
|
|
* this basic function must be derived to be used for printing
|
2011-01-21 19:30:59 +00:00
|
|
|
* because EDA_DRAW_FRAME does not know how to print a page
|
2010-03-18 20:35:29 +00:00
|
|
|
* This is the reason it is a virtual function
|
|
|
|
*/
|
2011-02-11 20:48:13 +00:00
|
|
|
void EDA_DRAW_FRAME::PrintPage( wxDC* aDC,int aPrintMask, bool aPrintMirrorMode, void* aData )
|
2010-03-18 20:35:29 +00:00
|
|
|
{
|
2011-02-11 20:48:13 +00:00
|
|
|
wxMessageBox( wxT("EDA_DRAW_FRAME::PrintPage() error") );
|
2010-03-18 20:35:29 +00:00
|
|
|
}
|
2007-08-15 02:43:57 +00:00
|
|
|
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2007-10-01 15:37:42 +00:00
|
|
|
// Virtual function
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::OnSelectGrid( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-10-14 19:43:31 +00:00
|
|
|
int* clientData;
|
|
|
|
int id = ID_POPUP_GRID_LEVEL_100;
|
|
|
|
|
|
|
|
if( event.GetEventType() == wxEVT_COMMAND_COMBOBOX_SELECTED )
|
|
|
|
{
|
|
|
|
if( m_SelGridBox == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't use wxCommandEvent::GetClientData() here. It always
|
|
|
|
* returns NULL in GTK. This solution is not as elegant but
|
|
|
|
* it works.
|
|
|
|
*/
|
|
|
|
int index = m_SelGridBox->GetSelection();
|
|
|
|
wxASSERT( index != wxNOT_FOUND );
|
2010-02-12 23:12:00 +00:00
|
|
|
clientData = (int*) m_SelGridBox->wxItemContainer::GetClientData( index );
|
2009-10-14 19:43:31 +00:00
|
|
|
|
|
|
|
if( clientData != NULL )
|
|
|
|
id = *clientData;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
id = event.GetId();
|
|
|
|
|
|
|
|
/* Update the grid select combobox if the grid size was changed
|
|
|
|
* by menu event.
|
|
|
|
*/
|
|
|
|
if( m_SelGridBox != NULL )
|
|
|
|
{
|
|
|
|
for( size_t i = 0; i < m_SelGridBox->GetCount(); i++ )
|
|
|
|
{
|
2010-02-12 23:12:00 +00:00
|
|
|
clientData = (int*) m_SelGridBox->wxItemContainer::GetClientData( i );
|
2009-10-14 19:43:31 +00:00
|
|
|
|
|
|
|
if( clientData && id == *clientData )
|
|
|
|
{
|
|
|
|
m_SelGridBox->SetSelection( i );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2011-02-05 02:21:11 +00:00
|
|
|
BASE_SCREEN* screen = GetScreen();
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2009-10-14 19:43:31 +00:00
|
|
|
if( screen->GetGridId() == id )
|
|
|
|
return;
|
2008-12-05 16:03:05 +00:00
|
|
|
|
2009-10-14 19:43:31 +00:00
|
|
|
/*
|
|
|
|
* This allows for saving non-sequential command ID offsets used that
|
|
|
|
* may be used in the grid size combobox. Do not use the selection
|
|
|
|
* index returned by GetSelection().
|
|
|
|
*/
|
|
|
|
m_LastGridSizeId = id - ID_POPUP_GRID_LEVEL_1000;
|
2011-02-11 20:48:13 +00:00
|
|
|
screen->SetCrossHairPosition( DrawPanel->GetScreenCenterLogicalPosition() );
|
2009-10-15 11:35:53 +00:00
|
|
|
screen->SetGrid( id );
|
2009-10-14 19:43:31 +00:00
|
|
|
Refresh();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-29 14:26:20 +00:00
|
|
|
/**
|
|
|
|
* Set the zoom when selected by the Zoom List Box
|
2007-08-15 02:43:57 +00:00
|
|
|
* Note:
|
|
|
|
* position 0 = Fit in Page
|
|
|
|
* position >= 1 = zoom (1 to zoom max)
|
|
|
|
* last position : special zoom
|
2009-01-29 14:26:20 +00:00
|
|
|
* virtual function
|
2007-08-15 02:43:57 +00:00
|
|
|
*/
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::OnSelectZoom( wxCommandEvent& event )
|
2007-08-15 02:43:57 +00:00
|
|
|
{
|
|
|
|
if( m_SelZoomBox == NULL )
|
2009-11-23 15:16:50 +00:00
|
|
|
return; // Should not happen!
|
2007-08-15 02:43:57 +00:00
|
|
|
|
|
|
|
int id = m_SelZoomBox->GetChoice();
|
|
|
|
|
2009-01-29 14:26:20 +00:00
|
|
|
if( id < 0 || !( id < (int)m_SelZoomBox->GetCount() ) )
|
|
|
|
return;
|
2007-08-15 02:43:57 +00:00
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
if( id == 0 ) // Auto zoom (Fit in Page)
|
2007-08-15 02:43:57 +00:00
|
|
|
{
|
2009-01-29 14:26:20 +00:00
|
|
|
Zoom_Automatique( true );
|
2007-08-15 02:43:57 +00:00
|
|
|
}
|
2009-01-29 14:26:20 +00:00
|
|
|
else
|
2007-08-15 02:43:57 +00:00
|
|
|
{
|
|
|
|
id--;
|
2011-02-05 02:21:11 +00:00
|
|
|
int selectedZoom = GetScreen()->m_ZoomList[id];
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2011-02-05 02:21:11 +00:00
|
|
|
if( GetScreen()->GetZoom() == selectedZoom )
|
2007-08-15 02:43:57 +00:00
|
|
|
return;
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2011-02-05 02:21:11 +00:00
|
|
|
GetScreen()->SetZoom( selectedZoom );
|
2011-02-11 20:48:13 +00:00
|
|
|
RedrawScreen( GetScreen()->GetScrollCenterPosition(), false );
|
2007-08-15 02:43:57 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
|
2007-10-26 06:08:19 +00:00
|
|
|
/* Return the current zoom level */
|
2011-02-11 20:48:13 +00:00
|
|
|
int EDA_DRAW_FRAME::GetZoom( void )
|
2007-10-26 06:08:19 +00:00
|
|
|
{
|
2011-02-05 02:21:11 +00:00
|
|
|
return GetScreen()->GetZoom();
|
2007-10-26 06:08:19 +00:00
|
|
|
}
|
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::OnMouseEvent( wxMouseEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-15 02:43:57 +00:00
|
|
|
event.Skip();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
// Virtual
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::OnLeftDClick( wxDC* DC, const wxPoint& MousePos )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::DisplayToolMsg( const wxString& msg )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-15 02:43:57 +00:00
|
|
|
SetStatusText( msg, 5 );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
/* Display current unit Selection on Statusbar
|
2007-08-15 02:43:57 +00:00
|
|
|
*/
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::DisplayUnitsMsg()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-15 02:43:57 +00:00
|
|
|
wxString msg;
|
|
|
|
|
2010-07-12 14:07:09 +00:00
|
|
|
switch( g_UserUnit )
|
2007-08-15 02:43:57 +00:00
|
|
|
{
|
|
|
|
case INCHES:
|
2010-07-12 14:07:09 +00:00
|
|
|
msg = _( "Inches" );
|
2007-08-15 02:43:57 +00:00
|
|
|
break;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-07-12 14:07:09 +00:00
|
|
|
case MILLIMETRES:
|
2007-08-15 02:43:57 +00:00
|
|
|
msg += _( "mm" );
|
|
|
|
break;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
default:
|
2010-07-12 14:07:09 +00:00
|
|
|
msg += _( "Units" );
|
2007-08-15 02:43:57 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetStatusText( msg, 4 );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
/* Recalculate the size of toolbars and display panel.
|
2007-08-15 02:43:57 +00:00
|
|
|
*/
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::OnSize( wxSizeEvent& SizeEv )
|
2007-08-15 02:43:57 +00:00
|
|
|
{
|
2010-01-14 20:20:59 +00:00
|
|
|
m_FrameSize = GetClientSize( );
|
2007-08-15 02:43:57 +00:00
|
|
|
|
|
|
|
SizeEv.Skip();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::SetToolID( int aId, int aCursor, const wxString& aToolMsg )
|
2007-08-15 02:43:57 +00:00
|
|
|
{
|
2010-07-27 09:01:26 +00:00
|
|
|
// Keep default cursor in toolbars
|
|
|
|
SetCursor( wxNullCursor );
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2011-02-08 14:48:38 +00:00
|
|
|
// Change DrawPanel cursor if requested.
|
|
|
|
if( DrawPanel && aCursor >= 0 )
|
2010-07-27 16:49:38 +00:00
|
|
|
DrawPanel->SetCursor( aCursor );
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2010-07-27 16:49:38 +00:00
|
|
|
DisplayToolMsg( aToolMsg );
|
2007-08-15 02:43:57 +00:00
|
|
|
|
2010-07-27 16:49:38 +00:00
|
|
|
if( aId < 0 )
|
2007-08-15 02:43:57 +00:00
|
|
|
return;
|
|
|
|
|
2011-02-24 20:22:12 +00:00
|
|
|
wxCHECK2_MSG( aId >= ID_NO_TOOL_SELECTED, aId = ID_NO_TOOL_SELECTED,
|
|
|
|
wxString::Format( wxT( "Current tool ID cannot be set to %d." ), aId ) );
|
|
|
|
|
|
|
|
m_toolId = aId;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
/*****************************/
|
2009-04-05 20:49:15 +00:00
|
|
|
/* default virtual functions */
|
2007-08-15 02:43:57 +00:00
|
|
|
/*****************************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::OnGrid( int grid_type )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
|
2011-02-03 19:27:28 +00:00
|
|
|
wxPoint EDA_DRAW_FRAME::GetGridPosition( const wxPoint& aPosition )
|
|
|
|
{
|
|
|
|
wxPoint pos = aPosition;
|
|
|
|
|
2011-02-05 02:21:11 +00:00
|
|
|
if( m_currentScreen != NULL && m_snapToGrid )
|
|
|
|
pos = m_currentScreen->GetNearestGridPosition( aPosition );
|
2011-02-03 19:27:28 +00:00
|
|
|
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
int EDA_DRAW_FRAME::ReturnBlockCommand( int key )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-15 02:43:57 +00:00
|
|
|
return 0;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::InitBlockPasteInfos()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2011-02-05 02:21:11 +00:00
|
|
|
GetScreen()->m_BlockLocate.ClearItemsList();
|
2011-02-11 20:48:13 +00:00
|
|
|
DrawPanel->m_mouseCaptureCallback = NULL;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::HandleBlockPlace( wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
bool EDA_DRAW_FRAME::HandleBlockEnd( wxDC* DC )
|
2007-08-15 02:43:57 +00:00
|
|
|
{
|
2010-11-13 11:02:24 +00:00
|
|
|
return false;
|
2007-08-15 02:43:57 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
void EDA_DRAW_FRAME::AdjustScrollBars( const wxPoint& aCenterPosition )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2010-02-14 18:14:33 +00:00
|
|
|
int unitsX, unitsY, posX, posY;
|
2010-02-08 18:15:42 +00:00
|
|
|
wxSize drawingSize, clientSize;
|
2011-02-05 02:21:11 +00:00
|
|
|
BASE_SCREEN* screen = GetScreen();
|
2010-02-22 16:45:35 +00:00
|
|
|
bool noRefresh = true;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-01-17 20:31:19 +00:00
|
|
|
if( screen == NULL || DrawPanel == NULL )
|
2007-08-15 02:43:57 +00:00
|
|
|
return;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
// The drawing size is twice the current page size.
|
2010-02-08 18:15:42 +00:00
|
|
|
drawingSize = screen->ReturnPageSize() * 2;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
// Calculate the portion of the drawing that can be displayed in the
|
|
|
|
// client area at the current zoom level.
|
2010-02-08 18:15:42 +00:00
|
|
|
clientSize = DrawPanel->GetClientSize();
|
|
|
|
|
2010-02-22 16:45:35 +00:00
|
|
|
double scalar = screen->GetScalingFactor();
|
|
|
|
clientSize.x = wxRound( (double) clientSize.x / scalar );
|
|
|
|
clientSize.y = wxRound( (double) clientSize.y / scalar );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-02-11 19:39:55 +00:00
|
|
|
/* Adjust drawing size when zooming way out to prevent centering around
|
|
|
|
* cursor problems. */
|
2010-02-08 18:15:42 +00:00
|
|
|
if( clientSize.x > drawingSize.x || clientSize.y > drawingSize.y )
|
|
|
|
drawingSize = clientSize;
|
2009-02-11 19:39:55 +00:00
|
|
|
|
2010-02-22 16:45:35 +00:00
|
|
|
drawingSize.x += wxRound( (double) clientSize.x / 2.0 );
|
|
|
|
drawingSize.y += wxRound( (double) clientSize.y / 2.0 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
if( screen->m_Center )
|
2007-08-15 02:43:57 +00:00
|
|
|
{
|
2010-02-22 16:45:35 +00:00
|
|
|
screen->m_DrawOrg.x = -wxRound( (double) drawingSize.x / 2.0 );
|
|
|
|
screen->m_DrawOrg.y = -wxRound( (double) drawingSize.y / 2.0 );
|
2007-08-15 02:43:57 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-02-22 16:45:35 +00:00
|
|
|
screen->m_DrawOrg.x = -wxRound( (double) clientSize.x / 2.0 );
|
|
|
|
screen->m_DrawOrg.y = -wxRound( (double) clientSize.y / 2.0 );
|
2007-08-15 02:43:57 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-02-08 18:15:42 +00:00
|
|
|
/* Always set scrollbar pixels per unit to 1 unless you want the zoom
|
|
|
|
* around cursor to jump around. This reported problem occurs when the
|
|
|
|
* zoom point is not on a pixel per unit increment. If you set the
|
|
|
|
* pixels per unit to 10, you have potential for the zoom point to
|
|
|
|
* jump around +/-5 pixels from the nearest grid point.
|
|
|
|
*/
|
2010-02-14 18:14:33 +00:00
|
|
|
screen->m_ScrollPixelsPerUnitX = screen->m_ScrollPixelsPerUnitY = 1;
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
// Calculate the number of scroll bar units for the given zoom level. */
|
2010-02-22 16:45:35 +00:00
|
|
|
unitsX = wxRound( (double) drawingSize.x * scalar );
|
|
|
|
unitsY = wxRound( (double) drawingSize.y * scalar );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
// Calculate the position, place the cursor at the center of screen.
|
2011-02-11 20:48:13 +00:00
|
|
|
screen->SetScrollCenterPosition( aCenterPosition );
|
|
|
|
posX = aCenterPosition.x - screen->m_DrawOrg.x;
|
|
|
|
posY = aCenterPosition.y - screen->m_DrawOrg.y;
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2010-02-22 16:45:35 +00:00
|
|
|
posX -= wxRound( (double) clientSize.x / 2.0 );
|
|
|
|
posY -= wxRound( (double) clientSize.y / 2.0 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-02-22 16:45:35 +00:00
|
|
|
if( posX < 0 )
|
2010-02-08 18:15:42 +00:00
|
|
|
posX = 0;
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2010-02-22 16:45:35 +00:00
|
|
|
if( posY < 0 )
|
2010-02-08 18:15:42 +00:00
|
|
|
posY = 0;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-02-22 16:45:35 +00:00
|
|
|
posX = wxRound( (double) posX * scalar );
|
|
|
|
posY = wxRound( (double) posY * scalar );
|
2010-02-08 18:15:42 +00:00
|
|
|
|
|
|
|
screen->m_ScrollbarPos = wxPoint( posX, posY );
|
|
|
|
screen->m_ScrollbarNumber = wxSize( unitsX, unitsY );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-02-22 16:45:35 +00:00
|
|
|
#if DEBUG_DUMP_SCROLLBAR_SETTINGS
|
2010-02-08 18:15:42 +00:00
|
|
|
wxLogDebug( wxT( "SetScrollbars(%d, %d, %d, %d, %d, %d)" ),
|
2010-02-22 16:45:35 +00:00
|
|
|
screen->m_ScrollPixelsPerUnitX, screen->m_ScrollPixelsPerUnitY,
|
|
|
|
screen->m_ScrollbarNumber.x, screen->m_ScrollbarNumber.y,
|
|
|
|
screen->m_ScrollbarPos.x, screen->m_ScrollbarPos.y );
|
2010-02-08 18:15:42 +00:00
|
|
|
#endif
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-02-14 18:14:33 +00:00
|
|
|
DrawPanel->SetScrollbars( screen->m_ScrollPixelsPerUnitX,
|
|
|
|
screen->m_ScrollPixelsPerUnitY,
|
2008-04-17 16:25:29 +00:00
|
|
|
screen->m_ScrollbarNumber.x,
|
2008-12-05 16:03:05 +00:00
|
|
|
screen->m_ScrollbarNumber.y,
|
|
|
|
screen->m_ScrollbarPos.x,
|
2010-02-22 16:45:35 +00:00
|
|
|
screen->m_ScrollbarPos.y, noRefresh );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
|
|
|
* Function SetLanguage
|
2010-02-26 15:39:10 +00:00
|
|
|
* called on a language menu selection
|
|
|
|
* when using a derived function, do not forget to call this one
|
|
|
|
*/
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::SetLanguage( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2011-01-21 19:30:59 +00:00
|
|
|
EDA_BASE_FRAME::SetLanguage( event );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2009-10-14 19:43:31 +00:00
|
|
|
/**
|
|
|
|
* Round to the nearest precision.
|
|
|
|
*
|
|
|
|
* Try to approximate a coordinate using a given precision to prevent
|
|
|
|
* rounding errors when converting from inches to mm.
|
|
|
|
*
|
2009-07-25 04:53:39 +00:00
|
|
|
* ie round the unit value to 0 if unit is 1 or 2, or 8 or 9
|
|
|
|
*/
|
2009-10-14 19:43:31 +00:00
|
|
|
double RoundTo0( double x, double precision )
|
2009-07-25 04:53:39 +00:00
|
|
|
{
|
2009-10-14 19:43:31 +00:00
|
|
|
assert( precision != 0 );
|
|
|
|
|
|
|
|
long long ix = wxRound( x * precision );
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2009-10-14 19:43:31 +00:00
|
|
|
if ( x < 0.0 )
|
|
|
|
NEGATE( ix );
|
|
|
|
|
|
|
|
int remainder = ix % 10; // remainder is in precision mm
|
2009-07-25 04:53:39 +00:00
|
|
|
|
|
|
|
if ( remainder <= 2 )
|
2009-10-14 19:43:31 +00:00
|
|
|
ix -= remainder; // truncate to the near number
|
2009-07-25 04:53:39 +00:00
|
|
|
else if (remainder >= 8 )
|
2009-10-14 19:43:31 +00:00
|
|
|
ix += 10 - remainder; // round to near number
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-10-14 19:43:31 +00:00
|
|
|
if ( x < 0 )
|
|
|
|
NEGATE( ix );
|
|
|
|
|
|
|
|
return (double) ix / precision;
|
2009-07-25 04:53:39 +00:00
|
|
|
}
|
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
|
2009-10-14 19:43:31 +00:00
|
|
|
/**
|
2010-11-12 16:59:16 +00:00
|
|
|
* Function UpdateStatusBar
|
2009-07-25 04:53:39 +00:00
|
|
|
* Displays in the bottom of the main window a stust:
|
|
|
|
* - Absolute Cursor coordinates
|
2009-10-14 19:43:31 +00:00
|
|
|
* - Relative Cursor coordinates (relative to the last coordinate stored
|
|
|
|
* when actiavte the space bar)
|
|
|
|
* ( in this status is also displayed the zoom level, but this is not made
|
|
|
|
* by this function )
|
2009-07-25 04:53:39 +00:00
|
|
|
*/
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::UpdateStatusBar()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
wxString Line;
|
|
|
|
int dx, dy;
|
2011-02-05 02:21:11 +00:00
|
|
|
BASE_SCREEN* screen = GetScreen();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
if( !screen )
|
2007-08-15 02:43:57 +00:00
|
|
|
return;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-01-31 10:05:16 +00:00
|
|
|
/* Display Zoom level: zoom = zoom_coeff/ZoomScalar */
|
|
|
|
if ( (screen->GetZoom() % screen->m_ZoomScalar) == 0 )
|
2009-04-05 20:49:15 +00:00
|
|
|
Line.Printf( wxT( "Z %d" ), screen->GetZoom() / screen->m_ZoomScalar );
|
2009-01-31 10:05:16 +00:00
|
|
|
else
|
2011-01-31 18:26:12 +00:00
|
|
|
Line.Printf( wxT( "Z %.1f" ), (float)screen->GetZoom() / screen->m_ZoomScalar );
|
|
|
|
|
2007-08-15 02:43:57 +00:00
|
|
|
SetStatusText( Line, 1 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-01-31 10:05:16 +00:00
|
|
|
/* Display absolute coordinates: */
|
2011-02-11 20:48:13 +00:00
|
|
|
double dXpos = To_User_Unit( g_UserUnit, screen->GetCrossHairPosition().x, m_InternalUnits );
|
|
|
|
double dYpos = To_User_Unit( g_UserUnit, screen->GetCrossHairPosition().y, m_InternalUnits );
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2009-10-14 19:43:31 +00:00
|
|
|
/*
|
|
|
|
* Converting from inches to mm can give some coordinates due to
|
|
|
|
* float point precision rounding errors, like 1.999 or 2.001 so
|
|
|
|
* round to the nearest drawing precision required by the application.
|
2009-07-25 04:53:39 +00:00
|
|
|
*/
|
2010-07-12 14:07:09 +00:00
|
|
|
if ( g_UserUnit == MILLIMETRES )
|
2009-07-25 04:53:39 +00:00
|
|
|
{
|
2009-10-14 19:43:31 +00:00
|
|
|
dXpos = RoundTo0( dXpos, (double)( m_InternalUnits / 10 ) );
|
|
|
|
dYpos = RoundTo0( dYpos, (double)( m_InternalUnits / 10 ) );
|
2009-07-25 04:53:39 +00:00
|
|
|
}
|
2010-07-12 14:07:09 +00:00
|
|
|
|
|
|
|
/* The following sadly is an if eeschema/if pcbnew */
|
2010-10-30 10:03:41 +00:00
|
|
|
wxString absformatter;
|
|
|
|
wxString locformatter;
|
2010-07-12 14:07:09 +00:00
|
|
|
switch( g_UserUnit )
|
|
|
|
{
|
|
|
|
case INCHES:
|
|
|
|
if( m_InternalUnits == EESCHEMA_INTERNAL_UNIT )
|
|
|
|
{
|
2010-10-30 10:03:41 +00:00
|
|
|
absformatter = wxT( "X %.3f Y %.3f" );
|
|
|
|
locformatter = wxT( "dx %.3f dy %.3f" );
|
2010-07-12 14:07:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-10-30 10:03:41 +00:00
|
|
|
absformatter = wxT( "X %.4f Y %.4f" );
|
|
|
|
locformatter = wxT( "dx %.4f dy %.4f" );
|
2010-07-12 14:07:09 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MILLIMETRES:
|
|
|
|
if( m_InternalUnits == EESCHEMA_INTERNAL_UNIT )
|
|
|
|
{
|
2010-10-30 10:03:41 +00:00
|
|
|
absformatter = wxT( "X %.2f Y %.2f" );
|
|
|
|
locformatter = wxT( "dx %.2f dy %.2f" );
|
2010-07-12 14:07:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-10-30 10:03:41 +00:00
|
|
|
absformatter = wxT( "X %.3f Y %.3f" );
|
|
|
|
locformatter = wxT( "dx %.3f dy %.3f" );
|
2010-07-12 14:07:09 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNSCALED_UNITS:
|
2010-10-30 10:03:41 +00:00
|
|
|
absformatter = wxT( "X %f Y %f" );
|
|
|
|
locformatter = wxT( "dx %f dy %f" );
|
2010-07-12 14:07:09 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-10-30 10:03:41 +00:00
|
|
|
Line.Printf( absformatter, dXpos, dYpos );
|
2007-08-15 02:43:57 +00:00
|
|
|
SetStatusText( Line, 2 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-01-31 10:05:16 +00:00
|
|
|
/* Display relative coordinates: */
|
2011-02-11 20:48:13 +00:00
|
|
|
dx = screen->GetCrossHairPosition().x - screen->m_O_Curseur.x;
|
|
|
|
dy = screen->GetCrossHairPosition().y - screen->m_O_Curseur.y;
|
2010-07-12 14:07:09 +00:00
|
|
|
dXpos = To_User_Unit( g_UserUnit, dx, m_InternalUnits );
|
|
|
|
dYpos = To_User_Unit( g_UserUnit, dy, m_InternalUnits );
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2010-07-12 14:07:09 +00:00
|
|
|
if( g_UserUnit == MILLIMETRES )
|
2009-07-25 04:53:39 +00:00
|
|
|
{
|
2010-07-12 14:07:09 +00:00
|
|
|
dXpos = RoundTo0( dXpos, (double) ( m_InternalUnits / 10 ) );
|
|
|
|
dYpos = RoundTo0( dYpos, (double) ( m_InternalUnits / 10 ) );
|
2009-07-25 04:53:39 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-07-12 14:07:09 +00:00
|
|
|
/* We already decided the formatter above */
|
2010-10-30 10:03:41 +00:00
|
|
|
Line.Printf( locformatter, dXpos, dYpos );
|
2007-08-15 02:43:57 +00:00
|
|
|
SetStatusText( Line, 3 );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
/**
|
|
|
|
* Load draw frame specific configuration settings.
|
|
|
|
*
|
|
|
|
* Don't forget to call this base method from any derived classes or the
|
|
|
|
* settings will not get loaded.
|
|
|
|
*/
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::LoadSettings()
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
|
|
|
wxASSERT( wxGetApp().m_EDA_Config != NULL );
|
|
|
|
|
|
|
|
wxConfig* cfg = wxGetApp().m_EDA_Config;
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
EDA_BASE_FRAME::LoadSettings();
|
2010-02-01 21:23:27 +00:00
|
|
|
cfg->Read( m_FrameName + CursorShapeEntryKeyword, &m_CursorShape, ( long )0 );
|
|
|
|
bool btmp;
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2010-02-01 21:23:27 +00:00
|
|
|
if ( cfg->Read( m_FrameName + ShowGridEntryKeyword, &btmp ) )
|
2011-02-09 19:47:33 +00:00
|
|
|
SetGridVisibility( btmp );
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2010-02-01 21:23:27 +00:00
|
|
|
int itmp;
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2010-02-01 21:23:27 +00:00
|
|
|
if( cfg->Read( m_FrameName + GridColorEntryKeyword, &itmp ) )
|
2011-02-09 19:47:33 +00:00
|
|
|
SetGridColor( itmp );
|
2011-01-31 18:26:12 +00:00
|
|
|
|
2009-10-14 19:43:31 +00:00
|
|
|
cfg->Read( m_FrameName + LastGridSizeId, &m_LastGridSizeId, 0L );
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save draw frame specific configuration settings.
|
|
|
|
*
|
|
|
|
* Don't forget to call this base method from any derived classes or the
|
|
|
|
* settings will not get saved.
|
|
|
|
*/
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::SaveSettings()
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
|
|
|
wxASSERT( wxGetApp().m_EDA_Config != NULL );
|
|
|
|
|
|
|
|
wxConfig* cfg = wxGetApp().m_EDA_Config;
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
EDA_BASE_FRAME::SaveSettings();
|
2010-02-01 21:23:27 +00:00
|
|
|
cfg->Write( m_FrameName + CursorShapeEntryKeyword, m_CursorShape );
|
|
|
|
cfg->Write( m_FrameName + ShowGridEntryKeyword, IsGridVisible() );
|
|
|
|
cfg->Write( m_FrameName + GridColorEntryKeyword, GetGridColor() );
|
2009-10-14 19:43:31 +00:00
|
|
|
cfg->Write( m_FrameName + LastGridSizeId, ( long ) m_LastGridSizeId );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::AppendMsgPanel( const wxString& textUpper,
|
|
|
|
const wxString& textLower,
|
|
|
|
int color, int pad )
|
2009-10-14 19:43:31 +00:00
|
|
|
{
|
|
|
|
if( MsgPanel == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
MsgPanel->AppendMessage( textUpper, textLower, color, pad );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void EDA_DRAW_FRAME::ClearMsgPanel( void )
|
2009-10-14 19:43:31 +00:00
|
|
|
{
|
|
|
|
if( MsgPanel == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
MsgPanel->EraseMsgBox();
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|