dialog_footprint_wizard_list.cpp 1.92 KB
Newer Older
1
/**
2
 * @file dialog_footprint_wizard_list.cpp
3 4
 */

5
#include <wx/grid.h>
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22



#include <fctsys.h>
#include <pcbnew.h>
#include <wxPcbStruct.h>
#include <pcbcommon.h>
#include <dialog_footprint_wizard_list.h>
#include <class_footprint_wizard.h>



DIALOG_FOOTPRINT_WIZARD_LIST::DIALOG_FOOTPRINT_WIZARD_LIST( wxWindow* aParent )
    : DIALOG_FOOTPRINT_WIZARD_LIST_BASE( aParent )
{
    SetFocus();
    int n_wizards = FOOTPRINT_WIZARDS::GetSize();
23

24 25
    // Current wizard selection, empty or first
    m_FootprintWizard = NULL;
26

27 28
    if (n_wizards)
        m_FootprintWizard = FOOTPRINT_WIZARDS::GetWizard(0);
29

30
    // Choose selection mode and insert the needed rows
31

32
    m_footprintWizardsGrid->SetColSize( 0, 0 ); // hide the preview for now
33

34 35
    m_footprintWizardsGrid->SetSelectionMode(wxGrid::wxGridSelectRows);
    m_footprintWizardsGrid->InsertRows(0,n_wizards,true);
36

37 38 39 40 41 42 43
    // Put all wizards in the list
    for (int i=0;i<n_wizards;i++)
    {
        FOOTPRINT_WIZARD *wizard = FOOTPRINT_WIZARDS::GetWizard(i);
        wxString name = wizard->GetName();
        wxString description = wizard->GetDescription();
        wxString image = wizard->GetImage();
44

45 46
        m_footprintWizardsGrid->SetCellValue(i,1,name);
        m_footprintWizardsGrid->SetCellValue(i,2,description);
47

48
    }
49

50 51 52 53 54 55 56 57 58 59 60
    // Select the first row
    m_footprintWizardsGrid->ClearSelection();
    m_footprintWizardsGrid->SelectRow(0,false);

}


void DIALOG_FOOTPRINT_WIZARD_LIST::OnCellWizardClick( wxGridEvent& event )
{
    int click_row = event.GetRow();
    m_FootprintWizard = FOOTPRINT_WIZARDS::GetWizard(click_row);
61
    m_footprintWizardsGrid->SelectRow(event.GetRow(),false);
62 63 64 65 66 67 68 69 70
}

FOOTPRINT_WIZARD* DIALOG_FOOTPRINT_WIZARD_LIST::GetWizard()
{
    return m_FootprintWizard;
}

void DIALOG_FOOTPRINT_WIZARD_LIST::OnOpenButtonClick( wxCommandEvent& event )
{
71 72 73 74 75 76
    EndModal( wxID_OK );
}

void DIALOG_FOOTPRINT_WIZARD_LIST::OnCancelClick( wxCommandEvent& event )
{
    EndModal( wxID_CANCEL );
77
}