]> git.saurik.com Git - wxWidgets.git/blame - src/msw/notebook.cpp
Add wxDataViewCtrl::GTKPathToItem() function and use it.
[wxWidgets.git] / src / msw / notebook.cpp
CommitLineData
88310e2e 1///////////////////////////////////////////////////////////////////////////////
2ddb4d13 2// Name: src/msw/notebook.cpp
88310e2e
VZ
3// Purpose: implementation of wxNotebook
4// Author: Vadim Zeitlin
907f37b3 5// Modified by:
88310e2e
VZ
6// Created: 11.06.98
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 9// Licence: wxWindows licence
88310e2e
VZ
10///////////////////////////////////////////////////////////////////////////////
11
88310e2e
VZ
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
1e6feb95 16 #pragma hdrstop
88310e2e
VZ
17#endif
18
1e6feb95
VZ
19#if wxUSE_NOTEBOOK
20
57bd4c60 21#include "wx/notebook.h"
e4db172a 22
88310e2e 23#ifndef WX_PRECOMP
57bd4c60
WS
24 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
25 #include "wx/string.h"
26 #include "wx/dc.h"
27 #include "wx/log.h"
28 #include "wx/event.h"
29 #include "wx/app.h"
30 #include "wx/dcclient.h"
31 #include "wx/dcmemory.h"
32 #include "wx/control.h"
bb93b4a8 33 #include "wx/panel.h"
88310e2e
VZ
34#endif // WX_PRECOMP
35
57bd4c60
WS
36#include "wx/imaglist.h"
37#include "wx/sysopt.h"
88310e2e 38
57bd4c60 39#include "wx/msw/private.h"
74052fe8 40#include "wx/msw/dc.h"
88310e2e 41
57bd4c60 42#include <windowsx.h>
85b43fbf
JS
43#include "wx/msw/winundef.h"
44
45#if wxUSE_UXTHEME
caf95d2a 46 #include "wx/msw/uxtheme.h"
85b43fbf
JS
47#endif
48
88310e2e
VZ
49// ----------------------------------------------------------------------------
50// macros
51// ----------------------------------------------------------------------------
52
53// check that the page index is valid
8d34bf5c 54#define IS_VALID_PAGE(nPage) ((nPage) < GetPageCount())
88310e2e 55
014ee083
VZ
56// you can set USE_NOTEBOOK_ANTIFLICKER to 0 for desktop Windows versions too
57// to disable code whih results in flicker-less notebook redrawing at the
58// expense of some extra GDI resource consumption
254fbd14 59#ifdef __WXWINCE__
014ee083
VZ
60 // notebooks are never resized under CE anyhow
61 #define USE_NOTEBOOK_ANTIFLICKER 0
254fbd14 62#else
014ee083 63 #define USE_NOTEBOOK_ANTIFLICKER 1
254fbd14
JS
64#endif
65
74b31181
VZ
66// ----------------------------------------------------------------------------
67// constants
68// ----------------------------------------------------------------------------
69
70// This is a work-around for missing defines in gcc-2.95 headers
71#ifndef TCS_RIGHT
72 #define TCS_RIGHT 0x0002
73#endif
74
75#ifndef TCS_VERTICAL
76 #define TCS_VERTICAL 0x0080
77#endif
78
79#ifndef TCS_BOTTOM
80 #define TCS_BOTTOM TCS_RIGHT
81#endif
82
014ee083
VZ
83// ----------------------------------------------------------------------------
84// global variables
85// ----------------------------------------------------------------------------
86
87#if USE_NOTEBOOK_ANTIFLICKER
88
89// the pointer to standard spin button wnd proc
90static WXFARPROC gs_wndprocNotebookSpinBtn = (WXFARPROC)NULL;
91
6143d3b6 92// the pointer to standard tab control wnd proc
e1cffcd6 93static WXFARPROC gs_wndprocNotebook = (WXFARPROC)NULL;
6143d3b6
VZ
94
95LRESULT APIENTRY _EXPORT wxNotebookWndProc(HWND hwnd,
96 UINT message,
97 WPARAM wParam,
98 LPARAM lParam);
99
014ee083
VZ
100#endif // USE_NOTEBOOK_ANTIFLICKER
101
b013c971
VZ
102// ----------------------------------------------------------------------------
103// global functions
104// ----------------------------------------------------------------------------
105
106static bool HasTroubleWithNonTopTabs()
107{
108 const int verComCtl32 = wxApp::GetComCtl32Version();
109
110 // 600 is XP, 616 is Vista -- and both have a problem with tabs not on top
111 // (but don't just test for >= 600 as Microsoft might decide to fix it in
112 // later versions, who knows...)
113 return verComCtl32 >= 600 && verComCtl32 <= 616;
114}
115
88310e2e
VZ
116// ----------------------------------------------------------------------------
117// event table
118// ----------------------------------------------------------------------------
119
7ec69821 120#include "wx/listimpl.cpp"
51741307 121
259c43f6 122WX_DEFINE_LIST( wxNotebookPageInfoList )
51741307 123
8dba4c72 124BEGIN_EVENT_TABLE(wxNotebook, wxBookCtrlBase)
7ec69821 125 EVT_NOTEBOOK_PAGE_CHANGED(wxID_ANY, wxNotebook::OnSelChange)
9026ad85 126 EVT_SIZE(wxNotebook::OnSize)
88310e2e 127 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey)
014ee083
VZ
128
129#if USE_NOTEBOOK_ANTIFLICKER
130 EVT_ERASE_BACKGROUND(wxNotebook::OnEraseBackground)
131 EVT_PAINT(wxNotebook::OnPaint)
132#endif // USE_NOTEBOOK_ANTIFLICKER
d9317fd4 133END_EVENT_TABLE()
88310e2e 134
51596bcb 135#if wxUSE_EXTENDED_RTTI
bc9fb572
JS
136WX_DEFINE_FLAGS( wxNotebookStyle )
137
3ff066a4 138wxBEGIN_FLAGS( wxNotebookStyle )
bc9fb572
JS
139 // new style border flags, we put them first to
140 // use them for streaming out
3ff066a4
SC
141 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
142 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
143 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
144 wxFLAGS_MEMBER(wxBORDER_RAISED)
145 wxFLAGS_MEMBER(wxBORDER_STATIC)
146 wxFLAGS_MEMBER(wxBORDER_NONE)
078cf5cb 147
bc9fb572 148 // old style border flags
3ff066a4
SC
149 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
150 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
151 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
152 wxFLAGS_MEMBER(wxRAISED_BORDER)
153 wxFLAGS_MEMBER(wxSTATIC_BORDER)
cb0afb26 154 wxFLAGS_MEMBER(wxBORDER)
bc9fb572
JS
155
156 // standard window styles
3ff066a4
SC
157 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
158 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
159 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
160 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 161 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
3ff066a4
SC
162 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
163 wxFLAGS_MEMBER(wxVSCROLL)
164 wxFLAGS_MEMBER(wxHSCROLL)
165
166 wxFLAGS_MEMBER(wxNB_FIXEDWIDTH)
2ddb4d13
WS
167 wxFLAGS_MEMBER(wxBK_DEFAULT)
168 wxFLAGS_MEMBER(wxBK_TOP)
169 wxFLAGS_MEMBER(wxBK_LEFT)
170 wxFLAGS_MEMBER(wxBK_RIGHT)
171 wxFLAGS_MEMBER(wxBK_BOTTOM)
b554cf63
JS
172 wxFLAGS_MEMBER(wxNB_NOPAGETHEME)
173 wxFLAGS_MEMBER(wxNB_FLAT)
3ff066a4
SC
174
175wxEND_FLAGS( wxNotebookStyle )
51741307 176
8dba4c72 177IMPLEMENT_DYNAMIC_CLASS_XTI(wxNotebook, wxBookCtrlBase,"wx/notebook.h")
51741307
SC
178IMPLEMENT_DYNAMIC_CLASS_XTI(wxNotebookPageInfo, wxObject , "wx/notebook.h" )
179
3ff066a4 180wxCOLLECTION_TYPE_INFO( wxNotebookPageInfo * , wxNotebookPageInfoList ) ;
51596bcb 181
f0a126fe
SC
182template<> void wxCollectionToVariantArray( wxNotebookPageInfoList const &theList, wxxVariantArray &value)
183{
0c6b0084 184 wxListCollectionToVariantArray<wxNotebookPageInfoList::compatibility_iterator>( theList , value ) ;
f0a126fe
SC
185}
186
3ff066a4 187wxBEGIN_PROPERTIES_TABLE(wxNotebook)
3e97a905
VZ
188 wxEVENT_PROPERTY( PageChanging , wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING , wxBookCtrlEvent )
189 wxEVENT_PROPERTY( PageChanged , wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED , wxBookCtrlEvent )
c5ca409b 190
3ff066a4 191 wxPROPERTY_COLLECTION( PageInfos , wxNotebookPageInfoList , wxNotebookPageInfo* , AddPageInfo , GetPageInfos , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
af498247 192 wxPROPERTY_FLAGS( WindowStyle , wxNotebookStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
3ff066a4 193wxEND_PROPERTIES_TABLE()
51596bcb 194
3ff066a4
SC
195wxBEGIN_HANDLERS_TABLE(wxNotebook)
196wxEND_HANDLERS_TABLE()
51596bcb 197
078cf5cb 198wxCONSTRUCTOR_5( wxNotebook , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle)
51596bcb 199
51741307 200
3ff066a4 201wxBEGIN_PROPERTIES_TABLE(wxNotebookPageInfo)
af498247 202 wxREADONLY_PROPERTY( Page , wxNotebookPage* , GetPage , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
3ff066a4
SC
203 wxREADONLY_PROPERTY( Text , wxString , GetText , wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
204 wxREADONLY_PROPERTY( Selected , bool , GetSelected , false, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
205 wxREADONLY_PROPERTY( ImageId , int , GetImageId , -1 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
206wxEND_PROPERTIES_TABLE()
51741307 207
3ff066a4
SC
208wxBEGIN_HANDLERS_TABLE(wxNotebookPageInfo)
209wxEND_HANDLERS_TABLE()
51741307 210
078cf5cb 211wxCONSTRUCTOR_4( wxNotebookPageInfo , wxNotebookPage* , Page , wxString , Text , bool , Selected , int , ImageId )
51741307 212
51596bcb 213#else
8dba4c72 214IMPLEMENT_DYNAMIC_CLASS(wxNotebook, wxBookCtrlBase)
51741307 215IMPLEMENT_DYNAMIC_CLASS(wxNotebookPageInfo, wxObject )
51596bcb 216#endif
88310e2e
VZ
217
218// ============================================================================
219// implementation
220// ============================================================================
221
222// ----------------------------------------------------------------------------
223// wxNotebook construction
224// ----------------------------------------------------------------------------
225
51741307
SC
226const wxNotebookPageInfoList& wxNotebook::GetPageInfos() const
227{
228 wxNotebookPageInfoList* list = const_cast< wxNotebookPageInfoList* >( &m_pageInfos ) ;
229 WX_CLEAR_LIST( wxNotebookPageInfoList , *list ) ;
34a0c9f4 230 for( size_t i = 0 ; i < GetPageCount() ; ++i )
51741307
SC
231 {
232 wxNotebookPageInfo *info = new wxNotebookPageInfo() ;
34a0c9f4 233 info->Create( const_cast<wxNotebook*>(this)->GetPage(i) , GetPageText(i) , GetSelection() == int(i) , GetPageImage(i) ) ;
51741307
SC
234 list->Append( info ) ;
235 }
236 return m_pageInfos ;
237}
238
88310e2e
VZ
239// common part of all ctors
240void wxNotebook::Init()
241{
7ec69821 242 m_imageList = NULL;
5482ee07 243 m_nSelection = wxNOT_FOUND;
caf95d2a
VZ
244
245#if wxUSE_UXTHEME
7ec69821 246 m_hbrBackground = NULL;
caf95d2a 247#endif // wxUSE_UXTHEME
dfb47d83
VZ
248
249#if USE_NOTEBOOK_ANTIFLICKER
7ec69821 250 m_hasSubclassedUpdown = false;
dfb47d83 251#endif // USE_NOTEBOOK_ANTIFLICKER
88310e2e
VZ
252}
253
254// default for dynamic class
255wxNotebook::wxNotebook()
256{
257 Init();
258}
259
260// the same arguments as for wxControl
261wxNotebook::wxNotebook(wxWindow *parent,
8b9518ee 262 wxWindowID id,
88310e2e
VZ
263 const wxPoint& pos,
264 const wxSize& size,
8b9518ee 265 long style,
88310e2e
VZ
266 const wxString& name)
267{
268 Init();
269
270 Create(parent, id, pos, size, style, name);
271}
272
273// Create() function
274bool wxNotebook::Create(wxWindow *parent,
8b9518ee 275 wxWindowID id,
88310e2e
VZ
276 const wxPoint& pos,
277 const wxSize& size,
8b9518ee 278 long style,
88310e2e
VZ
279 const wxString& name)
280{
895cc205
WS
281 if ( (style & wxBK_ALIGN_MASK) == wxBK_DEFAULT )
282 {
283#if defined(__POCKETPC__)
284 style |= wxBK_BOTTOM | wxNB_FLAT;
285#else
286 style |= wxBK_TOP;
287#endif
288 }
289
45418059
JS
290#ifdef __WXWINCE__
291 // Not sure why, but without this style, there is no border
292 // around the notebook tabs.
293 if (style & wxNB_FLAT)
294 style |= wxBORDER_SUNKEN;
295#endif
c3732409 296
e4db172a 297#if !wxUSE_UXTHEME
b013c971
VZ
298 // ComCtl32 notebook tabs simply don't work unless they're on top if we
299 // have uxtheme, we can work around it later (after control creation), but
300 // if we have been compiled without uxtheme support, we have to clear those
301 // styles
302 if ( HasTroubleWithNonTopTabs() )
04eb05b0 303 {
5483756f 304 style &= ~(wxBK_BOTTOM | wxBK_LEFT | wxBK_RIGHT);
04eb05b0 305 }
7cc1ad29 306#endif //wxUSE_UXTHEME
078cf5cb 307
82c51a8e
JS
308#if defined(__WINE__) && wxUSE_UNICODE
309 LPCTSTR className = L"SysTabControl32";
310#else
c1637c89 311 LPCTSTR className = WC_TABCONTROL;
82c51a8e 312#endif
c1637c89 313
6143d3b6 314#if USE_NOTEBOOK_ANTIFLICKER
c1637c89
VZ
315 // SysTabCtl32 class has natively CS_HREDRAW and CS_VREDRAW enabled and it
316 // causes horrible flicker when resizing notebook, so get rid of it by
317 // using a class without these styles (but otherwise identical to it)
318 if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE) )
319 {
320 static ClassRegistrar s_clsNotebook;
321 if ( !s_clsNotebook.IsInitialized() )
322 {
323 // get a copy of standard class and modify it
324 WNDCLASS wc;
325
6143d3b6 326 if ( ::GetClassInfo(NULL, WC_TABCONTROL, &wc) )
c1637c89 327 {
6143d3b6 328 gs_wndprocNotebook =
5c33522f 329 reinterpret_cast<WXFARPROC>(wc.lpfnWndProc);
c1637c89
VZ
330 wc.lpszClassName = wxT("_wx_SysTabCtl32");
331 wc.style &= ~(CS_HREDRAW | CS_VREDRAW);
6143d3b6
VZ
332 wc.hInstance = wxGetInstance();
333 wc.lpfnWndProc = wxNotebookWndProc;
c1637c89
VZ
334 s_clsNotebook.Register(wc);
335 }
336 else
337 {
9a83f860 338 wxLogLastError(wxT("GetClassInfoEx(SysTabCtl32)"));
c1637c89
VZ
339 }
340 }
341
342 // use our custom class if available but fall back to the standard
343 // notebook if we failed to register it
344 if ( s_clsNotebook.IsRegistered() )
345 {
346 // it's ok to use c_str() here as the static s_clsNotebook object
347 // has sufficiently long lifetime
348 className = s_clsNotebook.GetName().c_str();
349 }
350 }
6143d3b6 351#endif // USE_NOTEBOOK_ANTIFLICKER
c1637c89 352
6dd16e4f
VZ
353 if ( !CreateControl(parent, id, pos, size, style | wxTAB_TRAVERSAL,
354 wxDefaultValidator, name) )
b8bdaa7c 355 return false;
88310e2e 356
c1637c89 357 if ( !MSWCreateControl(className, wxEmptyString, pos, size) )
b8bdaa7c 358 return false;
907f37b3 359
7dccdf81
VZ
360#if wxUSE_UXTHEME
361 if ( HasFlag(wxNB_NOPAGETHEME) ||
362 wxSystemOptions::IsFalse(wxT("msw.notebook.themed-background")) )
f2b7be7a 363 {
7dccdf81 364 SetBackgroundColour(GetThemeBackgroundColour());
f2b7be7a 365 }
30556182
VZ
366 else // use themed background by default
367 {
368 // create backing store
369 UpdateBgBrush();
370 }
e4db172a 371
7cc1ad29
JS
372 // comctl32.dll 6.0 doesn't support non-top tabs with visual styles (the
373 // control is simply not rendered correctly), so we disable themes
374 // if possible, otherwise we simply clear the styles.
b013c971
VZ
375 if ( HasTroubleWithNonTopTabs() &&
376 (style & (wxBK_BOTTOM | wxBK_LEFT | wxBK_RIGHT)) )
7cc1ad29
JS
377 {
378 // check if we use themes at all -- if we don't, we're still okay
b013c971 379 if ( wxUxThemeEngine::GetIfActive() )
7cc1ad29 380 {
b013c971
VZ
381 wxUxThemeEngine::GetIfActive()->SetWindowTheme(GetHwnd(), L"", L"");
382
383 // correct the background color for the new non-themed control
8dba4c72 384 SetBackgroundColour(GetThemeBackgroundColour());
7cc1ad29
JS
385 }
386 }
7dccdf81 387#endif // wxUSE_UXTHEME
b554cf63
JS
388
389 // Undocumented hack to get flat notebook style
390 // In fact, we should probably only do this in some
391 // curcumstances, i.e. if we know we will have a border
392 // at the bottom (the tab control doesn't draw it itself)
393#if defined(__POCKETPC__) || defined(__SMARTPHONE__)
394 if (HasFlag(wxNB_FLAT))
395 {
01c8cbf5 396 SendMessage(GetHwnd(), CCM_SETVERSION, COMCTL32_VERSION, 0);
b554cf63
JS
397 if (!m_hasBgCol)
398 SetBackgroundColour(*wxWHITE);
399 }
400#endif
b8bdaa7c 401 return true;
0df3fbd7
VZ
402}
403
404WXDWORD wxNotebook::MSWGetStyle(long style, WXDWORD *exstyle) const
405{
406 WXDWORD tabStyle = wxControl::MSWGetStyle(style, exstyle);
407
408 tabStyle |= WS_TABSTOP | TCS_TABS;
409
2b5f62a0 410 if ( style & wxNB_MULTILINE )
0df3fbd7
VZ
411 tabStyle |= TCS_MULTILINE;
412 if ( style & wxNB_FIXEDWIDTH )
413 tabStyle |= TCS_FIXEDWIDTH;
414
2ddb4d13 415 if ( style & wxBK_BOTTOM )
0df3fbd7 416 tabStyle |= TCS_RIGHT;
2ddb4d13 417 else if ( style & wxBK_LEFT )
0df3fbd7 418 tabStyle |= TCS_VERTICAL;
2ddb4d13 419 else if ( style & wxBK_RIGHT )
c3732409 420 tabStyle |= TCS_VERTICAL | TCS_RIGHT;
0df3fbd7 421
0df3fbd7 422 return tabStyle;
88310e2e
VZ
423}
424
caf95d2a
VZ
425wxNotebook::~wxNotebook()
426{
427#if wxUSE_UXTHEME
428 if ( m_hbrBackground )
429 ::DeleteObject((HBRUSH)m_hbrBackground);
430#endif // wxUSE_UXTHEME
431}
432
88310e2e
VZ
433// ----------------------------------------------------------------------------
434// wxNotebook accessors
435// ----------------------------------------------------------------------------
07b8d7ec 436
8d34bf5c 437size_t wxNotebook::GetPageCount() const
88310e2e 438{
8ecd5de2
WS
439 // consistency check
440 wxASSERT( (int)m_pages.Count() == TabCtrl_GetItemCount(GetHwnd()) );
88310e2e 441
8ecd5de2 442 return m_pages.Count();
88310e2e
VZ
443}
444
445int wxNotebook::GetRowCount() const
446{
8ecd5de2 447 return TabCtrl_GetRowCount(GetHwnd());
88310e2e
VZ
448}
449
8d34bf5c 450int wxNotebook::SetSelection(size_t nPage)
88310e2e 451{
8ecd5de2
WS
452 wxCHECK_MSG( IS_VALID_PAGE(nPage), wxNOT_FOUND, wxT("notebook page out of range") );
453
a570e8f8 454 if ( m_nSelection == wxNOT_FOUND || nPage != (size_t)m_nSelection )
2b5f62a0 455 {
a570e8f8 456 if ( SendPageChangingEvent(nPage) )
8ecd5de2
WS
457 {
458 // program allows the page change
a570e8f8 459 SendPageChangedEvent(m_nSelection, nPage);
2b5f62a0 460
a570e8f8 461 TabCtrl_SetCurSel(GetHwnd(), nPage);
8ecd5de2 462 }
2b5f62a0 463 }
88310e2e 464
8ecd5de2 465 return m_nSelection;
88310e2e
VZ
466}
467
5482ee07 468void wxNotebook::UpdateSelection(int selNew)
1d6fcbcc 469{
5482ee07 470 if ( m_nSelection != wxNOT_FOUND )
1d6fcbcc
VZ
471 m_pages[m_nSelection]->Show(false);
472
5482ee07 473 if ( selNew != wxNOT_FOUND )
1d6fcbcc 474 {
5482ee07 475 wxNotebookPage *pPage = m_pages[selNew];
1d6fcbcc
VZ
476 pPage->Show(true);
477 }
478
479 // Changing the page should give the focus to it but, as per bug report
480 // http://sf.net/tracker/index.php?func=detail&aid=1150659&group_id=9863&atid=109863,
481 // we should not set the focus to it directly since it erroneously
482 // selects radio buttons and breaks keyboard handling for a notebook's
483 // scroll buttons. So give focus to the notebook and not the page.
484
485 // but don't do this is the notebook is hidden
486 if ( ::IsWindowVisible(GetHwnd()) )
487 SetFocus();
488
5482ee07 489 m_nSelection = selNew;
1d6fcbcc
VZ
490}
491
492int wxNotebook::ChangeSelection(size_t nPage)
493{
494 wxCHECK_MSG( IS_VALID_PAGE(nPage), wxNOT_FOUND, wxT("notebook page out of range") );
495
937d5b60
VZ
496 const int selOld = m_nSelection;
497
5482ee07 498 if ( m_nSelection == wxNOT_FOUND || nPage != (size_t)m_nSelection )
1d6fcbcc
VZ
499 {
500 TabCtrl_SetCurSel(GetHwnd(), nPage);
501
502 UpdateSelection(nPage);
503 }
504
937d5b60 505 return selOld;
1d6fcbcc
VZ
506}
507
8d34bf5c 508bool wxNotebook::SetPageText(size_t nPage, const wxString& strText)
88310e2e 509{
8ecd5de2 510 wxCHECK_MSG( IS_VALID_PAGE(nPage), false, wxT("notebook page out of range") );
88310e2e 511
8ecd5de2
WS
512 TC_ITEM tcItem;
513 tcItem.mask = TCIF_TEXT;
c9f78968 514 tcItem.pszText = (wxChar *)strText.wx_str();
88310e2e 515
88a01064
JS
516 if ( !HasFlag(wxNB_MULTILINE) )
517 return TabCtrl_SetItem(GetHwnd(), nPage, &tcItem) != 0;
518
519 // multiline - we need to set new page size if a line is added or removed
520 int rows = GetRowCount();
521 bool ret = TabCtrl_SetItem(GetHwnd(), nPage, &tcItem) != 0;
522
523 if ( ret && rows != GetRowCount() )
524 {
525 const wxRect r = GetPageSize();
526 const size_t count = m_pages.Count();
527 for ( size_t page = 0; page < count; page++ )
528 m_pages[page]->SetSize(r);
529 }
530
531 return ret;
88310e2e
VZ
532}
533
8d34bf5c 534wxString wxNotebook::GetPageText(size_t nPage) const
88310e2e 535{
8ecd5de2 536 wxCHECK_MSG( IS_VALID_PAGE(nPage), wxEmptyString, wxT("notebook page out of range") );
88310e2e 537
8ecd5de2
WS
538 wxChar buf[256];
539 TC_ITEM tcItem;
540 tcItem.mask = TCIF_TEXT;
541 tcItem.pszText = buf;
542 tcItem.cchTextMax = WXSIZEOF(buf);
88310e2e 543
8ecd5de2
WS
544 wxString str;
545 if ( TabCtrl_GetItem(GetHwnd(), nPage, &tcItem) )
546 str = tcItem.pszText;
88310e2e 547
8ecd5de2 548 return str;
88310e2e
VZ
549}
550
8d34bf5c 551int wxNotebook::GetPageImage(size_t nPage) const
88310e2e 552{
8ecd5de2 553 wxCHECK_MSG( IS_VALID_PAGE(nPage), wxNOT_FOUND, wxT("notebook page out of range") );
88310e2e 554
8ecd5de2
WS
555 TC_ITEM tcItem;
556 tcItem.mask = TCIF_IMAGE;
88310e2e 557
5482ee07
VZ
558 return TabCtrl_GetItem(GetHwnd(), nPage, &tcItem) ? tcItem.iImage
559 : wxNOT_FOUND;
88310e2e
VZ
560}
561
8d34bf5c 562bool wxNotebook::SetPageImage(size_t nPage, int nImage)
88310e2e 563{
8ecd5de2 564 wxCHECK_MSG( IS_VALID_PAGE(nPage), false, wxT("notebook page out of range") );
88310e2e 565
8ecd5de2
WS
566 TC_ITEM tcItem;
567 tcItem.mask = TCIF_IMAGE;
568 tcItem.iImage = nImage;
88310e2e 569
8ecd5de2 570 return TabCtrl_SetItem(GetHwnd(), nPage, &tcItem) != 0;
88310e2e
VZ
571}
572
573void wxNotebook::SetImageList(wxImageList* imageList)
907f37b3 574{
8ecd5de2 575 wxNotebookBase::SetImageList(imageList);
07b8d7ec 576
8ecd5de2
WS
577 if ( imageList )
578 {
5482ee07 579 (void) TabCtrl_SetImageList(GetHwnd(), GetHimagelistOf(imageList));
8ecd5de2 580 }
b656febd
VS
581}
582
d9506e77
VZ
583// ----------------------------------------------------------------------------
584// wxNotebook size settings
585// ----------------------------------------------------------------------------
586
c3732409
VZ
587wxRect wxNotebook::GetPageSize() const
588{
589 wxRect r;
590
591 RECT rc;
592 ::GetClientRect(GetHwnd(), &rc);
593
594 // This check is to work around a bug in TabCtrl_AdjustRect which will
628eae0b
VZ
595 // cause a crash on win2k or on XP with themes disabled if either
596 // wxNB_MULTILINE is used or tabs are placed on a side, if the rectangle
597 // is too small.
598 //
599 // The value of 20 is chosen arbitrarily but seems to work
600 if ( rc.right > 20 && rc.bottom > 20 )
c3732409 601 {
01c8cbf5 602 TabCtrl_AdjustRect(GetHwnd(), false, &rc);
c3732409
VZ
603
604 wxCopyRECTToRect(rc, r);
605 }
606
607 return r;
608}
609
d9506e77
VZ
610void wxNotebook::SetPageSize(const wxSize& size)
611{
612 // transform the page size into the notebook size
613 RECT rc;
614 rc.left =
615 rc.top = 0;
616 rc.right = size.x;
617 rc.bottom = size.y;
618
b8bdaa7c 619 TabCtrl_AdjustRect(GetHwnd(), true, &rc);
d9506e77
VZ
620
621 // and now set it
622 SetSize(rc.right - rc.left, rc.bottom - rc.top);
623}
624
625void wxNotebook::SetPadding(const wxSize& padding)
626{
627 TabCtrl_SetPadding(GetHwnd(), padding.x, padding.y);
628}
42e69d6b
VZ
629
630// Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH
631// style.
632void wxNotebook::SetTabSize(const wxSize& sz)
633{
634 ::SendMessage(GetHwnd(), TCM_SETITEMSIZE, 0, MAKELPARAM(sz.x, sz.y));
635}
636
2ce7af35
JS
637wxSize wxNotebook::CalcSizeFromPage(const wxSize& sizePage) const
638{
669c595d 639 // we can't use TabCtrl_AdjustRect here because it only works for wxNB_TOP
2ce7af35 640 wxSize sizeTotal = sizePage;
078cf5cb 641
8b5d5223 642 wxSize tabSize;
669c595d 643 if ( GetPageCount() > 0 )
2ce7af35
JS
644 {
645 RECT rect;
669c595d 646 TabCtrl_GetItemRect(GetHwnd(), 0, &rect);
2ce7af35
JS
647 tabSize.x = rect.right - rect.left;
648 tabSize.y = rect.bottom - rect.top;
649 }
669c595d 650
49ac39e3
VZ
651 const int rows = GetRowCount();
652
669c595d
VZ
653 // add an extra margin in both directions
654 const int MARGIN = 8;
655 if ( IsVertical() )
2ce7af35 656 {
669c595d 657 sizeTotal.x += MARGIN;
49ac39e3 658 sizeTotal.y += tabSize.y * rows + MARGIN;
2ce7af35 659 }
669c595d 660 else // horizontal layout
2ce7af35 661 {
49ac39e3 662 sizeTotal.x += tabSize.x * rows + MARGIN;
669c595d 663 sizeTotal.y += MARGIN;
2ce7af35
JS
664 }
665
666 return sizeTotal;
667}
668
2015f2b3
VZ
669void wxNotebook::AdjustPageSize(wxNotebookPage *page)
670{
9a83f860 671 wxCHECK_RET( page, wxT("NULL page in wxNotebook::AdjustPageSize") );
2015f2b3 672
c3732409
VZ
673 const wxRect r = GetPageSize();
674 if ( !r.IsEmpty() )
14a6b6e5 675 {
c3732409 676 page->SetSize(r);
14a6b6e5 677 }
2015f2b3
VZ
678}
679
88310e2e
VZ
680// ----------------------------------------------------------------------------
681// wxNotebook operations
682// ----------------------------------------------------------------------------
683
621793f4 684// remove one page from the notebook, without deleting
8d34bf5c 685wxNotebookPage *wxNotebook::DoRemovePage(size_t nPage)
621793f4 686{
df7145da
VZ
687 wxNotebookPage *pageRemoved = wxNotebookBase::DoRemovePage(nPage);
688 if ( !pageRemoved )
689 return NULL;
621793f4 690
01c8cbf5 691 TabCtrl_DeleteItem(GetHwnd(), nPage);
621793f4 692
df7145da
VZ
693 if ( m_pages.IsEmpty() )
694 {
695 // no selection any more, the notebook becamse empty
5482ee07 696 m_nSelection = wxNOT_FOUND;
df7145da
VZ
697 }
698 else // notebook still not empty
699 {
01c8cbf5 700 int selNew = TabCtrl_GetCurSel(GetHwnd());
5482ee07 701 if ( selNew != wxNOT_FOUND )
df7145da 702 {
623f5f70 703 // No selection change, just refresh the current selection.
078cf5cb
WS
704 // Because it could be that the slection index changed
705 // we need to update it.
623f5f70
JS
706 // Note: this does not mean the selection it self changed.
707 m_nSelection = selNew;
708 m_pages[m_nSelection]->Refresh();
df7145da 709 }
623f5f70 710 else if (int(nPage) == m_nSelection)
43a997b6 711 {
623f5f70 712 // The selection was deleted.
078cf5cb 713
623f5f70
JS
714 // Determine new selection.
715 if (m_nSelection == int(GetPageCount()))
716 selNew = m_nSelection - 1;
717 else
718 selNew = m_nSelection;
078cf5cb 719
43a997b6
VZ
720 // m_nSelection must be always valid so reset it before calling
721 // SetSelection()
5482ee07 722 m_nSelection = wxNOT_FOUND;
43a997b6
VZ
723 SetSelection(selNew);
724 }
623f5f70
JS
725 else
726 {
727 wxFAIL; // Windows did not behave ok.
728 }
df7145da 729 }
47f12f58 730
df7145da 731 return pageRemoved;
621793f4
JS
732}
733
88310e2e
VZ
734// remove all pages
735bool wxNotebook::DeleteAllPages()
736{
7ec69821
WS
737 size_t nPageCount = GetPageCount();
738 size_t nPage;
739 for ( nPage = 0; nPage < nPageCount; nPage++ )
740 delete m_pages[nPage];
88310e2e 741
7ec69821 742 m_pages.Clear();
88310e2e 743
7ec69821 744 TabCtrl_DeleteAllItems(GetHwnd());
907f37b3 745
5482ee07 746 m_nSelection = wxNOT_FOUND;
47f12f58 747
7ec69821
WS
748 InvalidateBestSize();
749 return true;
88310e2e
VZ
750}
751
88310e2e 752// same as AddPage() but does it at given position
8d34bf5c 753bool wxNotebook::InsertPage(size_t nPage,
88310e2e
VZ
754 wxNotebookPage *pPage,
755 const wxString& strText,
756 bool bSelect,
757 int imageId)
758{
9a83f860 759 wxCHECK_MSG( pPage != NULL, false, wxT("NULL page in wxNotebook::InsertPage") );
b8bdaa7c 760 wxCHECK_MSG( IS_VALID_PAGE(nPage) || nPage == GetPageCount(), false,
9a83f860 761 wxT("invalid index in wxNotebook::InsertPage") );
88310e2e 762
efa14cf2 763 wxASSERT_MSG( pPage->GetParent() == this,
9a83f860 764 wxT("notebook pages must have notebook as parent") );
43427087 765
22f3361e
VZ
766 // add a new tab to the control
767 // ----------------------------
58a8ab88 768
22f3361e
VZ
769 // init all fields to 0
770 TC_ITEM tcItem;
771 wxZeroMemory(tcItem);
58a8ab88 772
22f3361e
VZ
773 // set the image, if any
774 if ( imageId != -1 )
775 {
776 tcItem.mask |= TCIF_IMAGE;
777 tcItem.iImage = imageId;
778 }
88310e2e 779
22f3361e 780 // and the text
8b5d5223 781 if ( !strText.empty() )
22f3361e
VZ
782 {
783 tcItem.mask |= TCIF_TEXT;
c9f78968 784 tcItem.pszText = (wxChar *)strText.wx_str(); // const_cast
22f3361e 785 }
43427087 786
e830a6a6
RD
787 // hide the page: unless it is selected, it shouldn't be shown (and if it
788 // is selected it will be shown later)
789 HWND hwnd = GetWinHwnd(pPage);
790 SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) & ~WS_VISIBLE);
791
792 // this updates internal flag too -- otherwise it would get out of sync
793 // with the real state
794 pPage->Show(false);
795
796
22f3361e
VZ
797 // fit the notebook page to the tab control's display area: this should be
798 // done before adding it to the notebook or TabCtrl_InsertItem() will
799 // change the notebooks size itself!
2015f2b3 800 AdjustPageSize(pPage);
43427087 801
22f3361e 802 // finally do insert it
01c8cbf5 803 if ( TabCtrl_InsertItem(GetHwnd(), nPage, &tcItem) == -1 )
2015f2b3 804 {
22f3361e 805 wxLogError(wxT("Can't create the notebook page '%s'."), strText.c_str());
88310e2e 806
b8bdaa7c 807 return false;
22f3361e 808 }
88310e2e 809
ebd9ec29
JG
810 // need to update the bg brush when the first page is added
811 // so the first panel gets the correct themed background
812 if ( m_pages.empty() )
813 {
11e70ae6 814#if wxUSE_UXTHEME
ebd9ec29 815 UpdateBgBrush();
11e70ae6 816#endif // wxUSE_UXTHEME
ebd9ec29
JG
817 }
818
22f3361e
VZ
819 // succeeded: save the pointer to the page
820 m_pages.Insert(pPage, nPage);
42e69d6b 821
ebfee179
VZ
822 // also ensure that the notebook background is used for its pages by making
823 // them transparent: this ensures that MSWGetBgBrush() queries the notebook
824 // for the background brush to be used for erasing them
825 if ( wxPanel *panel = wxDynamicCast(pPage, wxPanel) )
826 {
827 panel->MSWSetTransparentBackground();
828 }
829
56b9925b
VZ
830 // we may need to adjust the size again if the notebook size changed:
831 // normally this only happens for the first page we add (the tabs which
832 // hadn't been there before are now shown) but for a multiline notebook it
833 // can happen for any page at all as a new row could have been started
834 if ( m_pages.GetCount() == 1 || HasFlag(wxNB_MULTILINE) )
2015f2b3
VZ
835 {
836 AdjustPageSize(pPage);
837 }
838
22f3361e
VZ
839 // now deal with the selection
840 // ---------------------------
841
842 // if the inserted page is before the selected one, we must update the
843 // index of the selected page
34a0c9f4 844 if ( int(nPage) <= m_nSelection )
22f3361e
VZ
845 {
846 // one extra page added
847 m_nSelection++;
848 }
849
850 // some page should be selected: either this one or the first one if there
851 // is still no selection
5482ee07 852 int selNew = wxNOT_FOUND;
22f3361e
VZ
853 if ( bSelect )
854 selNew = nPage;
5482ee07 855 else if ( m_nSelection == wxNOT_FOUND )
22f3361e
VZ
856 selNew = 0;
857
5482ee07 858 if ( selNew != wxNOT_FOUND )
22f3361e
VZ
859 SetSelection(selNew);
860
37144cf0 861 InvalidateBestSize();
25057aba 862
b8bdaa7c 863 return true;
88310e2e
VZ
864}
865
e450aa69 866int wxNotebook::HitTest(const wxPoint& pt, long *flags) const
ef094fa0
JS
867{
868 TC_HITTESTINFO hitTestInfo;
869 hitTestInfo.pt.x = pt.x;
870 hitTestInfo.pt.y = pt.y;
e450aa69 871 int item = TabCtrl_HitTest(GetHwnd(), &hitTestInfo);
ef094fa0 872
e450aa69
VZ
873 if ( flags )
874 {
875 *flags = 0;
876
877 if ((hitTestInfo.flags & TCHT_NOWHERE) == TCHT_NOWHERE)
9804d540 878 *flags |= wxBK_HITTEST_NOWHERE;
e450aa69 879 if ((hitTestInfo.flags & TCHT_ONITEM) == TCHT_ONITEM)
9804d540 880 *flags |= wxBK_HITTEST_ONITEM;
e450aa69 881 if ((hitTestInfo.flags & TCHT_ONITEMICON) == TCHT_ONITEMICON)
9804d540 882 *flags |= wxBK_HITTEST_ONICON;
e450aa69 883 if ((hitTestInfo.flags & TCHT_ONITEMLABEL) == TCHT_ONITEMLABEL)
9804d540 884 *flags |= wxBK_HITTEST_ONLABEL;
22a35096 885 if ( item == wxNOT_FOUND && GetPageSize().Contains(pt) )
9804d540 886 *flags |= wxBK_HITTEST_ONPAGE;
e450aa69 887 }
ef094fa0
JS
888
889 return item;
890}
891
014ee083
VZ
892// ----------------------------------------------------------------------------
893// flicker-less notebook redraw
894// ----------------------------------------------------------------------------
895
896#if USE_NOTEBOOK_ANTIFLICKER
897
898// wnd proc for the spin button
899LRESULT APIENTRY _EXPORT wxNotebookSpinBtnWndProc(HWND hwnd,
900 UINT message,
901 WPARAM wParam,
902 LPARAM lParam)
903{
904 if ( message == WM_ERASEBKGND )
905 return 0;
906
907 return ::CallWindowProc(CASTWNDPROC gs_wndprocNotebookSpinBtn,
908 hwnd, message, wParam, lParam);
909}
910
6143d3b6
VZ
911LRESULT APIENTRY _EXPORT wxNotebookWndProc(HWND hwnd,
912 UINT message,
913 WPARAM wParam,
914 LPARAM lParam)
915{
916 return ::CallWindowProc(CASTWNDPROC gs_wndprocNotebook,
917 hwnd, message, wParam, lParam);
918}
919
014ee083
VZ
920void wxNotebook::OnEraseBackground(wxEraseEvent& WXUNUSED(event))
921{
922 // do nothing here
923}
924
925void wxNotebook::OnPaint(wxPaintEvent& WXUNUSED(event))
926{
927 wxPaintDC dc(this);
928 wxMemoryDC memdc;
929 RECT rc;
930 ::GetClientRect(GetHwnd(), &rc);
931 wxBitmap bmp(rc.right, rc.bottom);
932 memdc.SelectObject(bmp);
933
6614aa49
VZ
934 const wxLayoutDirection dir = dc.GetLayoutDirection();
935 memdc.SetLayoutDirection(dir);
936
014ee083 937 // if there is no special brush just use the solid background colour
64c288fa 938#if wxUSE_UXTHEME
014ee083 939 HBRUSH hbr = (HBRUSH)m_hbrBackground;
64c288fa
JS
940#else
941 HBRUSH hbr = 0;
e4db172a 942#endif
e32703a9 943 wxBrush brush;
014ee083 944 if ( !hbr )
e32703a9
VZ
945 {
946 brush = wxBrush(GetBackgroundColour());
947 hbr = GetHbrushOf(brush);
948 }
014ee083 949
888dde65 950 wxMSWDCImpl *impl = (wxMSWDCImpl*) memdc.GetImpl();
014ee083 951
888dde65
RR
952 ::FillRect(GetHdcOf(*impl), &rc, hbr);
953
954 MSWDefWindowProc(WM_PAINT, (WPARAM)(impl->GetHDC()), 0);
014ee083 955
f4322df6 956 // For some reason in RTL mode, source offset has to be -1, otherwise the
6614aa49
VZ
957 // right border (physical) remains unpainted.
958 const wxCoord ofs = dir == wxLayout_RightToLeft ? -1 : 0;
959 dc.Blit(ofs, 0, rc.right, rc.bottom, &memdc, ofs, 0);
014ee083
VZ
960}
961
962#endif // USE_NOTEBOOK_ANTIFLICKER
e450aa69 963
88310e2e
VZ
964// ----------------------------------------------------------------------------
965// wxNotebook callbacks
966// ----------------------------------------------------------------------------
967
9026ad85 968void wxNotebook::OnSize(wxSizeEvent& event)
88310e2e 969{
7dccdf81 970 if ( GetPageCount() == 0 )
f7eaa62f
JS
971 {
972 // Prevents droppings on resize, but does cause some flicker
973 // when there are no pages.
2aa24b60 974 Refresh();
f7eaa62f
JS
975 event.Skip();
976 return;
977 }
254fbd14
JS
978#ifndef __WXWINCE__
979 else
980 {
981 // Without this, we can sometimes get droppings at the edges
982 // of a notebook, for example a notebook in a splitter window.
983 // This needs to be reconciled with the RefreshRect calls
984 // at the end of this function, which weren't enough to prevent
985 // the droppings.
01c8cbf5 986
254fbd14
JS
987 wxSize sz = GetClientSize();
988
989 // Refresh right side
990 wxRect rect(sz.x-4, 0, 4, sz.y);
991 RefreshRect(rect);
01c8cbf5 992
254fbd14
JS
993 // Refresh bottom side
994 rect = wxRect(0, sz.y-4, sz.x, 4);
995 RefreshRect(rect);
01c8cbf5 996
254fbd14
JS
997 // Refresh left side
998 rect = wxRect(0, 0, 4, sz.y);
999 RefreshRect(rect);
1000 }
014ee083 1001#endif // !__WXWINCE__
f7eaa62f 1002
c1637c89 1003 // fit all the notebook pages to the tab control's display area
56b9925b 1004
c1637c89
VZ
1005 RECT rc;
1006 rc.left = rc.top = 0;
1007 GetSize((int *)&rc.right, (int *)&rc.bottom);
56b9925b 1008
c1637c89
VZ
1009 // save the total size, we'll use it below
1010 int widthNbook = rc.right - rc.left,
1011 heightNbook = rc.bottom - rc.top;
1012
1013 // there seems to be a bug in the implementation of TabCtrl_AdjustRect(): it
1014 // returns completely false values for multiline tab controls after the tabs
1015 // are added but before getting the first WM_SIZE (off by ~50 pixels, see
1016 //
1017 // http://sf.net/tracker/index.php?func=detail&aid=645323&group_id=9863&atid=109863
1018 //
1019 // and the only work around I could find was this ugly hack... without it
1020 // simply toggling the "multiline" checkbox in the notebook sample resulted
1021 // in a noticeable page displacement
1022 if ( HasFlag(wxNB_MULTILINE) )
1023 {
1024 // avoid an infinite recursion: we get another notification too!
1025 static bool s_isInOnSize = false;
4b7f2165 1026
c1637c89
VZ
1027 if ( !s_isInOnSize )
1028 {
1029 s_isInOnSize = true;
1030 SendMessage(GetHwnd(), WM_SIZE, SIZE_RESTORED,
1031 MAKELPARAM(rc.right, rc.bottom));
1032 s_isInOnSize = false;
1033 }
49ac39e3
VZ
1034
1035 // The best size depends on the number of rows of tabs, which can
1036 // change when the notepad is resized.
1037 InvalidateBestSize();
c1637c89 1038 }
b5c3b538 1039
e2f6f8da
RD
1040#if wxUSE_UXTHEME
1041 // background bitmap size has changed, update the brush using it too
1042 UpdateBgBrush();
1043#endif // wxUSE_UXTHEME
1044
01c8cbf5 1045 TabCtrl_AdjustRect(GetHwnd(), false, &rc);
c1637c89
VZ
1046
1047 int width = rc.right - rc.left,
1048 height = rc.bottom - rc.top;
1049 size_t nCount = m_pages.Count();
1050 for ( size_t nPage = 0; nPage < nCount; nPage++ ) {
1051 wxNotebookPage *pPage = m_pages[nPage];
1052 pPage->SetSize(rc.left, rc.top, width, height);
1053 }
1054
1055
1056 // unless we had already repainted everything, we now need to refresh
1057 if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE) )
1058 {
1059 // invalidate areas not covered by pages
1060 RefreshRect(wxRect(0, 0, widthNbook, rc.top), false);
1061 RefreshRect(wxRect(0, rc.top, rc.left, height), false);
1062 RefreshRect(wxRect(0, rc.bottom, widthNbook, heightNbook - rc.bottom),
1063 false);
3550706d 1064 RefreshRect(wxRect(rc.right, rc.top, widthNbook - rc.right, height),
c1637c89
VZ
1065 false);
1066 }
1067
014ee083
VZ
1068#if USE_NOTEBOOK_ANTIFLICKER
1069 // subclass the spin control used by the notebook to scroll pages to
1070 // prevent it from flickering on resize
dfb47d83 1071 if ( !m_hasSubclassedUpdown )
014ee083
VZ
1072 {
1073 // iterate over all child windows to find spin button
1074 for ( HWND child = ::GetWindow(GetHwnd(), GW_CHILD);
1075 child;
1076 child = ::GetWindow(child, GW_HWNDNEXT) )
1077 {
1078 wxWindow *childWindow = wxFindWinFromHandle((WXHWND)child);
1079
1080 // see if it exists, if no wxWindow found then assume it's the spin
1081 // btn
1082 if ( !childWindow )
1083 {
1084 // subclass the spin button to override WM_ERASEBKGND
dfb47d83
VZ
1085 if ( !gs_wndprocNotebookSpinBtn )
1086 gs_wndprocNotebookSpinBtn = (WXFARPROC)wxGetWindowProc(child);
014ee083
VZ
1087
1088 wxSetWindowProc(child, wxNotebookSpinBtnWndProc);
dfb47d83 1089 m_hasSubclassedUpdown = true;
014ee083
VZ
1090 break;
1091 }
1092 }
1093 }
1094#endif // USE_NOTEBOOK_ANTIFLICKER
1095
c1637c89 1096 event.Skip();
88310e2e
VZ
1097}
1098
3e97a905 1099void wxNotebook::OnSelChange(wxBookCtrlEvent& event)
88310e2e 1100{
1d6fcbcc
VZ
1101 // is it our tab control?
1102 if ( event.GetEventObject() == this )
1103 {
1104 UpdateSelection(event.GetSelection());
1105 }
88310e2e 1106
1d6fcbcc
VZ
1107 // we want to give others a chance to process this message as well
1108 event.Skip();
88310e2e
VZ
1109}
1110
88310e2e
VZ
1111void wxNotebook::OnNavigationKey(wxNavigationKeyEvent& event)
1112{
d9506e77
VZ
1113 if ( event.IsWindowChange() ) {
1114 // change pages
1115 AdvanceSelection(event.GetDirection());
1116 }
1117 else {
b8bdaa7c 1118 // we get this event in 3 cases
d9506e77
VZ
1119 //
1120 // a) one of our pages might have generated it because the user TABbed
1121 // out from it in which case we should propagate the event upwards and
1122 // our parent will take care of setting the focus to prev/next sibling
1123 //
1124 // or
1125 //
1126 // b) the parent panel wants to give the focus to us so that we
1127 // forward it to our selected page. We can't deal with this in
1128 // OnSetFocus() because we don't know which direction the focus came
1129 // from in this case and so can't choose between setting the focus to
1130 // first or last panel child
b8bdaa7c
VZ
1131 //
1132 // or
1133 //
1134 // c) we ourselves (see MSWTranslateMessage) generated the event
1135 //
1136 wxWindow * const parent = GetParent();
1137
3c99602b
MB
1138 // the wxObject* casts are required to avoid MinGW GCC 2.95.3 ICE
1139 const bool isFromParent = event.GetEventObject() == (wxObject*) parent;
1140 const bool isFromSelf = event.GetEventObject() == (wxObject*) this;
4a0dcc87 1141 const bool isForward = event.GetDirection();
b8bdaa7c 1142
4a0dcc87
VS
1143 if ( isFromSelf && !isForward )
1144 {
1145 // focus is currently on notebook tab and should leave
1146 // it backwards (Shift-TAB)
1147 event.SetCurrentFocus(this);
1148 parent->HandleWindowEvent(event);
1149 }
1150 else if ( isFromParent || isFromSelf )
d9506e77 1151 {
b8bdaa7c 1152 // no, it doesn't come from child, case (b) or (c): forward to a
4a0dcc87
VS
1153 // page but only if entering notebook page (i.e. direction is
1154 // backwards (Shift-TAB) comething from out-of-notebook, or
1155 // direction is forward (TAB) from ourselves),
5482ee07 1156 if ( m_nSelection != wxNOT_FOUND &&
b8bdaa7c 1157 (!event.GetDirection() || isFromSelf) )
d9506e77
VZ
1158 {
1159 // so that the page knows that the event comes from it's parent
1160 // and is being propagated downwards
1161 event.SetEventObject(this);
1162
1e6feb95 1163 wxWindow *page = m_pages[m_nSelection];
937013e0 1164 if ( !page->HandleWindowEvent(event) )
d9506e77
VZ
1165 {
1166 page->SetFocus();
1167 }
1168 //else: page manages focus inside it itself
1169 }
b8bdaa7c 1170 else // otherwise set the focus to the notebook itself
d9506e77 1171 {
d9506e77
VZ
1172 SetFocus();
1173 }
1174 }
1175 else
1176 {
b8bdaa7c
VZ
1177 // it comes from our child, case (a), pass to the parent, but only
1178 // if the direction is forwards. Otherwise set the focus to the
1179 // notebook itself. The notebook is always the 'first' control of a
1180 // page.
4a0dcc87 1181 if ( !isForward )
b8bdaa7c
VZ
1182 {
1183 SetFocus();
1184 }
1185 else if ( parent )
1186 {
d9506e77 1187 event.SetCurrentFocus(this);
937013e0 1188 parent->HandleWindowEvent(event);
d9506e77
VZ
1189 }
1190 }
88310e2e 1191 }
88310e2e
VZ
1192}
1193
caf95d2a
VZ
1194#if wxUSE_UXTHEME
1195
c3732409 1196bool wxNotebook::DoDrawBackground(WXHDC hDC, wxWindow *child)
caf95d2a 1197{
c3732409
VZ
1198 wxUxThemeHandle theme(child ? child : this, L"TAB");
1199 if ( !theme )
1200 return false;
1201
1202 // get the notebook client rect (we're not interested in drawing tabs
1203 // themselves)
1204 wxRect r = GetPageSize();
1205 if ( r.IsEmpty() )
1206 return false;
1207
c4a95f6f 1208 RECT rc;
c3732409
VZ
1209 wxCopyRectToRECT(r, rc);
1210
1211 // map rect to the coords of the window we're drawing in
1212 if ( child )
1213 ::MapWindowPoints(GetHwnd(), GetHwndOf(child), (POINT *)&rc, 2);
1214
2ff53fd3
JS
1215 // we have the content area (page size), but we need to draw all of the
1216 // background for it to be aligned correctly
1217 wxUxThemeEngine::Get()->GetThemeBackgroundExtent
1218 (
1219 theme,
1220 (HDC) hDC,
1221 9 /* TABP_PANE */,
1222 0,
1223 &rc,
1224 &rc
1225 );
c3732409
VZ
1226 wxUxThemeEngine::Get()->DrawThemeBackground
1227 (
1228 theme,
92199f4c 1229 (HDC) hDC,
c3732409
VZ
1230 9 /* TABP_PANE */,
1231 0,
1232 &rc,
1233 NULL
1234 );
1235
1236 return true;
1237}
de359565 1238
c3732409
VZ
1239WXHBRUSH wxNotebook::QueryBgBitmap()
1240{
1241 wxRect r = GetPageSize();
1242 if ( r.IsEmpty() )
1243 return 0;
c4a95f6f
VZ
1244
1245 WindowHDC hDC(GetHwnd());
1246 MemoryHDC hDCMem(hDC);
c3732409 1247 CompatibleBitmap hBmp(hDC, r.x + r.width, r.y + r.height);
c4a95f6f
VZ
1248
1249 SelectInHDC selectBmp(hDCMem, hBmp);
caf95d2a 1250
c3732409
VZ
1251 if ( !DoDrawBackground((WXHDC)(HDC)hDCMem) )
1252 return 0;
0f770734 1253
de359565 1254 return (WXHBRUSH)::CreatePatternBrush(hBmp);
c4a95f6f 1255}
caf95d2a 1256
c4a95f6f
VZ
1257void wxNotebook::UpdateBgBrush()
1258{
1259 if ( m_hbrBackground )
1260 ::DeleteObject((HBRUSH)m_hbrBackground);
caf95d2a 1261
c4a95f6f
VZ
1262 if ( !m_hasBgCol && wxUxThemeEngine::GetIfActive() )
1263 {
de359565 1264 m_hbrBackground = QueryBgBitmap();
caf95d2a 1265 }
c3732409 1266 else // no themes or we've got user-defined solid colour
caf95d2a
VZ
1267 {
1268 m_hbrBackground = NULL;
1269 }
1270}
1271
b8797d96 1272WXHBRUSH wxNotebook::MSWGetBgBrushForChild(WXHDC hDC, wxWindow *child)
caf95d2a 1273{
ebfee179 1274 if ( m_hbrBackground )
caf95d2a
VZ
1275 {
1276 // before drawing with the background brush, we need to position it
1277 // correctly
caf95d2a 1278 RECT rc;
b8797d96 1279 ::GetWindowRect(GetHwndOf(child), &rc);
caf95d2a
VZ
1280
1281 ::MapWindowPoints(NULL, GetHwnd(), (POINT *)&rc, 1);
1282
5c836c46 1283 if ( !::SetBrushOrgEx((HDC)hDC, -rc.left, -rc.top, NULL) )
caf95d2a 1284 {
9a83f860 1285 wxLogLastError(wxT("SetBrushOrgEx(notebook bg brush)"));
caf95d2a 1286 }
c4a95f6f
VZ
1287
1288 return m_hbrBackground;
5c836c46
VZ
1289 }
1290
b8797d96 1291 return wxNotebookBase::MSWGetBgBrushForChild(hDC, child);
5c836c46 1292}
caf95d2a 1293
c3732409 1294bool wxNotebook::MSWPrintChild(WXHDC hDC, wxWindow *child)
07c19327 1295{
c3732409
VZ
1296 // solid background colour overrides themed background drawing
1297 if ( !UseBgCol() && DoDrawBackground(hDC, child) )
1298 return true;
de359565 1299
4dab5279
JS
1300 // If we're using a solid colour (for example if we've switched off
1301 // theming for this notebook), paint it
1302 if (UseBgCol())
1303 {
1304 wxRect r = GetPageSize();
1305 if ( r.IsEmpty() )
1306 return false;
1307
1308 RECT rc;
1309 wxCopyRectToRECT(r, rc);
1310
1311 // map rect to the coords of the window we're drawing in
1312 if ( child )
1313 ::MapWindowPoints(GetHwnd(), GetHwndOf(child), (POINT *)&rc, 2);
1314
1315 wxBrush brush(GetBackgroundColour());
1316 HBRUSH hbr = GetHbrushOf(brush);
01c8cbf5 1317
4dab5279
JS
1318 ::FillRect((HDC) hDC, &rc, hbr);
1319
1320 return true;
1321 }
1322
c3732409 1323 return wxNotebookBase::MSWPrintChild(hDC, child);
07c19327
VZ
1324}
1325
caf95d2a
VZ
1326#endif // wxUSE_UXTHEME
1327
25057aba
JS
1328// Windows only: attempts to get colour for UX theme page background
1329wxColour wxNotebook::GetThemeBackgroundColour() const
1330{
1331#if wxUSE_UXTHEME
1332 if (wxUxThemeEngine::Get())
1333 {
1334 wxUxThemeHandle hTheme((wxNotebook*) this, L"TAB");
1335 if (hTheme)
1336 {
1337 // This is total guesswork.
b380533c
JS
1338 // See PlatformSDK\Include\Tmschema.h for values.
1339 // JACS: can also use 9 (TABP_PANE)
25057aba 1340 COLORREF themeColor;
b380533c 1341 bool success = (S_OK == wxUxThemeEngine::Get()->GetThemeColor(
25057aba
JS
1342 hTheme,
1343 10 /* TABP_BODY */,
1344 1 /* NORMAL */,
1345 3821 /* FILLCOLORHINT */,
b380533c
JS
1346 &themeColor));
1347 if (!success)
1348 return GetBackgroundColour();
25057aba
JS
1349
1350 /*
1351 [DS] Workaround for WindowBlinds:
1352 Some themes return a near black theme color using FILLCOLORHINT,
1353 this makes notebook pages have an ugly black background and makes
1354 text (usually black) unreadable. Retry again with FILLCOLOR.
1355
1356 This workaround potentially breaks appearance of some themes,
1357 but in practice it already fixes some themes.
1358 */
1359 if (themeColor == 1)
1360 {
1361 wxUxThemeEngine::Get()->GetThemeColor(
1362 hTheme,
1363 10 /* TABP_BODY */,
1364 1 /* NORMAL */,
1365 3802 /* FILLCOLOR */,
1366 &themeColor);
1367 }
1368
b380533c
JS
1369 wxColour colour = wxRGBToColour(themeColor);
1370
1371 // Under Vista, the tab background colour is reported incorrectly.
1372 // So for the default theme at least, hard-code the colour to something
1373 // that will blend in.
1374
1375 static int s_AeroStatus = -1;
1376 if (s_AeroStatus == -1)
1377 {
1378 WCHAR szwThemeFile[1024];
1379 WCHAR szwThemeColor[256];
1380 if (S_OK == wxUxThemeEngine::Get()->GetCurrentThemeName(szwThemeFile, 1024, szwThemeColor, 256, NULL, 0))
1381 {
1382 wxString themeFile(szwThemeFile), themeColor(szwThemeColor);
1383 if (themeFile.Find(wxT("Aero")) != -1 && themeColor == wxT("NormalColor"))
1384 s_AeroStatus = 1;
1385 else
1386 s_AeroStatus = 0;
1387 }
1388 else
1389 s_AeroStatus = 0;
1390 }
1391
1392 if (s_AeroStatus == 1)
1393 colour = wxColour(255, 255, 255);
1394
1395 return colour;
25057aba
JS
1396 }
1397 }
1398#endif // wxUSE_UXTHEME
1399
1400 return GetBackgroundColour();
1401}
1402
88310e2e
VZ
1403// ----------------------------------------------------------------------------
1404// wxNotebook base class virtuals
1405// ----------------------------------------------------------------------------
b5c3b538 1406
0b481c72
VZ
1407#if wxUSE_CONSTRAINTS
1408
b5c3b538
VZ
1409// override these 2 functions to do nothing: everything is done in OnSize
1410
4b7f2165 1411void wxNotebook::SetConstraintSizes(bool WXUNUSED(recurse))
b5c3b538
VZ
1412{
1413 // don't set the sizes of the pages - their correct size is not yet known
b8bdaa7c 1414 wxControl::SetConstraintSizes(false);
b5c3b538
VZ
1415}
1416
4b7f2165 1417bool wxNotebook::DoPhase(int WXUNUSED(nPhase))
b5c3b538 1418{
b8bdaa7c 1419 return true;
b5c3b538
VZ
1420}
1421
0b481c72
VZ
1422#endif // wxUSE_CONSTRAINTS
1423
0df3fbd7
VZ
1424// ----------------------------------------------------------------------------
1425// wxNotebook Windows message handlers
1426// ----------------------------------------------------------------------------
1427
1428bool wxNotebook::MSWOnScroll(int orientation, WXWORD nSBCode,
1429 WXWORD pos, WXHWND control)
1430{
1431 // don't generate EVT_SCROLLWIN events for the WM_SCROLLs coming from the
1432 // up-down control
1433 if ( control )
b8bdaa7c 1434 return false;
0df3fbd7
VZ
1435
1436 return wxNotebookBase::MSWOnScroll(orientation, nSBCode, pos, control);
1437}
1438
a23fd0e1 1439bool wxNotebook::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM* result)
88310e2e 1440{
3e97a905 1441 wxBookCtrlEvent event(wxEVT_NULL, m_windowId);
88310e2e
VZ
1442
1443 NMHDR* hdr = (NMHDR *)lParam;
1444 switch ( hdr->code ) {
1445 case TCN_SELCHANGE:
1446 event.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED);
1447 break;
1448
1449 case TCN_SELCHANGING:
1450 event.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING);
1451 break;
1452
fd3f686c 1453 default:
a23fd0e1 1454 return wxControl::MSWOnNotify(idCtrl, lParam, result);
88310e2e
VZ
1455 }
1456
01c8cbf5 1457 event.SetSelection(TabCtrl_GetCurSel(GetHwnd()));
93a19f17 1458 event.SetOldSelection(m_nSelection);
88310e2e 1459 event.SetEventObject(this);
a23fd0e1 1460 event.SetInt(idCtrl);
88310e2e 1461
937013e0 1462 bool processed = HandleWindowEvent(event);
fd3f686c
VZ
1463 *result = !event.IsAllowed();
1464 return processed;
88310e2e
VZ
1465}
1466
1e6feb95 1467#endif // wxUSE_NOTEBOOK