156 lines
3.8 KiB
C++
156 lines
3.8 KiB
C++
/************************************/
|
|
/* set_grid.cpp - manage user grid. */
|
|
/************************************/
|
|
|
|
#include "fctsys.h"
|
|
#include "common.h"
|
|
#include "class_drawpanel.h"
|
|
|
|
#include "pcbnew.h"
|
|
|
|
//#include "protos.h"
|
|
|
|
#include "pcbnew_id.h"
|
|
#include "dialog_set_grid_base.h"
|
|
|
|
|
|
class DIALOG_SET_GRID : public DIALOG_SET_GRID_BASE
|
|
{
|
|
public:
|
|
int m_internalUnits;
|
|
|
|
public:
|
|
DIALOG_SET_GRID( wxWindow* parent, const wxPoint& pos );
|
|
~DIALOG_SET_GRID() { }
|
|
void SetGridSize( const wxRealPoint& grid );
|
|
wxRealPoint GetGridSize();
|
|
void SetGridUnits( int units );
|
|
int GetGridUnits();
|
|
void SetGridOrigin( const wxPoint& grid );
|
|
wxPoint GetGridOrigin();
|
|
|
|
private:
|
|
void OnResetGridOrgClick( wxCommandEvent& event );
|
|
void OnCancelClick( wxCommandEvent& event );
|
|
void OnOkClick( wxCommandEvent& event );
|
|
};
|
|
|
|
void WinEDA_BasePcbFrame::InstallGridFrame( const wxPoint& pos )
|
|
{
|
|
DIALOG_SET_GRID dlg( this, pos );
|
|
|
|
dlg.m_internalUnits = m_InternalUnits;
|
|
dlg.SetGridUnits( m_UserGridUnit );
|
|
dlg.SetGridSize( m_UserGridSize );
|
|
dlg.SetGridOrigin( GetScreen()->m_GridOrigin );
|
|
|
|
if( dlg.ShowModal() == wxID_CANCEL )
|
|
return;
|
|
|
|
m_UserGridSize = dlg.GetGridSize();
|
|
m_UserGridUnit = (UserUnitType) dlg.GetGridUnits();
|
|
GetScreen()->m_GridOrigin = dlg.GetGridOrigin();
|
|
|
|
GetScreen()->AddGrid( m_UserGridSize, m_UserGridUnit, ID_POPUP_GRID_USER );
|
|
|
|
// If the user grid is the current option, recall SetGrid()
|
|
// to force new values put in list as current grid value
|
|
if( GetScreen()->GetGridId() == ID_POPUP_GRID_USER )
|
|
GetScreen()->SetGrid( ID_POPUP_GRID_USER );
|
|
|
|
DrawPanel->Refresh();
|
|
}
|
|
|
|
|
|
DIALOG_SET_GRID::DIALOG_SET_GRID( wxWindow* parent, const wxPoint& pos ) :
|
|
DIALOG_SET_GRID_BASE( parent )
|
|
{
|
|
SetFocus();
|
|
|
|
m_TextPosXUnits->SetLabel( GetUnitsLabel( g_UserUnit ) );
|
|
m_TextPosYUnits->SetLabel( GetUnitsLabel( g_UserUnit ) );
|
|
|
|
GetSizer()->SetSizeHints( this );
|
|
Centre();
|
|
}
|
|
|
|
|
|
void DIALOG_SET_GRID::SetGridSize( const wxRealPoint& grid )
|
|
{
|
|
wxString msg;
|
|
|
|
msg.Printf( wxT( "%.4f" ), grid.x );
|
|
m_OptGridSizeX->SetValue( msg );
|
|
msg.Printf( wxT( "%.4f" ), grid.y );
|
|
m_OptGridSizeY->SetValue( msg );
|
|
}
|
|
|
|
|
|
wxRealPoint DIALOG_SET_GRID::GetGridSize()
|
|
{
|
|
wxRealPoint grid;
|
|
|
|
|
|
/* TODO: Some error checking here would be a good thing. */
|
|
m_OptGridSizeX->GetValue().ToDouble( &grid.x );
|
|
m_OptGridSizeY->GetValue().ToDouble( &grid.y );
|
|
|
|
return grid;
|
|
}
|
|
|
|
|
|
void DIALOG_SET_GRID::SetGridUnits( int units )
|
|
{
|
|
if( units != INCHES )
|
|
m_UnitGrid->SetSelection( 1 );
|
|
}
|
|
|
|
|
|
int DIALOG_SET_GRID::GetGridUnits()
|
|
{
|
|
return m_UnitGrid->GetSelection();
|
|
}
|
|
|
|
|
|
wxPoint DIALOG_SET_GRID::GetGridOrigin()
|
|
{
|
|
wxPoint grid;
|
|
|
|
/* TODO: Some error checking here would be a good thing. */
|
|
grid.x = ReturnValueFromTextCtrl( *m_GridOriginXCtrl, m_internalUnits );
|
|
grid.y = ReturnValueFromTextCtrl( *m_GridOriginYCtrl, m_internalUnits );
|
|
|
|
return grid;
|
|
}
|
|
|
|
|
|
void DIALOG_SET_GRID::SetGridOrigin( const wxPoint& grid )
|
|
{
|
|
wxString msg;
|
|
|
|
PutValueInLocalUnits( *m_GridOriginXCtrl, grid.x, m_internalUnits );
|
|
PutValueInLocalUnits( *m_GridOriginYCtrl, grid.y, m_internalUnits );
|
|
}
|
|
|
|
|
|
void DIALOG_SET_GRID::OnResetGridOrgClick( wxCommandEvent& event )
|
|
{
|
|
SetGridOrigin( wxPoint(0,0) );
|
|
}
|
|
|
|
|
|
/*****************************************************************/
|
|
void DIALOG_SET_GRID::OnCancelClick( wxCommandEvent& event )
|
|
/*****************************************************************/
|
|
{
|
|
EndModal( wxID_CANCEL );
|
|
}
|
|
|
|
|
|
/*************************************************************************/
|
|
void DIALOG_SET_GRID::OnOkClick( wxCommandEvent& event )
|
|
/*************************************************************************/
|
|
{
|
|
EndModal( wxID_OK );
|
|
}
|