Hello,
II try to change the project creation wizard for "Avr Project" by adding a third page of choice additional libraries.
This setting uses a widget "wxCheckListBox" named "lib_addons" with fields: libA, libB, libC, libD.
I changed it to "wizard.xrc" and "wizard.script"
A-Modifications "wizard.xrc"
see *.zip
B-Modifications "wizard.script"
1 - global variables
/// ------------------------------
/// LETARTARE for wxCheckListBox
LibNumbers <- _T ("");
LibString <- _T ("");
/// <----------------------------
2 - in "BeginWizard function ()"
/// ---------------------------------------------------------------------
/// For testing LETARTARE "wiz::GetListboxStringSelections (wxString &)"
/// Page "libraryChoice" contents "wxCheckListBox"
Wizard.AddPage (_T ("libraryChoice")) /// inside "wizard.xrc"
/// <-------------------------------------------------------------------
3 - I created the following function to display the values retrieved
/// ----------------------------------------------- ---------------------
/// LETARTARE : lib_addons
/// functions available for "wxCheckListBox"
/// int GetListboxSelection(const wxString& name); // with ONLY ONE SELECTION !!!
/// wxString GetListboxSelections(const wxString& name);
/// wxString GetListboxStringSelections(const wxString& name);
/// void SetListboxSelection(const wxString& name, int sel);
function OnLeave_libraryChoice (fwd)
{
if (fwd)
{
LibNumbers = Wizard.GetListboxSelections (_T ("lib_addons"));
/// Console output for test scripting
::print (_T ("->") + LibNumbers + _T ("<-"));
if (LibNumbers.IsEmpty ()) {
::print (_T ("No selected library"));
}
else {
LibString = Wizard.GetListboxStringSelections (_T ("lib_addons"));
::print (_T ("lib_addons = ") + LibString);
}
}
return true;
}
/// <-------------------------------------------------------------------
Disregard of space errors in quotations !!4 - Results:
creation is correct but:
- The variable LibNumbers is always equal to 0 !
- Variable LibString is always empty!
I can not find my mistake?
Cordially.