]> git.saurik.com Git - wxWidgets.git/blame - src/msw/notebook.cpp
Added (untested) support for sub-locales.
[wxWidgets.git] / src / msw / notebook.cpp
CommitLineData
88310e2e
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: msw/notebook.cpp
3// Purpose: implementation of wxNotebook
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 11.06.98
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9// Licence: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
11
88310e2e 12#ifdef __GNUG__
a3b46648 13#pragma implementation "notebook.h"
88310e2e
VZ
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
a3b46648 20#pragma hdrstop
88310e2e
VZ
21#endif
22
23// wxWindows
24#ifndef WX_PRECOMP
25 #include <wx/string.h>
26#endif // WX_PRECOMP
27
28#include <wx/log.h>
29#include <wx/imaglist.h>
2432b92d
JS
30#include <wx/event.h>
31#include <wx/control.h>
88310e2e
VZ
32#include <wx/notebook.h>
33
34#include <wx/msw/private.h>
35
36// Windows standard headers
37#ifndef __WIN95__
2432b92d 38 #error "wxNotebook is only supported Windows 95 and above"
88310e2e
VZ
39#endif //Win95
40
aaab7c01
VZ
41#include <windowsx.h> // for SetWindowFont
42
57c208c5 43#ifndef __TWIN32__
88310e2e
VZ
44#ifdef __GNUWIN32__
45 #include "wx/msw/gnuwin32/extra.h"
57c208c5
JS
46#endif
47#endif
48
49#if !defined(__GNUWIN32__) || defined(__TWIN32__)
88310e2e
VZ
50 #include <commctrl.h>
51#endif
52
53// ----------------------------------------------------------------------------
54// macros
55// ----------------------------------------------------------------------------
56
57// check that the page index is valid
58#define IS_VALID_PAGE(nPage) (((nPage) >= 0) && ((nPage) < GetPageCount()))
59
60// hide the ugly cast
61#define m_hwnd (HWND)GetHWND()
62
63// ----------------------------------------------------------------------------
64// event table
65// ----------------------------------------------------------------------------
66
67#if !USE_SHARED_LIBRARIES
68 BEGIN_EVENT_TABLE(wxNotebook, wxControl)
69 EVT_NOTEBOOK_PAGE_CHANGED(-1, wxNotebook::OnSelChange)
70
71 EVT_SIZE(wxNotebook::OnSize)
a7e594b2 72 EVT_ERASE_BACKGROUND(wxNotebook::OnEraseBackground)
88310e2e
VZ
73 EVT_SET_FOCUS(wxNotebook::OnSetFocus)
74 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey)
75 END_EVENT_TABLE()
76
77 IMPLEMENT_DYNAMIC_CLASS(wxNotebook, wxControl)
92976ab6 78 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent, wxNotifyEvent)
88310e2e
VZ
79#endif
80
81// ============================================================================
82// implementation
83// ============================================================================
84
85// ----------------------------------------------------------------------------
86// wxNotebook construction
87// ----------------------------------------------------------------------------
88
89// common part of all ctors
90void wxNotebook::Init()
91{
92 m_pImageList = NULL;
93 m_nSelection = -1;
94}
95
96// default for dynamic class
97wxNotebook::wxNotebook()
98{
99 Init();
100}
101
102// the same arguments as for wxControl
103wxNotebook::wxNotebook(wxWindow *parent,
8b9518ee 104 wxWindowID id,
88310e2e
VZ
105 const wxPoint& pos,
106 const wxSize& size,
8b9518ee 107 long style,
88310e2e
VZ
108 const wxString& name)
109{
110 Init();
111
112 Create(parent, id, pos, size, style, name);
113}
114
115// Create() function
116bool wxNotebook::Create(wxWindow *parent,
8b9518ee 117 wxWindowID id,
88310e2e
VZ
118 const wxPoint& pos,
119 const wxSize& size,
8b9518ee 120 long style,
88310e2e
VZ
121 const wxString& name)
122{
123 // base init
124 SetName(name);
125 SetParent(parent);
126
127 m_windowId = id == -1 ? NewControlId() : id;
128
129 // colors and font
130 m_backgroundColour = wxColour(GetSysColor(COLOR_BTNFACE));
131 m_foregroundColour = *wxBLACK ;
132
88310e2e 133 // style
fd2daa68 134 m_windowStyle = style | wxTAB_TRAVERSAL;
88310e2e
VZ
135
136 long tabStyle = WS_CHILD | WS_VISIBLE | WS_TABSTOP | TCS_TABS;
137 if ( m_windowStyle & wxTC_MULTILINE )
138 tabStyle |= TCS_MULTILINE;
139 if ( m_windowStyle & wxBORDER )
140 tabStyle &= WS_BORDER;
141
142 // create the tab control.
143 m_hWnd = (WXHWND)CreateWindowEx
144 (
145 0, // extended style
146 WC_TABCONTROL, // class name for the tab control
147 "", // no caption
148 tabStyle, // style
149 pos.x, pos.y, size.x, size.y, // size and position
150 (HWND)parent->GetHWND(), // parent window
151 (HMENU)m_windowId, // child id
152 wxGetInstance(), // current instance
153 NULL // no class data
154 );
155
156 if ( m_hWnd == 0 ) {
157 wxLogSysError("Can't create the notebook control");
158 return FALSE;
159 }
160
27529614
JS
161 // Not all compilers recognise SetWindowFont
162// SetWindowFont((HWND)m_hwnd, ::GetStockObject(DEFAULT_GUI_FONT), FALSE);
163 ::SendMessage((HWND) m_hwnd, WM_SETFONT,
164 (WPARAM)::GetStockObject(DEFAULT_GUI_FONT),TRUE);
165
aaab7c01 166
88310e2e
VZ
167 if ( parent != NULL )
168 parent->AddChild(this);
169
170 SubclassWin(m_hWnd);
171
172 return TRUE;
173}
174
175// dtor
176wxNotebook::~wxNotebook()
177{
178}
179
180// ----------------------------------------------------------------------------
181// wxNotebook accessors
182// ----------------------------------------------------------------------------
183int wxNotebook::GetPageCount() const
184{
185 // consistency check
186 wxASSERT( (int)m_aPages.Count() == TabCtrl_GetItemCount(m_hwnd) );
187
188 return m_aPages.Count();
189}
190
191int wxNotebook::GetRowCount() const
192{
193 return TabCtrl_GetRowCount(m_hwnd);
194}
195
196int wxNotebook::SetSelection(int nPage)
197{
1c4a764c 198 wxCHECK_MSG( IS_VALID_PAGE(nPage), -1, "notebook page out of range" );
88310e2e
VZ
199
200 ChangePage(m_nSelection, nPage);
201
202 return TabCtrl_SetCurSel(m_hwnd, nPage);
203}
204
205void wxNotebook::AdvanceSelection(bool bForward)
206{
207 int nSel = GetSelection();
208 int nMax = GetPageCount() - 1;
209 if ( bForward )
210 SetSelection(nSel == nMax ? 0 : nSel + 1);
211 else
212 SetSelection(nSel == 0 ? nMax : nSel - 1);
213}
214
215bool wxNotebook::SetPageText(int nPage, const wxString& strText)
216{
1c4a764c 217 wxCHECK_MSG( IS_VALID_PAGE(nPage), FALSE, "notebook page out of range" );
88310e2e
VZ
218
219 TC_ITEM tcItem;
220 tcItem.mask = TCIF_TEXT;
221 tcItem.pszText = (char *)strText.c_str();
222
223 return TabCtrl_SetItem(m_hwnd, nPage, &tcItem) != 0;
224}
225
226wxString wxNotebook::GetPageText(int nPage) const
227{
1c4a764c 228 wxCHECK_MSG( IS_VALID_PAGE(nPage), "", "notebook page out of range" );
88310e2e
VZ
229
230 char buf[256];
231 TC_ITEM tcItem;
232 tcItem.mask = TCIF_TEXT;
233 tcItem.pszText = buf;
234 tcItem.cchTextMax = WXSIZEOF(buf);
235
236 wxString str;
237 if ( TabCtrl_GetItem(m_hwnd, nPage, &tcItem) )
238 str = tcItem.pszText;
239
240 return str;
241}
242
243int wxNotebook::GetPageImage(int nPage) const
244{
1c4a764c 245 wxCHECK_MSG( IS_VALID_PAGE(nPage), -1, "notebook page out of range" );
88310e2e
VZ
246
247 TC_ITEM tcItem;
248 tcItem.mask = TCIF_IMAGE;
249
250 return TabCtrl_GetItem(m_hwnd, nPage, &tcItem) ? tcItem.iImage : -1;
251}
252
253bool wxNotebook::SetPageImage(int nPage, int nImage)
254{
1c4a764c 255 wxCHECK_MSG( IS_VALID_PAGE(nPage), FALSE, "notebook page out of range" );
88310e2e
VZ
256
257 TC_ITEM tcItem;
258 tcItem.mask = TCIF_IMAGE;
259 tcItem.iImage = nImage;
260
261 return TabCtrl_SetItem(m_hwnd, nPage, &tcItem) != 0;
262}
263
264void wxNotebook::SetImageList(wxImageList* imageList)
265{
266 m_pImageList = imageList;
267 TabCtrl_SetImageList(m_hwnd, (HIMAGELIST)imageList->GetHIMAGELIST());
268}
269
270// ----------------------------------------------------------------------------
271// wxNotebook operations
272// ----------------------------------------------------------------------------
273
274// remove one page from the notebook
275bool wxNotebook::DeletePage(int nPage)
276{
1c4a764c 277 wxCHECK_MSG( IS_VALID_PAGE(nPage), FALSE, "notebook page out of range" );
88310e2e
VZ
278
279 TabCtrl_DeleteItem(m_hwnd, nPage);
280
281 delete m_aPages[nPage];
282 m_aPages.Remove(nPage);
283
284 return TRUE;
285}
286
621793f4
JS
287// remove one page from the notebook, without deleting
288bool wxNotebook::RemovePage(int nPage)
289{
290 wxCHECK_MSG( IS_VALID_PAGE(nPage), FALSE, "notebook page out of range" );
291
292 TabCtrl_DeleteItem(m_hwnd, nPage);
293
294 m_aPages.Remove(nPage);
295
296 return TRUE;
297}
298
88310e2e
VZ
299// remove all pages
300bool wxNotebook::DeleteAllPages()
301{
302 TabCtrl_DeleteAllItems(m_hwnd);
303
304 int nPageCount = GetPageCount();
305 int nPage;
306 for ( nPage = 0; nPage < nPageCount; nPage++ )
307 delete m_aPages[nPage];
308
309 m_aPages.Clear();
310
311 return TRUE;
312}
313
314// add a page to the notebook
315bool wxNotebook::AddPage(wxNotebookPage *pPage,
316 const wxString& strText,
317 bool bSelect,
318 int imageId)
319{
320 return InsertPage(GetPageCount(), pPage, strText, bSelect, imageId);
321}
322
323// same as AddPage() but does it at given position
324bool wxNotebook::InsertPage(int nPage,
325 wxNotebookPage *pPage,
326 const wxString& strText,
327 bool bSelect,
328 int imageId)
329{
330 wxASSERT( pPage != NULL );
331 wxCHECK( IS_VALID_PAGE(nPage) || nPage == GetPageCount(), FALSE );
332
333 // add the tab to the control
334 TC_ITEM tcItem;
335 tcItem.mask = TCIF_TEXT | TCIF_IMAGE;
336 tcItem.pszText = (char *)strText.c_str();
337 tcItem.iImage = imageId;
338
339 if ( TabCtrl_InsertItem(m_hwnd, nPage, &tcItem) == -1 ) {
340 wxLogError("Can't create the notebook page '%s'.", strText.c_str());
341 return FALSE;
342 }
343
344 // save the pointer to the page
345 m_aPages.Insert(pPage, nPage);
346
347 // some page must be selected: either this one or the first one if there is
348 // still no selection
349 if ( bSelect )
350 m_nSelection = nPage;
351 else if ( m_nSelection == -1 )
352 m_nSelection = 0;
353
354 // don't show pages by default (we'll need to adjust their size first)
355 HWND hwnd = (HWND)pPage->GetHWND();
356 SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) & ~WS_VISIBLE);
357
358 return TRUE;
359}
360
361// ----------------------------------------------------------------------------
362// wxNotebook callbacks
363// ----------------------------------------------------------------------------
364
88310e2e
VZ
365void wxNotebook::OnSize(wxSizeEvent& event)
366{
88310e2e
VZ
367 // emulate page change (it's esp. important to do it first time because
368 // otherwise our page would stay invisible)
369 int nSel = m_nSelection;
370 m_nSelection = -1;
371 SetSelection(nSel);
372
b5c3b538
VZ
373 // fit the notebook page to the tab control's display area
374 RECT rc;
375 rc.left = rc.top = 0;
376 GetSize((int *)&rc.right, (int *)&rc.bottom);
377
378 TabCtrl_AdjustRect(m_hwnd, FALSE, &rc);
c86f1403
VZ
379 size_t nCount = m_aPages.Count();
380 for ( size_t nPage = 0; nPage < nCount; nPage++ ) {
b5c3b538
VZ
381 wxNotebookPage *pPage = m_aPages[nPage];
382 pPage->SetSize(rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top);
383 if ( pPage->GetAutoLayout() )
384 pPage->Layout();
385 }
386
88310e2e
VZ
387 event.Skip();
388}
389
390void wxNotebook::OnSelChange(wxNotebookEvent& event)
391{
392 // is it our tab control?
393 if ( event.GetEventObject() == this )
394 ChangePage(event.GetOldSelection(), event.GetSelection());
395
396 // we want to give others a chance to process this message as well
397 event.Skip();
398}
399
400void wxNotebook::OnSetFocus(wxFocusEvent& event)
401{
402 // set focus to the currently selected page if any
403 if ( m_nSelection != -1 )
404 m_aPages[m_nSelection]->SetFocus();
405
406 event.Skip();
407}
408
409void wxNotebook::OnNavigationKey(wxNavigationKeyEvent& event)
410{
411 if ( event.IsWindowChange() ) {
412 // change pages
413 AdvanceSelection(event.GetDirection());
414 }
415 else {
416 // pass to the parent
417 if ( GetParent() ) {
418 event.SetCurrentFocus(this);
02800301 419 GetParent()->GetEventHandler()->ProcessEvent(event);
88310e2e
VZ
420 }
421 }
422}
423
424// ----------------------------------------------------------------------------
425// wxNotebook base class virtuals
426// ----------------------------------------------------------------------------
b5c3b538
VZ
427
428// override these 2 functions to do nothing: everything is done in OnSize
429
430void wxNotebook::SetConstraintSizes(bool /* recurse */)
431{
432 // don't set the sizes of the pages - their correct size is not yet known
433 wxControl::SetConstraintSizes(FALSE);
434}
435
436bool wxNotebook::DoPhase(int /* nPhase */)
437{
438 return TRUE;
439}
440
88310e2e
VZ
441void wxNotebook::Command(wxCommandEvent& event)
442{
443 wxFAIL_MSG("wxNotebook::Command not implemented");
444}
445
fd3f686c 446bool wxNotebook::MSWNotify(WXWPARAM wParam, WXLPARAM lParam, WXLPARAM* result)
88310e2e 447{
93a19f17 448 wxNotebookEvent event(wxEVT_NULL, m_windowId);
88310e2e
VZ
449
450 NMHDR* hdr = (NMHDR *)lParam;
451 switch ( hdr->code ) {
452 case TCN_SELCHANGE:
453 event.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED);
454 break;
455
456 case TCN_SELCHANGING:
457 event.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING);
458 break;
459
fd3f686c
VZ
460 default:
461 return wxControl::MSWNotify(wParam, lParam, result);
88310e2e
VZ
462 }
463
93a19f17
VZ
464 event.SetSelection(TabCtrl_GetCurSel(m_hwnd));
465 event.SetOldSelection(m_nSelection);
88310e2e 466 event.SetEventObject(this);
fd3f686c 467 event.SetInt(LOWORD(wParam)); // ctrl id
88310e2e 468
fd3f686c
VZ
469 bool processed = GetEventHandler()->ProcessEvent(event);
470 *result = !event.IsAllowed();
471 return processed;
88310e2e
VZ
472}
473
474// ----------------------------------------------------------------------------
475// wxNotebook helper functions
476// ----------------------------------------------------------------------------
477
478// hide the currently active panel and show the new one
479void wxNotebook::ChangePage(int nOldSel, int nSel)
480{
fd3f686c
VZ
481 // MT-FIXME should use a real semaphore
482 static bool s_bInsideChangePage = FALSE;
483
484 // when we call ProcessEvent(), our own OnSelChange() is called which calls
485 // this function - break the infinite loop
486 if ( s_bInsideChangePage )
487 return;
488
aaab7c01
VZ
489 // it's not an error (the message may be generated by the tab control itself)
490 // and it may happen - just do nothing
491 if ( nSel == nOldSel )
492 return;
88310e2e 493
fd3f686c
VZ
494 s_bInsideChangePage = TRUE;
495
496 wxNotebookEvent event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, m_windowId);
497 event.SetSelection(nSel);
498 event.SetOldSelection(nOldSel);
499 event.SetEventObject(this);
500 if ( ProcessEvent(event) && !event.IsAllowed() )
501 {
502 // program doesn't allow the page change
503 s_bInsideChangePage = FALSE;
504 return;
505 }
506
aaab7c01 507 if ( nOldSel != -1 )
88310e2e 508 m_aPages[nOldSel]->Show(FALSE);
88310e2e
VZ
509
510 wxNotebookPage *pPage = m_aPages[nSel];
88310e2e 511 pPage->Show(TRUE);
b5c3b538 512 pPage->SetFocus();
88310e2e 513
fd3f686c
VZ
514 event.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED);
515 ProcessEvent(event);
516
88310e2e 517 m_nSelection = nSel;
fd3f686c 518 s_bInsideChangePage = FALSE;
88310e2e 519}
a7e594b2
JS
520
521void wxNotebook::OnEraseBackground(wxEraseEvent& event)
522{
523 Default();
524}
525