2. several wxDateTime bugs corrected, a couple of missing functions added 3. GetBestSize() corrections for several wxGTK controls 4. wxStaticLine doesn't get focus any more under MSW 5. added DoMoveWindow() to wxMotif git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5142 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
40 lines
1.6 KiB
C++
40 lines
1.6 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/calctrl.h
|
|
// Purpose: date-picker control
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 29.12.99
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
|
// Licence: wxWindows license
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_CALCTRL_H
|
|
#define _WX_CALCTRL_H
|
|
|
|
// so far we only have a generic version, so keep it simple
|
|
#include "wx/generic/calctrl.h"
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxCalendarCtrl events
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class WXDLLEXPORT wxCalendarEvent : public wxCommandEvent
|
|
{
|
|
public:
|
|
wxCalendarEvent() { }
|
|
wxCalendarEvent(wxCalendarCtrl *cal, wxEventType type);
|
|
|
|
const wxDateTime& GetDate() const { return m_date; }
|
|
|
|
private:
|
|
wxDateTime m_date;
|
|
};
|
|
|
|
#define EVT_CALENDAR(id, fn) { wxEVT_CALENDAR_SEL_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
|
|
#define EVT_CALENDAR_DAY(id, fn) { wxEVT_CALENDAR_DAY_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
|
|
#define EVT_CALENDAR_MONTH(id, fn) { wxEVT_CALENDAR_MONTH_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
|
|
#define EVT_CALENDAR_YEAR(id, fn) { wxEVT_CALENDAR_YEAR_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
|
|
|
|
#endif // _WX_CALCTRL_H
|