// common part of all ctors (not virtual because called from ctor)
void Init();
- virtual void DoMoveInTabOrder(wxWindow *win, MoveKind move);
+ virtual void DoMoveInTabOrder(wxWindow *win, WindowOrder move);
virtual bool DoNavigateIn(int flags);
m_mainWin = new wxListMainWindow( this, wxID_ANY, wxPoint(0, 0), size, style );
+#ifdef __WXMAC__
// Human Interface Guidelines ask us for a special font in this case
if ( GetWindowVariant() == wxWINDOW_VARIANT_NORMAL )
{
font.MacCreateThemeFont( kThemeViewsFont );
SetFont( font );
}
+#endif
if ( InReportView() )
{
CreateHeaderWindow();
+#ifdef __WXMAC__
if (m_headerWin)
{
wxFont font;
m_headerWin->SetFont( font );
CalculateAndSetHeaderHeight();
}
+#endif
if ( HasFlag(wxLC_NO_HEADER) )
// VZ: why do we create it at all then?
return x;
}
-void wxWindowGTK::DoMoveInTabOrder(wxWindow *win, MoveKind move)
+void wxWindowGTK::DoMoveInTabOrder(wxWindow *win, WindowOrder move)
{
wxWindowBase::DoMoveInTabOrder(win, move);
m_dirtyTabOrder = true;