dialog_footprint_wizard_list.h 790 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/////////////////////////////////////////////////////////////////////////////
// Name:        dialog_footprint_wizard_list.h
/////////////////////////////////////////////////////////////////////////////

#ifndef _DIALOG_FOOTPRINT_WIZARD_LIST_H_
#define _DIALOG_FOOTPRINT_WIZARD_LIST_H_

#include <dialog_footprint_wizard_list_base.h>
#include <class_footprint_wizard.h>

class DIALOG_FOOTPRINT_WIZARD_LIST: public DIALOG_FOOTPRINT_WIZARD_LIST_BASE
{
private:
    wxDialog * m_Parent;
    FOOTPRINT_WIZARD *m_FootprintWizard;

public:
    DIALOG_FOOTPRINT_WIZARD_LIST(wxWindow * parent );
    
    FOOTPRINT_WIZARD* GetWizard();

private:

    void OnCellWizardClick( wxGridEvent& event );
    void OnOpenButtonClick( wxCommandEvent& event );
};

#endif  // _DIALOG_FOOTPRINT_WIZARD_LIST_H_