104 lines
3.0 KiB
C++
104 lines
3.0 KiB
C++
|
|
#ifndef __dialog_edit_component_in_schematic__
|
|
#define __dialog_edit_component_in_schematic__
|
|
|
|
|
|
#include "sch_field.h"
|
|
#include "template_fieldnames.h"
|
|
|
|
#include "dialog_edit_component_in_schematic_fbp.h"
|
|
|
|
/**
|
|
* class DIALOG_EDIT_COMPONENT_IN_SCHEMATIC
|
|
* is hand coded and implements DIALOG_EDIT_COMPONENT_IN_SCHEMATIC_FBP which
|
|
* is maintained by wxFormBuilder. Do not auto-generate this class or file,
|
|
* it is hand coded.
|
|
*/
|
|
class DIALOG_EDIT_COMPONENT_IN_SCHEMATIC : public DIALOG_EDIT_COMPONENT_IN_SCHEMATIC_FBP
|
|
{
|
|
friend void InstallCmpeditFrame( SCH_EDIT_FRAME* parent,
|
|
wxPoint& pos,
|
|
SCH_COMPONENT* aComponent );
|
|
|
|
SCH_EDIT_FRAME* m_Parent;
|
|
SCH_COMPONENT* m_Cmp;
|
|
LIB_COMPONENT* m_LibEntry;
|
|
bool m_skipCopyFromPanel;
|
|
|
|
static int s_SelectedRow;
|
|
|
|
/// The size of the dialog window last time it was displayed;
|
|
static wxSize s_LastSize;
|
|
|
|
/// a copy of the edited component's SCH_FIELDs
|
|
SCH_FIELDS m_FieldsBuf;
|
|
|
|
void setSelectedFieldNdx( int aFieldNdx );
|
|
|
|
int getSelectedFieldNdx();
|
|
|
|
/**
|
|
* Function copySelectedFieldToPanel
|
|
* sets the values displayed on the panel according to
|
|
* the currently selected field row
|
|
*/
|
|
void copySelectedFieldToPanel();
|
|
|
|
|
|
/**
|
|
* Function copyPanelToSelectedField
|
|
* copies the values displayed on the panel fields to the currently
|
|
* selected field
|
|
* @return bool - true if all fields are OK, else false if the user has put
|
|
* bad data into a field, and this value can be used to deny a row change.
|
|
*/
|
|
bool copyPanelToSelectedField();
|
|
|
|
void copyOptionsToPanel();
|
|
|
|
void copyPanelToOptions();
|
|
|
|
void setRowItem( int aFieldNdx, const SCH_FIELD& aField );
|
|
|
|
// event handlers
|
|
void OnListItemDeselected( wxListEvent& event );
|
|
void OnListItemSelected( wxListEvent& event );
|
|
void OnCancelButtonClick( wxCommandEvent& event );
|
|
void OnOKButtonClick( wxCommandEvent& event );
|
|
void SetInitCmp( wxCommandEvent& event );
|
|
void addFieldButtonHandler( wxCommandEvent& event );
|
|
void deleteFieldButtonHandler( wxCommandEvent& event );
|
|
void moveUpButtonHandler( wxCommandEvent& event );
|
|
|
|
SCH_FIELD* findField( const wxString& aFieldName );
|
|
|
|
|
|
protected:
|
|
|
|
|
|
public:
|
|
/** Constructor */
|
|
DIALOG_EDIT_COMPONENT_IN_SCHEMATIC( wxWindow* parent );
|
|
|
|
/**
|
|
* Function InitBuffers
|
|
* sets up to edit the given component.
|
|
* @param aComponent The component to edit.
|
|
*/
|
|
void InitBuffers( SCH_COMPONENT* aComponent );
|
|
|
|
private:
|
|
/**
|
|
* Function updateDisplay
|
|
* update the listbox showing fields, according to the fields texts
|
|
* must be called after a text change in fields, if this change is not an edition
|
|
*/
|
|
void updateDisplay( )
|
|
{
|
|
for( unsigned ii = FIELD1; ii<m_FieldsBuf.size(); ii++ )
|
|
setRowItem( ii, m_FieldsBuf[ii] );
|
|
}
|
|
};
|
|
|
|
#endif // __dialog_edit_component_in_schematic__
|