// Author: Vadim Zeitlin
// Modified by: Ron Lee
// Created: 01/02/97
-// RCS-ID: $Id$
// Copyright: (c) Vadim Zeitlin
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// ----------
// can the window have the scrollbar in this orientation?
- bool CanScroll(int orient) const
- {
- return (m_windowStyle &
- (orient == wxHORIZONTAL ? wxHSCROLL : wxVSCROLL)) != 0;
- }
+ virtual bool CanScroll(int orient) const;
// does the window have the scrollbar in this orientation?
bool HasScrollbar(int orient) const;
// base for dialog unit conversion, i.e. average character size
wxSize GetDlgUnitBase() const;
- // the stack of windows which have captured the mouse
- static struct WXDLLIMPEXP_FWD_CORE wxWindowNext *ms_winCaptureNext;
-
- // the window that currently has mouse capture
- static wxWindow *ms_winCaptureCurrent;
-
- // indicates if execution is inside CaptureMouse/ReleaseMouse
- static bool ms_winCaptureChanging;
-
// number of Freeze() calls minus the number of Thaw() calls: we're frozen
// (i.e. not being updated) if it is positive