X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9e7efd538e888419f278d621f39c8776d28f3b18..ea8ca011a351c6aaa4009bedbf0cec19a7c57d98:/src/generic/propdlg.cpp diff --git a/src/generic/propdlg.cpp b/src/generic/propdlg.cpp index abfc87723d..352c00b54b 100644 --- a/src/generic/propdlg.cpp +++ b/src/generic/propdlg.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: propdlg.cpp +// Name: src/generic/propdlg.cpp // Purpose: wxPropertySheetDialog // Author: Julian Smart // Modified by: @@ -9,10 +9,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "propdlg.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -22,6 +18,8 @@ #include "wx/defs.h" +#if wxUSE_BOOKCTRL + #ifndef WX_PRECOMP #include "wx/button.h" #include "wx/sizer.h" @@ -43,13 +41,13 @@ BEGIN_EVENT_TABLE(wxPropertySheetDialog, wxDialog) EVT_ACTIVATE(wxPropertySheetDialog::OnActivate) END_EVENT_TABLE() -bool wxPropertySheetDialog::Create(wxWindow* parent, wxWindowID id, const wxString& title, +bool wxPropertySheetDialog::Create(wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& sz, long style, const wxString& name) { - if (!wxDialog::Create(parent, id, title, pos, sz, style, name)) + if (!wxDialog::Create(parent, id, title, pos, sz, style|wxCLIP_CHILDREN, name)) return false; - + wxBoxSizer *topSizer = new wxBoxSizer( wxVERTICAL ); SetSizer(topSizer); @@ -110,11 +108,11 @@ void wxPropertySheetDialog::CreateButtons(int flags) // Creates the book control wxBookCtrlBase* wxPropertySheetDialog::CreateBookCtrl() { - int style = 0; + int style = wxCLIP_CHILDREN; #if defined(__POCKETPC__) && wxUSE_NOTEBOOK - style |= wxNB_BOTTOM|wxNB_FLAT; + style |= wxBK_BOTTOM|wxNB_FLAT; #else - style |= wxBC_DEFAULT; + style |= wxBK_DEFAULT; #endif return new wxBookCtrl(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style ); } @@ -141,7 +139,7 @@ void wxPropertySheetDialog::OnActivate(wxActivateEvent& event) // of the dialog (the choicebook). if (event.GetActive()) { - wxChoicebook* choiceBook = wxDynamicCast(GetBookCtrl(), wxChoicebook); + wxChoicebook* choiceBook = wxDynamicCast(GetBookCtrl(), wxChoicebook); if (choiceBook) choiceBook->SetFocus(); } @@ -150,3 +148,4 @@ void wxPropertySheetDialog::OnActivate(wxActivateEvent& event) event.Skip(); } +#endif // wxUSE_BOOKCTRL