2009-10-30 19:30:48 +00:00
|
|
|
#ifndef __dialog_lib_edit_pin__
|
|
|
|
#define __dialog_lib_edit_pin__
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Subclass of DIALOG_LIB_EDIT_PIN_BASE, which is generated by wxFormBuilder.
|
|
|
|
*/
|
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
#include "wx/bmpcbox.h"
|
|
|
|
|
2009-10-30 19:30:48 +00:00
|
|
|
#include "dialog_lib_edit_pin_base.h"
|
|
|
|
|
|
|
|
/** Implementing DIALOG_LIB_EDIT_PIN_BASE */
|
|
|
|
class DIALOG_LIB_EDIT_PIN : public DIALOG_LIB_EDIT_PIN_BASE
|
|
|
|
{
|
2011-04-18 20:22:17 +00:00
|
|
|
static wxSize s_LastSize; ///< last position and size
|
|
|
|
static wxPoint s_LastPos;
|
|
|
|
|
|
|
|
LIB_PIN * m_dummyPin; // a working copy used to show changes
|
2011-04-18 12:23:20 +00:00
|
|
|
|
2009-10-30 19:30:48 +00:00
|
|
|
public:
|
|
|
|
/** Constructor */
|
2011-04-18 20:22:17 +00:00
|
|
|
DIALOG_LIB_EDIT_PIN( wxWindow* parent, LIB_PIN* aPin );
|
|
|
|
~DIALOG_LIB_EDIT_PIN();
|
2009-10-30 19:30:48 +00:00
|
|
|
|
2011-04-18 12:23:20 +00:00
|
|
|
void SetLastSizeAndPosition();
|
|
|
|
void OnCloseDialog( wxCloseEvent& event );
|
|
|
|
void OnCancelButtonClick( wxCommandEvent& event );
|
|
|
|
void OnOKButtonClick( wxCommandEvent& event );
|
2011-04-18 20:22:17 +00:00
|
|
|
void OnPaintShowPanel( wxPaintEvent& event );
|
|
|
|
void OnPropertiesChange( wxCommandEvent& event );
|
2011-04-18 12:23:20 +00:00
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
void SetOrientationList( const wxArrayString& list, const char *** aBitmaps );
|
2009-10-30 19:30:48 +00:00
|
|
|
void SetOrientation( int orientation )
|
|
|
|
{
|
|
|
|
m_choiceOrientation->SetSelection( orientation );
|
|
|
|
}
|
|
|
|
int GetOrientation( void ) { return m_choiceOrientation->GetSelection(); }
|
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
void SetElectricalTypeList( const wxArrayString& list, const char *** aBitmaps );
|
2009-10-30 19:30:48 +00:00
|
|
|
void SetElectricalType( int type )
|
|
|
|
{
|
|
|
|
m_choiceElectricalType->SetSelection( type );
|
|
|
|
}
|
|
|
|
int GetElectricalType( void )
|
|
|
|
{
|
|
|
|
return m_choiceElectricalType->GetSelection();
|
|
|
|
}
|
|
|
|
|
2010-03-04 09:32:51 +00:00
|
|
|
void SetStyleList( const wxArrayString& list, const char *** aBitmaps );
|
2009-10-30 19:30:48 +00:00
|
|
|
void SetStyle( int style ) { m_choiceStyle->SetSelection( style ); }
|
|
|
|
int GetStyle( void ) { return m_choiceStyle->GetSelection(); }
|
|
|
|
|
2011-04-07 17:48:26 +00:00
|
|
|
void SetName( const wxString& name ) { m_textPinName->SetValue( name ); }
|
|
|
|
wxString GetName( void ) { return m_textPinName->GetValue(); }
|
2009-10-30 19:30:48 +00:00
|
|
|
|
|
|
|
void SetNameTextSize( const wxString& size )
|
|
|
|
{
|
2011-04-07 17:48:26 +00:00
|
|
|
m_textPinNameTextSize->SetValue( size );
|
2009-10-30 19:30:48 +00:00
|
|
|
}
|
|
|
|
wxString GetNameTextSize( void )
|
|
|
|
{
|
2011-04-07 17:48:26 +00:00
|
|
|
return m_textPinNameTextSize->GetValue();
|
2009-10-30 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SetNameTextSizeUnits( const wxString& units )
|
|
|
|
{
|
|
|
|
m_staticNameTextSizeUnits->SetLabel( units );
|
|
|
|
}
|
|
|
|
|
2011-04-07 17:48:26 +00:00
|
|
|
void SetPadName( const wxString& number )
|
2009-10-30 19:30:48 +00:00
|
|
|
{
|
2011-04-07 17:48:26 +00:00
|
|
|
m_textPadName->SetValue( number );
|
2009-10-30 19:30:48 +00:00
|
|
|
}
|
2011-04-07 17:48:26 +00:00
|
|
|
wxString GetPadName( void ) { return m_textPadName->GetValue(); }
|
2009-10-30 19:30:48 +00:00
|
|
|
|
2011-04-07 17:48:26 +00:00
|
|
|
void SetPadNameTextSize( const wxString& size )
|
2009-10-30 19:30:48 +00:00
|
|
|
{
|
2011-04-07 17:48:26 +00:00
|
|
|
m_textPadNameTextSize->SetValue( size );
|
2009-10-30 19:30:48 +00:00
|
|
|
}
|
2011-04-07 17:48:26 +00:00
|
|
|
wxString GetPadNameTextSize( void )
|
2009-10-30 19:30:48 +00:00
|
|
|
{
|
2011-04-07 17:48:26 +00:00
|
|
|
return m_textPadNameTextSize->GetValue();
|
2009-10-30 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
2011-04-07 17:48:26 +00:00
|
|
|
void SetPadNameTextSizeUnits( const wxString& units )
|
2009-10-30 19:30:48 +00:00
|
|
|
{
|
|
|
|
m_staticNumberTextSizeUnits->SetLabel( units );
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetLength( const wxString& length )
|
|
|
|
{
|
|
|
|
m_textLength->SetValue( length );
|
|
|
|
}
|
|
|
|
wxString GetLength( void ) { return m_textLength->GetValue(); }
|
|
|
|
|
|
|
|
void SetLengthUnits( const wxString& units )
|
|
|
|
{
|
|
|
|
m_staticLengthUnits->SetLabel( units );
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetAddToAllParts( bool apply )
|
|
|
|
{
|
|
|
|
m_checkApplyToAllParts->SetValue( apply );
|
|
|
|
}
|
|
|
|
bool GetAddToAllParts( void )
|
|
|
|
{
|
|
|
|
return m_checkApplyToAllParts->GetValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetAddToAllBodyStyles( bool apply )
|
|
|
|
{
|
|
|
|
m_checkApplyToAllConversions->SetValue( apply );
|
|
|
|
}
|
|
|
|
bool GetAddToAllBodyStyles( void )
|
|
|
|
{
|
|
|
|
return m_checkApplyToAllConversions->GetValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetVisible( bool visible ) { m_checkShow->SetValue( visible ); }
|
|
|
|
bool GetVisible( void ) { return m_checkShow->GetValue(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __dialog_lib_edit_pin__
|