Added SetSheetStyle to property sheet dialog to allow specification
[wxWidgets.git] / src / generic / propdlg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/propdlg.cpp
3 // Purpose: wxPropertySheetDialog
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 2005-03-12
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
14
15 #ifdef __BORLANDC__
16 #pragma hdrstop
17 #endif
18
19 #include "wx/defs.h"
20
21 #if wxUSE_BOOKCTRL
22
23 #ifndef WX_PRECOMP
24 #include "wx/button.h"
25 #include "wx/sizer.h"
26 #include "wx/intl.h"
27 #include "wx/log.h"
28 #include "wx/msgdlg.h"
29 #endif
30
31 #include "wx/bookctrl.h"
32
33 #if wxUSE_NOTEBOOK
34 #include "wx/notebook.h"
35 #endif
36 #if wxUSE_CHOICEBOOK
37 #include "wx/choicebk.h"
38 #endif
39 #if wxUSE_TOOLBOOK
40 #include "wx/toolbook.h"
41 #endif
42 #if wxUSE_LISTBOOK
43 #include "wx/listbook.h"
44 #endif
45
46 #include "wx/generic/propdlg.h"
47 #include "wx/sysopt.h"
48
49 //-----------------------------------------------------------------------------
50 // wxPropertySheetDialog
51 //-----------------------------------------------------------------------------
52
53 IMPLEMENT_DYNAMIC_CLASS(wxPropertySheetDialog, wxDialog)
54
55 BEGIN_EVENT_TABLE(wxPropertySheetDialog, wxDialog)
56 EVT_ACTIVATE(wxPropertySheetDialog::OnActivate)
57 EVT_IDLE(wxPropertySheetDialog::OnIdle)
58 END_EVENT_TABLE()
59
60 bool wxPropertySheetDialog::Create(wxWindow* parent, wxWindowID id, const wxString& title,
61 const wxPoint& pos, const wxSize& sz, long style,
62 const wxString& name)
63 {
64 if (!wxDialog::Create(parent, id, title, pos, sz, style|wxCLIP_CHILDREN, name))
65 return false;
66
67 wxBoxSizer *topSizer = new wxBoxSizer( wxVERTICAL );
68 SetSizer(topSizer);
69
70 // This gives more space around the edges
71 m_innerSizer = new wxBoxSizer( wxVERTICAL );
72
73 int extraSpace = 2;
74 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
75 extraSpace=0;
76 #endif
77 topSizer->Add(m_innerSizer, 1, wxGROW|wxALL, extraSpace);
78
79 m_bookCtrl = CreateBookCtrl();
80 AddBookCtrl(m_innerSizer);
81
82 return true;
83 }
84
85 void wxPropertySheetDialog::Init()
86 {
87 m_sheetStyle = wxPROPSHEET_DEFAULT;
88 m_innerSizer = NULL;
89 m_bookCtrl = NULL;
90 }
91
92 // Layout the dialog, to be called after pages have been created
93 void wxPropertySheetDialog::LayoutDialog(int centreFlags)
94 {
95 #if !defined(__SMARTPHONE__) && !defined(__POCKETPC__)
96 GetSizer()->Fit(this);
97 GetSizer()->SetSizeHints(this);
98 if (centreFlags)
99 Centre(centreFlags);
100 #endif
101 #if defined(__SMARTPHONE__)
102 if (m_bookCtrl)
103 m_bookCtrl->SetFocus();
104 #endif
105 }
106
107 // Creates the buttons, if any
108 void wxPropertySheetDialog::CreateButtons(int flags)
109 {
110 #ifdef __POCKETPC__
111 // keep system option status
112 const wxChar *optionName = wxT("wince.dialog.real-ok-cancel");
113 const int status = wxSystemOptions::GetOptionInt(optionName);
114 wxSystemOptions::SetOption(optionName,0);
115 #endif
116
117 wxSizer *buttonSizer = CreateButtonSizer( flags & ButtonSizerFlags );
118 if(buttonSizer->GetChildren().GetCount() > 0 )
119 {
120 m_innerSizer->Add( buttonSizer, 0, wxGROW|wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM|wxLEFT|wxRIGHT, 2);
121 m_innerSizer->AddSpacer(2);
122 }
123 else
124 {
125 delete buttonSizer;
126 }
127
128 #ifdef __POCKETPC__
129 // restore system option
130 wxSystemOptions::SetOption(optionName,status);
131 #endif
132 }
133
134 // Creates the book control
135 wxBookCtrlBase* wxPropertySheetDialog::CreateBookCtrl()
136 {
137 int style = wxCLIP_CHILDREN;
138 #if defined(__POCKETPC__) && wxUSE_NOTEBOOK
139 style |= wxBK_BOTTOM|wxNB_FLAT;
140 #else
141 style |= wxBK_DEFAULT;
142 #endif
143
144 wxBookCtrlBase* bookCtrl = NULL;
145
146 #if wxUSE_NOTEBOOK
147 if (GetSheetStyle() & wxPROPSHEET_NOTEBOOK)
148 bookCtrl = new wxNotebook(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style );
149 #endif
150 #if wxUSE_CHOICEBOOK
151 if (GetSheetStyle() & wxPROPSHEET_CHOICEBOOK)
152 bookCtrl = new wxChoicebook(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style );
153 #endif
154 #if wxUSE_TOOLBOOK
155 if (GetSheetStyle() & wxPROPSHEET_TOOLBOOK)
156 bookCtrl = new wxToolbook(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style );
157 #endif
158 #if wxUSE_LISTBOOK
159 if (GetSheetStyle() & wxPROPSHEET_LISTBOOK)
160 bookCtrl = new wxListbook(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style );
161 #endif
162 if (!bookCtrl)
163 bookCtrl = new wxBookCtrl(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style );
164
165 if (GetSheetStyle() & wxPROPSHEET_SHRINKTOFIT)
166 bookCtrl->SetShrinkMode(true);
167
168 return bookCtrl;
169 }
170
171 // Adds the book control to the inner sizer.
172 void wxPropertySheetDialog::AddBookCtrl(wxSizer* sizer)
173 {
174 #if defined(__POCKETPC__) && wxUSE_NOTEBOOK
175 // The book control has to be sized larger than the dialog because of a border bug
176 // in WinCE
177 int borderSize = -2;
178 sizer->Add( m_bookCtrl, 1, wxGROW|wxALIGN_CENTER_VERTICAL|wxLEFT|wxTOP|wxRIGHT, borderSize );
179 #else
180 sizer->Add( m_bookCtrl, 1, wxGROW|wxALIGN_CENTER_VERTICAL|wxALL, 5 );
181 #endif
182 }
183
184 void wxPropertySheetDialog::OnActivate(wxActivateEvent& event)
185 {
186 #if defined(__SMARTPHONE__)
187 // Attempt to focus the choice control: not yet working, but might
188 // be a step in the right direction. OnActivate overrides the default
189 // handler in toplevel.cpp that sets the focus for the first child of
190 // of the dialog (the choicebook).
191 if (event.GetActive())
192 {
193 wxChoicebook* choiceBook = wxDynamicCast(GetBookCtrl(), wxChoicebook);
194 if (choiceBook)
195 choiceBook->SetFocus();
196 }
197 else
198 #endif
199 event.Skip();
200 }
201
202 // Resize dialog if necessary
203 void wxPropertySheetDialog::OnIdle(wxIdleEvent& event)
204 {
205 event.Skip();
206
207 if ((GetSheetStyle() & wxPROPSHEET_SHRINKTOFIT) && GetBookCtrl())
208 {
209 int sel = GetBookCtrl()->GetSelection();
210 if (sel != -1 && sel != m_selectedPage)
211 {
212 GetBookCtrl()->InvalidateBestSize();
213 InvalidateBestSize();
214 SetSizeHints(-1, -1, -1, -1);
215
216 m_selectedPage = sel;
217 LayoutDialog(0);
218 }
219 }
220 }
221
222 #endif // wxUSE_BOOKCTRL
223