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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
/***************************************************************************
extwizard.cpp - description
-------------------
begin : Thu Aug 7 2003
copyright : (C) 2003 by ARRL
author : Jon Bloom
email : jbloom@arrl.org
revision : $Id$
***************************************************************************/
#ifdef HAVE_CONFIG_H
#include "sysconfig.h"
#endif
#include "extwizard.h"
#include "tqsltrace.h"
#define EW_HELP_BUT wxID_HIGHEST+300
BEGIN_EVENT_TABLE(ExtWizard, wxWizard)
EVT_WIZARD_PAGE_CHANGED(-1, ExtWizard::OnPageChanged)
END_EVENT_TABLE()
void
ExtWizard::OnPageChanged(wxWizardEvent&) {
tqslTrace("ExtWizard::OnPageChanged");
GetCurrentPage()->refresh();
GetCurrentPage()->SetFocus();
wxWindow *but = FindWindow(wxID_FORWARD);
if (but == NULL)
return;
but->Enable(!GetCurrentPage()->validate());
}
void
ExtWizard::ReportSize(const wxSize& size) {
tqslTrace("ExtWizard::ReportSize", "size=%d %d", size.GetWidth(), size.GetHeight());
if (size.GetWidth() > _minsize.GetWidth())
_minsize.SetWidth(size.GetWidth());
if (size.GetHeight() > _minsize.GetHeight())
_minsize.SetHeight(size.GetHeight());
}
ExtWizard::ExtWizard(wxWindow *parent, wxHtmlHelpController *help, const wxString& title)
: wxWizard(parent, -1, title), _help(help) {
tqslTrace("ExtWizard::ExtWizard", "parent=%lx, title=%s", reinterpret_cast<void *>(parent), S(title));
CenterOnParent();
}
BEGIN_EVENT_TABLE(ExtWizard_Page, wxWizardPageSimple)
EVT_BUTTON(EW_HELP_BUT, ExtWizard_Page::OnHelp)
END_EVENT_TABLE()
void
ExtWizard_Page::check_valid(TQ_WXTEXTEVENT&) {
tqslTrace("ExtWizard_Page::check_valid");
wxWindow *but = GetParent()->FindWindow(wxID_FORWARD);
if (but != NULL)
but->Enable(validate() == NULL);
}
void
ExtWizard_Page::AdjustPage(wxBoxSizer *sizer, const wxString& helpfile) {
tqslTrace("ExtWizard_Page::AdjustPage");
_helpfile = helpfile;
if (_helpfile != wxT("") && _parent->HaveHelp()) {
// Space filler
sizer->Add(new wxStaticText(this, -1, wxT("")), 1, 0, 10);
sizer->Add(new wxButton(this, EW_HELP_BUT, wxT("Help")), 0, wxALL, 10);
}
SetAutoLayout(TRUE);
SetSizer(sizer);
sizer->Fit(this);
sizer->SetSizeHints(this);
_parent->ReportSize(sizer->CalcMin());
}
|