// Purpose: Generic implementation of wxTimePickerCtrl.
// Author: Paul Breen, Vadim Zeitlin
// Created: 2011-09-22
-// RCS-ID: $Id: wxhead.h,v 1.12 2010-04-22 12:44:51 zeitlin Exp $
// Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
virtual void DoMoveWindow(int x, int y, int width, int height);
- // This is a really ugly hack but to compile this class in wxMSW we must
- // define these functions even though they are never called because they're
- // only used by the native implementation.
-#ifdef __WXMSW__
- virtual wxLocaleInfo MSWGetFormat() const
- {
- wxFAIL_MSG( "Unreachable" );
- return wxLOCALE_TIME_FMT;
- }
-
- virtual bool MSWAllowsNone() const
- {
- wxFAIL_MSG( "Unreachable" );
- return false;
- }
-
- virtual bool MSWOnDateTimeChange(const tagNMDATETIMECHANGE& WXUNUSED(dtch))
- {
- wxFAIL_MSG( "Unreachable" );
- return false;
- }
-#endif // __WXMSW__
-
private:
void Init();