wizards not using sizers for the page layout now work again

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39373 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-05-28 14:19:18 +00:00
parent 2faa0a64e1
commit 0a089246e7
3 changed files with 152 additions and 156 deletions

View File

@@ -70,7 +70,8 @@ public:
virtual void DoCreateControls(); virtual void DoCreateControls();
protected: protected:
void FinishLayout(); // for compatibility only, doesn't do anything any more
void FinishLayout() { }
private: private:
// was the dialog really created? // was the dialog really created?
@@ -88,8 +89,6 @@ private:
void AddBackNextPair(wxBoxSizer *buttonRow); void AddBackNextPair(wxBoxSizer *buttonRow);
void AddButtonRow(wxBoxSizer *mainColumn); void AddButtonRow(wxBoxSizer *mainColumn);
wxSize GetManualPageSize() const;
// the page size requested by user // the page size requested by user
wxSize m_sizePage; wxSize m_sizePage;
@@ -105,8 +104,6 @@ private:
*m_btnNext; // the "Next>" or "Finish" button *m_btnNext; // the "Next>" or "Finish" button
wxStaticBitmap *m_statbmp; // the control for the bitmap wxStaticBitmap *m_statbmp; // the control for the bitmap
// Whether user called SetBorder()
bool m_calledSetBorder;
// Border around page area sizer requested using SetBorder() // Border around page area sizer requested using SetBorder()
int m_border; int m_border;
@@ -116,6 +113,9 @@ private:
// Whether was modal (modeless has to be destroyed on finish or cancel) // Whether was modal (modeless has to be destroyed on finish or cancel)
bool m_wasModal; bool m_wasModal;
// True if pages are laid out using the sizer
bool m_usingSizer;
// Page area sizer will be inserted here with padding // Page area sizer will be inserted here with padding
wxBoxSizer *m_sizerBmpAndPage; wxBoxSizer *m_sizerBmpAndPage;

View File

@@ -51,6 +51,7 @@ enum
{ {
Wizard_Quit = wxID_EXIT, Wizard_Quit = wxID_EXIT,
Wizard_RunModal = wxID_HIGHEST, Wizard_RunModal = wxID_HIGHEST,
Wizard_RunNoSizer,
Wizard_RunModeless, Wizard_RunModeless,
Wizard_About = wxID_ABOUT Wizard_About = wxID_ABOUT
}; };
@@ -77,6 +78,8 @@ public:
void OnQuit(wxCommandEvent& event); void OnQuit(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event); void OnAbout(wxCommandEvent& event);
void OnRunWizard(wxCommandEvent& event); void OnRunWizard(wxCommandEvent& event);
void OnRunWizardNoSizer(wxCommandEvent& event);
void OnRunWizardModeless(wxCommandEvent& event);
void OnWizardCancel(wxWizardEvent& event); void OnWizardCancel(wxWizardEvent& event);
void OnWizardFinished(wxWizardEvent& event); void OnWizardFinished(wxWizardEvent& event);
@@ -92,8 +95,9 @@ private:
class MyWizard : public wxWizard class MyWizard : public wxWizard
{ {
public: public:
MyWizard(wxFrame *frame); MyWizard(wxFrame *frame, bool useSizer = true);
void RunIt(bool modal);
wxWizardPage *GetFirstPage() const { return m_page1; }
private: private:
wxWizardPageSimple *m_page1; wxWizardPageSimple *m_page1;
@@ -327,7 +331,8 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame)
EVT_MENU(Wizard_Quit, MyFrame::OnQuit) EVT_MENU(Wizard_Quit, MyFrame::OnQuit)
EVT_MENU(Wizard_About, MyFrame::OnAbout) EVT_MENU(Wizard_About, MyFrame::OnAbout)
EVT_MENU(Wizard_RunModal, MyFrame::OnRunWizard) EVT_MENU(Wizard_RunModal, MyFrame::OnRunWizard)
EVT_MENU(Wizard_RunModeless, MyFrame::OnRunWizard) EVT_MENU(Wizard_RunNoSizer, MyFrame::OnRunWizardNoSizer)
EVT_MENU(Wizard_RunModeless, MyFrame::OnRunWizardModeless)
EVT_WIZARD_CANCEL(wxID_ANY, MyFrame::OnWizardCancel) EVT_WIZARD_CANCEL(wxID_ANY, MyFrame::OnWizardCancel)
EVT_WIZARD_FINISHED(wxID_ANY, MyFrame::OnWizardFinished) EVT_WIZARD_FINISHED(wxID_ANY, MyFrame::OnWizardFinished)
@@ -361,7 +366,7 @@ bool MyApp::OnInit()
// MyWizard // MyWizard
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
MyWizard::MyWizard(wxFrame *frame) MyWizard::MyWizard(wxFrame *frame, bool useSizer)
: wxWizard(frame,wxID_ANY,_T("Absolutely Useless Wizard"), : wxWizard(frame,wxID_ANY,_T("Absolutely Useless Wizard"),
wxBitmap(wiztest_xpm),wxDefaultPosition, wxBitmap(wiztest_xpm),wxDefaultPosition,
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER) wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
@@ -390,27 +395,11 @@ MyWizard::MyWizard(wxFrame *frame)
m_page1->SetNext(page2); m_page1->SetNext(page2);
page3->SetPrev(page2); page3->SetPrev(page2);
if ( useSizer )
{
// allow the wizard to size itself around the pages // allow the wizard to size itself around the pages
GetPageAreaSizer()->Add(m_page1); GetPageAreaSizer()->Add(m_page1);
} }
void MyWizard::RunIt(bool modal)
{
if ( modal )
{
if ( RunWizard(m_page1) )
{
// Success
}
Destroy();
}
else
{
FinishLayout();
ShowPage(m_page1);
Show(true);
}
} }
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@@ -423,7 +412,8 @@ MyFrame::MyFrame(const wxString& title)
{ {
wxMenu *menuFile = new wxMenu; wxMenu *menuFile = new wxMenu;
menuFile->Append(Wizard_RunModal, _T("&Run wizard modal...\tCtrl-R")); menuFile->Append(Wizard_RunModal, _T("&Run wizard modal...\tCtrl-R"));
menuFile->Append(Wizard_RunModeless, _T("&Run wizard modeless...")); menuFile->Append(Wizard_RunNoSizer, _T("Run wizard &without sizer..."));
menuFile->Append(Wizard_RunModeless, _T("Run wizard &modeless..."));
menuFile->AppendSeparator(); menuFile->AppendSeparator();
menuFile->Append(Wizard_Quit, _T("E&xit\tAlt-X"), _T("Quit this program")); menuFile->Append(Wizard_Quit, _T("E&xit\tAlt-X"), _T("Quit this program"));
@@ -457,11 +447,25 @@ void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
_T("About wxWizard sample"), wxOK | wxICON_INFORMATION, this); _T("About wxWizard sample"), wxOK | wxICON_INFORMATION, this);
} }
void MyFrame::OnRunWizard(wxCommandEvent& event) void MyFrame::OnRunWizard(wxCommandEvent& WXUNUSED(event))
{
MyWizard wizard(this);
wizard.RunWizard(wizard.GetFirstPage());
}
void MyFrame::OnRunWizardNoSizer(wxCommandEvent& WXUNUSED(event))
{
MyWizard wizard(this, false);
wizard.RunWizard(wizard.GetFirstPage());
}
void MyFrame::OnRunWizardModeless(wxCommandEvent& WXUNUSED(event))
{ {
MyWizard *wizard = new MyWizard(this); MyWizard *wizard = new MyWizard(this);
wizard->ShowPage(wizard->GetFirstPage());
wizard->RunIt( event.GetId() == Wizard_RunModal ); wizard->Show(true);
} }
void MyFrame::OnWizardFinished(wxWizardEvent& WXUNUSED(event)) void MyFrame::OnWizardFinished(wxWizardEvent& WXUNUSED(event))

View File

@@ -72,7 +72,6 @@ private:
wxSize SiblingSize(wxSizerItem *child); wxSize SiblingSize(wxSizerItem *child);
wxWizard *m_owner; wxWizard *m_owner;
bool m_childSizeValid;
wxSize m_childSize; wxSize m_childSize;
}; };
@@ -178,13 +177,15 @@ wxWizardPage *wxWizardPageSimple::GetNext() const
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
wxWizardSizer::wxWizardSizer(wxWizard *owner) wxWizardSizer::wxWizardSizer(wxWizard *owner)
: m_owner(owner) : m_owner(owner),
m_childSize(wxDefaultSize)
{ {
m_childSizeValid = false;
} }
wxSizerItem *wxWizardSizer::Insert(size_t index, wxSizerItem *item) wxSizerItem *wxWizardSizer::Insert(size_t index, wxSizerItem *item)
{ {
m_owner->m_usingSizer = true;
if ( item->IsWindow() ) if ( item->IsWindow() )
{ {
// we must pretend that the window is shown as otherwise it wouldn't be // we must pretend that the window is shown as otherwise it wouldn't be
@@ -214,7 +215,7 @@ void wxWizardSizer::RecalcSizes()
// it should be called whenever it changes (wxWizard::ShowPage) // it should be called whenever it changes (wxWizard::ShowPage)
if ( m_owner->m_page ) if ( m_owner->m_page )
{ {
m_owner->m_page->SetSize(m_position.x, m_position.y, m_size.x, m_size.y); m_owner->m_page->SetSize(wxRect(m_position, m_size));
} }
} }
@@ -226,14 +227,14 @@ wxSize wxWizardSizer::CalcMin()
wxSize wxWizardSizer::GetMaxChildSize() wxSize wxWizardSizer::GetMaxChildSize()
{ {
#if !defined(__WXDEBUG__) #if !defined(__WXDEBUG__)
if ( m_childSizeValid ) if ( m_childSize.IsFullySpecified() )
return m_childSize; return m_childSize;
#endif #endif
wxSize maxOfMin; wxSize maxOfMin;
wxSizerItemList::compatibility_iterator childNode;
for(childNode = m_children.GetFirst(); childNode; for ( wxSizerItemList::compatibility_iterator childNode = m_children.GetFirst();
childNode;
childNode = childNode->GetNext() ) childNode = childNode->GetNext() )
{ {
wxSizerItem *child = childNode->GetData(); wxSizerItem *child = childNode->GetData();
@@ -242,7 +243,7 @@ wxSize wxWizardSizer::GetMaxChildSize()
} }
#ifdef __WXDEBUG__ #ifdef __WXDEBUG__
if ( m_childSizeValid && m_childSize != maxOfMin ) if ( m_childSize.IsFullySpecified() && m_childSize != maxOfMin )
{ {
wxFAIL_MSG( _T("Size changed in wxWizard::GetPageAreaSizer()") wxFAIL_MSG( _T("Size changed in wxWizard::GetPageAreaSizer()")
_T("after RunWizard().\n") _T("after RunWizard().\n")
@@ -255,7 +256,6 @@ wxSize wxWizardSizer::GetMaxChildSize()
if ( m_owner->m_started ) if ( m_owner->m_started )
{ {
m_childSizeValid = true;
m_childSize = maxOfMin; m_childSize = maxOfMin;
} }
@@ -264,10 +264,7 @@ wxSize wxWizardSizer::GetMaxChildSize()
int wxWizardSizer::GetBorder() const int wxWizardSizer::GetBorder() const
{ {
if ( m_owner->m_calledSetBorder )
return m_owner->m_border; return m_owner->m_border;
return m_children.IsEmpty() ? 5 : 0;
} }
wxSize wxWizardSizer::SiblingSize(wxSizerItem *child) wxSize wxWizardSizer::SiblingSize(wxSizerItem *child)
@@ -306,10 +303,10 @@ void wxWizard::Init()
m_statbmp = NULL; m_statbmp = NULL;
m_sizerBmpAndPage = NULL; m_sizerBmpAndPage = NULL;
m_sizerPage = NULL; m_sizerPage = NULL;
m_calledSetBorder = false; m_border = 5;
m_border = 0;
m_started = false; m_started = false;
m_wasModal = false; m_wasModal = false;
m_usingSizer = false;
} }
bool wxWizard::Create(wxWindow *parent, bool wxWizard::Create(wxWindow *parent,
@@ -360,7 +357,7 @@ void wxWizard::AddBitmapRow(wxBoxSizer *mainColumn)
} }
#endif #endif
// Added to m_sizerBmpAndPage in FinishLayout // Added to m_sizerBmpAndPage later
m_sizerPage = new wxWizardSizer(this); m_sizerPage = new wxWizardSizer(this);
} }
@@ -511,8 +508,6 @@ void wxWizard::DoCreateControls()
AddButtonRow(mainColumn); AddButtonRow(mainColumn);
// wxWindow::SetSizer should be followed by wxWindow::Fit, but
// this is done in FinishLayout anyway so why duplicate it
SetSizer(windowSizer); SetSizer(windowSizer);
} }
@@ -522,32 +517,6 @@ void wxWizard::SetPageSize(const wxSize& size)
m_sizePage = size; m_sizePage = size;
} }
void wxWizard::FinishLayout()
{
bool isPda = (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA);
// Set to enable wxWizardSizer::GetMaxChildSize
m_started = true;
m_sizerBmpAndPage->Add(
m_sizerPage,
1, // Horizontal stretching
wxEXPAND | wxALL, // Vertically stretchable
m_sizerPage->GetBorder()
);
if (!isPda)
{
GetSizer()->SetSizeHints(this);
if ( m_posWizard == wxDefaultPosition )
CentreOnScreen();
}
// now that our layout is computed correctly, hide the pages artificially
// shown in wxWizardSizer::Insert() back again
m_sizerPage->HidePages();
}
void wxWizard::FitToPage(const wxWizardPage *page) void wxWizard::FitToPage(const wxWizardPage *page)
{ {
wxCHECK_RET(!m_started, wxT("wxWizard::FitToPage after RunWizard")); wxCHECK_RET(!m_started, wxT("wxWizard::FitToPage after RunWizard"));
@@ -566,26 +535,35 @@ bool wxWizard::ShowPage(wxWizardPage *page, bool goingForward)
{ {
wxASSERT_MSG( page != m_page, wxT("this is useless") ); wxASSERT_MSG( page != m_page, wxT("this is useless") );
wxSizerFlags flags(1);
flags.Border(wxALL, m_border).Expand();
if ( !m_started )
{
if ( m_usingSizer )
{
m_sizerBmpAndPage->Add(m_sizerPage, flags);
// now that our layout is computed correctly, hide the pages
// artificially shown in wxWizardSizer::Insert() back again
m_sizerPage->HidePages();
}
}
// we'll use this to decide whether we have to change the label of this // we'll use this to decide whether we have to change the label of this
// button or not (initially the label is "Next") // button or not (initially the label is "Next")
bool btnLabelWasNext = true; bool btnLabelWasNext = true;
// Modified 10-20-2001 Robert Cavanaugh. // remember the old bitmap (if any) to compare with the new one later
// Fixed bug for displaying a new bitmap wxBitmap bmpPrev;
// in each *consecutive* page
// flag to indicate if this page uses a new bitmap
bool bmpIsDefault = true;
// use these labels to determine if we need to change the bitmap
// for this page
wxBitmap bmpPrev, bmpCur;
// check for previous page // check for previous page
if ( m_page ) if ( m_page )
{ {
// send the event to the old page // send the event to the old page
wxWizardEvent event(wxEVT_WIZARD_PAGE_CHANGING, GetId(), goingForward, m_page); wxWizardEvent event(wxEVT_WIZARD_PAGE_CHANGING, GetId(),
goingForward, m_page);
if ( m_page->GetEventHandler()->ProcessEvent(event) && if ( m_page->GetEventHandler()->ProcessEvent(event) &&
!event.IsAllowed() ) !event.IsAllowed() )
{ {
@@ -597,11 +575,10 @@ bool wxWizard::ShowPage(wxWizardPage *page, bool goingForward)
btnLabelWasNext = HasNextPage(m_page); btnLabelWasNext = HasNextPage(m_page);
// Get the bitmap of the previous page (if it exists)
if ( m_page->GetBitmap().Ok() )
{
bmpPrev = m_page->GetBitmap(); bmpPrev = m_page->GetBitmap();
}
if ( !m_usingSizer )
m_sizerBmpAndPage->Detach(m_page);
} }
// set the new page // set the new page
@@ -632,32 +609,33 @@ bool wxWizard::ShowPage(wxWizardPage *page, bool goingForward)
// position and show the new page // position and show the new page
(void)m_page->TransferDataToWindow(); (void)m_page->TransferDataToWindow();
if ( m_usingSizer )
{
// wxWizardSizer::RecalcSizes wants to be called when m_page changes // wxWizardSizer::RecalcSizes wants to be called when m_page changes
m_sizerPage->RecalcSizes(); m_sizerPage->RecalcSizes();
}
// check if bitmap needs to be updated else // pages are not managed by the sizer
// update default flag as well
if ( m_page->GetBitmap().Ok() )
{ {
bmpCur = m_page->GetBitmap(); m_sizerBmpAndPage->Add(m_page, flags);
bmpIsDefault = false; m_sizerBmpAndPage->SetItemMinSize(m_page, GetPageSize());
} }
#if wxUSE_STATBMP #if wxUSE_STATBMP
// change the bitmap if: // update the bitmap if:it changed
// 1) a default bitmap was selected in constructor if ( m_statbmp )
// 2) this page was constructed with a bitmap
// 3) this bitmap is not the previous bitmap
if ( m_statbmp && (bmpCur != bmpPrev) )
{ {
wxBitmap bmp; wxBitmap bmp = m_page->GetBitmap();
if ( bmpIsDefault ) if ( !bmp.Ok() )
bmp = m_bitmap; bmp = m_bitmap;
else
bmp = m_page->GetBitmap(); if ( !bmpPrev.Ok() )
bmpPrev = m_bitmap;
if ( bmp != bmpPrev )
m_statbmp->SetBitmap(bmp); m_statbmp->SetBitmap(bmp);
} }
#endif #endif // wxUSE_STATBMP
// and update the buttons state // and update the buttons state
m_btnPrev->Enable(HasPrevPage(m_page)); m_btnPrev->Enable(HasPrevPage(m_page));
@@ -665,15 +643,13 @@ bool wxWizard::ShowPage(wxWizardPage *page, bool goingForward)
bool hasNext = HasNextPage(m_page); bool hasNext = HasNextPage(m_page);
if ( btnLabelWasNext != hasNext ) if ( btnLabelWasNext != hasNext )
{ {
// need to update m_btnNext->SetLabel(hasNext ? _("&Next >") : _("&Finish"));
if (btnLabelWasNext)
m_btnNext->SetLabel(_("&Finish"));
else
m_btnNext->SetLabel(_("&Next >"));
} }
m_btnNext->SetDefault();
// nothing to do: the label was already correct // nothing to do: the label was already correct
m_btnNext->SetDefault();
// send the change event to the new page now // send the change event to the new page now
wxWizardEvent event(wxEVT_WIZARD_PAGE_CHANGED, GetId(), goingForward, m_page); wxWizardEvent event(wxEVT_WIZARD_PAGE_CHANGED, GetId(), goingForward, m_page);
(void)m_page->GetEventHandler()->ProcessEvent(event); (void)m_page->GetEventHandler()->ProcessEvent(event);
@@ -682,6 +658,21 @@ bool wxWizard::ShowPage(wxWizardPage *page, bool goingForward)
m_page->Show(); m_page->Show();
m_page->SetFocus(); m_page->SetFocus();
if ( !m_usingSizer )
m_sizerBmpAndPage->Layout();
if ( !m_started )
{
m_started = true;
if ( wxSystemSettings::GetScreenType() > wxSYS_SCREEN_PDA )
{
GetSizer()->SetSizeHints(this);
if ( m_posWizard == wxDefaultPosition )
CentreOnScreen();
}
}
return true; return true;
} }
@@ -689,10 +680,6 @@ bool wxWizard::RunWizard(wxWizardPage *firstPage)
{ {
wxCHECK_MSG( firstPage, false, wxT("can't run empty wizard") ); wxCHECK_MSG( firstPage, false, wxT("can't run empty wizard") );
// This cannot be done sooner, because user can change layout options
// up to this moment
FinishLayout();
// can't return false here because there is no old page // can't return false here because there is no old page
(void)ShowPage(firstPage, true /* forward */); (void)ShowPage(firstPage, true /* forward */);
@@ -708,8 +695,39 @@ wxWizardPage *wxWizard::GetCurrentPage() const
wxSize wxWizard::GetPageSize() const wxSize wxWizard::GetPageSize() const
{ {
wxSize pageSize(GetManualPageSize()); // default width and height of the page
int DEFAULT_PAGE_WIDTH,
DEFAULT_PAGE_HEIGHT;
if ( wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA )
{
// Make the default page size small enough to fit on screen
DEFAULT_PAGE_WIDTH = wxSystemSettings::GetMetric(wxSYS_SCREEN_X) / 2;
DEFAULT_PAGE_HEIGHT = wxSystemSettings::GetMetric(wxSYS_SCREEN_Y) / 2;
}
else // !PDA
{
DEFAULT_PAGE_WIDTH =
DEFAULT_PAGE_HEIGHT = 270;
}
// start with default minimal size
wxSize pageSize(DEFAULT_PAGE_WIDTH, DEFAULT_PAGE_HEIGHT);
// make the page at least as big as specified by user
pageSize.IncTo(m_sizePage);
if ( m_statbmp )
{
// make the page at least as tall as the bitmap
pageSize.IncTo(wxSize(0, m_bitmap.GetHeight()));
}
if ( m_usingSizer )
{
// make it big enough to contain all pages added to the sizer
pageSize.IncTo(m_sizerPage->GetMaxChildSize()); pageSize.IncTo(m_sizerPage->GetMaxChildSize());
}
return pageSize; return pageSize;
} }
@@ -722,35 +740,9 @@ void wxWizard::SetBorder(int border)
{ {
wxCHECK_RET(!m_started, wxT("wxWizard::SetBorder after RunWizard")); wxCHECK_RET(!m_started, wxT("wxWizard::SetBorder after RunWizard"));
m_calledSetBorder = true;
m_border = border; m_border = border;
} }
wxSize wxWizard::GetManualPageSize() const
{
// default width and height of the page
int DEFAULT_PAGE_WIDTH = 270;
int DEFAULT_PAGE_HEIGHT = 270;
bool isPda = (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA);
if (isPda)
{
// Make the default page size small enough to fit on screen
DEFAULT_PAGE_WIDTH = wxSystemSettings::GetMetric(wxSYS_SCREEN_X) / 2;
DEFAULT_PAGE_HEIGHT = wxSystemSettings::GetMetric(wxSYS_SCREEN_Y) / 2;
}
wxSize totalPageSize(DEFAULT_PAGE_WIDTH,DEFAULT_PAGE_HEIGHT);
totalPageSize.IncTo(m_sizePage);
if ( m_statbmp )
{
totalPageSize.IncTo(wxSize(0, m_bitmap.GetHeight()));
}
return totalPageSize;
}
void wxWizard::OnCancel(wxCommandEvent& WXUNUSED(eventUnused)) void wxWizard::OnCancel(wxCommandEvent& WXUNUSED(eventUnused))
{ {
// this function probably can never be called when we don't have an active // this function probably can never be called when we don't have an active