1999-12-29 19:18:01 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// 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
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2000-01-02 23:17:55 +00:00
|
|
|
/*
|
|
|
|
TODO
|
|
|
|
|
|
|
|
1. implement multiple selections for date ranges
|
|
|
|
2. background bitmap for the calendar?
|
|
|
|
*/
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#ifndef _WX_CALCTRL_H_
|
|
|
|
#define _WX_CALCTRL_H_
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_CALENDARCTRL
|
1999-12-29 19:18:01 +00:00
|
|
|
|
2000-01-02 23:17:55 +00:00
|
|
|
#include "wx/datetime.h"
|
|
|
|
|
2001-11-02 15:42:51 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxCalendarCtrl flags
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
// show Sunday as the first day of the week (default)
|
|
|
|
wxCAL_SUNDAY_FIRST = 0x0000,
|
|
|
|
|
|
|
|
// show Monder as the first day of the week
|
|
|
|
wxCAL_MONDAY_FIRST = 0x0001,
|
|
|
|
|
|
|
|
// highlight holidays
|
|
|
|
wxCAL_SHOW_HOLIDAYS = 0x0002,
|
|
|
|
|
|
|
|
// disable the year change control, show only the month change one
|
|
|
|
wxCAL_NO_YEAR_CHANGE = 0x0004,
|
|
|
|
|
|
|
|
// don't allow changing neither month nor year (implies
|
|
|
|
// wxCAL_NO_YEAR_CHANGE)
|
|
|
|
wxCAL_NO_MONTH_CHANGE = 0x000c,
|
|
|
|
|
|
|
|
// use MS-style month-selection instead of combo-spin combination
|
|
|
|
wxCAL_SEQUENTIAL_MONTH_SELECTION = 0x0010,
|
|
|
|
|
|
|
|
// show the neighbouring weeks in the previous and next month
|
|
|
|
wxCAL_SHOW_SURROUNDING_WEEKS = 0x0020
|
|
|
|
};
|
|
|
|
|
1999-12-30 18:21:42 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// return values for the HitTest() method
|
|
|
|
enum wxCalendarHitTestResult
|
|
|
|
{
|
|
|
|
wxCAL_HITTEST_NOWHERE, // outside of anything
|
|
|
|
wxCAL_HITTEST_HEADER, // on the header (weekdays)
|
2001-11-02 15:42:51 +00:00
|
|
|
wxCAL_HITTEST_DAY, // on a day in the calendar
|
|
|
|
wxCAL_HITTEST_INCMONTH,
|
|
|
|
wxCAL_HITTEST_DECMONTH,
|
|
|
|
wxCAL_HITTEST_SURROUNDING_WEEK
|
1999-12-30 18:21:42 +00:00
|
|
|
};
|
|
|
|
|
2000-01-02 23:17:55 +00:00
|
|
|
// border types for a date
|
|
|
|
enum wxCalendarDateBorder
|
|
|
|
{
|
|
|
|
wxCAL_BORDER_NONE, // no border (default)
|
|
|
|
wxCAL_BORDER_SQUARE, // a rectangular border
|
|
|
|
wxCAL_BORDER_ROUND // a round border
|
|
|
|
};
|
|
|
|
|
1999-12-30 18:21:42 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
2000-01-02 23:17:55 +00:00
|
|
|
// wxCalendarDateAttr: custom attributes for a calendar date
|
1999-12-30 18:21:42 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2000-01-02 23:17:55 +00:00
|
|
|
class WXDLLEXPORT wxCalendarDateAttr
|
|
|
|
{
|
2000-01-24 22:48:07 +00:00
|
|
|
#if !defined(__VISAGECPP__)
|
2000-01-14 17:55:49 +00:00
|
|
|
protected:
|
|
|
|
// This has to be before the use of Init(), for MSVC++ 1.5
|
2000-01-24 22:48:07 +00:00
|
|
|
// But dorks up Visualage!
|
2000-01-14 17:55:49 +00:00
|
|
|
void Init(wxCalendarDateBorder border = wxCAL_BORDER_NONE)
|
|
|
|
{
|
|
|
|
m_border = border;
|
|
|
|
m_holiday = FALSE;
|
|
|
|
}
|
2000-01-24 22:48:07 +00:00
|
|
|
#endif
|
2000-01-02 23:17:55 +00:00
|
|
|
public:
|
|
|
|
// ctors
|
|
|
|
wxCalendarDateAttr() { Init(); }
|
|
|
|
wxCalendarDateAttr(const wxColour& colText,
|
|
|
|
const wxColour& colBack = wxNullColour,
|
|
|
|
const wxColour& colBorder = wxNullColour,
|
|
|
|
const wxFont& font = wxNullFont,
|
|
|
|
wxCalendarDateBorder border = wxCAL_BORDER_NONE)
|
|
|
|
: m_colText(colText), m_colBack(colBack),
|
|
|
|
m_colBorder(colBorder), m_font(font)
|
|
|
|
{
|
|
|
|
Init(border);
|
|
|
|
}
|
|
|
|
wxCalendarDateAttr(wxCalendarDateBorder border,
|
|
|
|
const wxColour& colBorder = wxNullColour)
|
|
|
|
: m_colBorder(colBorder)
|
|
|
|
{
|
|
|
|
Init(border);
|
|
|
|
}
|
|
|
|
|
|
|
|
// setters
|
|
|
|
void SetTextColour(const wxColour& colText) { m_colText = colText; }
|
|
|
|
void SetBackgroundColour(const wxColour& colBack) { m_colBack = colBack; }
|
|
|
|
void SetBorderColour(const wxColour& col) { m_colBorder = col; }
|
|
|
|
void SetFont(const wxFont& font) { m_font = font; }
|
|
|
|
void SetBorder(wxCalendarDateBorder border) { m_border = border; }
|
|
|
|
void SetHoliday(bool holiday) { m_holiday = holiday; }
|
|
|
|
|
|
|
|
// accessors
|
|
|
|
bool HasTextColour() const { return m_colText.Ok(); }
|
|
|
|
bool HasBackgroundColour() const { return m_colBack.Ok(); }
|
|
|
|
bool HasBorderColour() const { return m_colBorder.Ok(); }
|
|
|
|
bool HasFont() const { return m_font.Ok(); }
|
|
|
|
bool HasBorder() const { return m_border != wxCAL_BORDER_NONE; }
|
|
|
|
|
|
|
|
bool IsHoliday() const { return m_holiday; }
|
|
|
|
|
|
|
|
const wxColour& GetTextColour() const { return m_colText; }
|
|
|
|
const wxColour& GetBackgroundColour() const { return m_colBack; }
|
|
|
|
const wxColour& GetBorderColour() const { return m_colBorder; }
|
|
|
|
const wxFont& GetFont() const { return m_font; }
|
|
|
|
wxCalendarDateBorder GetBorder() const { return m_border; }
|
2000-01-24 22:48:07 +00:00
|
|
|
#if defined(__VISAGECPP__)
|
|
|
|
protected:
|
|
|
|
// This has to be here for VisualAge
|
|
|
|
void Init(wxCalendarDateBorder border = wxCAL_BORDER_NONE)
|
|
|
|
{
|
|
|
|
m_border = border;
|
|
|
|
m_holiday = FALSE;
|
|
|
|
}
|
|
|
|
#endif
|
2000-01-02 23:17:55 +00:00
|
|
|
private:
|
|
|
|
wxColour m_colText,
|
|
|
|
m_colBack,
|
|
|
|
m_colBorder;
|
|
|
|
wxFont m_font;
|
|
|
|
wxCalendarDateBorder m_border;
|
|
|
|
bool m_holiday;
|
|
|
|
};
|
1999-12-29 19:18:01 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxCalendarCtrl events
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2000-01-02 23:17:55 +00:00
|
|
|
class WXDLLEXPORT wxCalendarCtrl;
|
|
|
|
|
1999-12-29 19:18:01 +00:00
|
|
|
class WXDLLEXPORT wxCalendarEvent : public wxCommandEvent
|
|
|
|
{
|
1999-12-30 18:21:42 +00:00
|
|
|
friend class wxCalendarCtrl;
|
1999-12-29 19:18:01 +00:00
|
|
|
public:
|
1999-12-30 18:21:42 +00:00
|
|
|
wxCalendarEvent() { Init(); }
|
1999-12-29 19:18:01 +00:00
|
|
|
wxCalendarEvent(wxCalendarCtrl *cal, wxEventType type);
|
|
|
|
|
|
|
|
const wxDateTime& GetDate() const { return m_date; }
|
1999-12-30 18:21:42 +00:00
|
|
|
wxDateTime::WeekDay GetWeekDay() const { return m_wday; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void Init();
|
1999-12-29 19:18:01 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
wxDateTime m_date;
|
1999-12-30 18:21:42 +00:00
|
|
|
wxDateTime::WeekDay m_wday;
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxCalendarEvent)
|
1999-12-29 19:18:01 +00:00
|
|
|
};
|
|
|
|
|
2000-01-02 23:17:55 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxCalendarCtrl
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// so far we only have a generic version, so keep it simple
|
|
|
|
#include "wx/generic/calctrl.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2001-01-31 17:16:40 +00:00
|
|
|
// calendar event types and macros for handling them
|
2000-01-02 23:17:55 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2001-01-31 17:16:40 +00:00
|
|
|
BEGIN_DECLARE_EVENT_TYPES()
|
|
|
|
DECLARE_EVENT_TYPE(wxEVT_CALENDAR_SEL_CHANGED, 950)
|
|
|
|
DECLARE_EVENT_TYPE(wxEVT_CALENDAR_DAY_CHANGED, 951)
|
|
|
|
DECLARE_EVENT_TYPE(wxEVT_CALENDAR_MONTH_CHANGED, 952)
|
|
|
|
DECLARE_EVENT_TYPE(wxEVT_CALENDAR_YEAR_CHANGED, 953)
|
|
|
|
DECLARE_EVENT_TYPE(wxEVT_CALENDAR_DOUBLECLICKED, 954)
|
|
|
|
DECLARE_EVENT_TYPE(wxEVT_CALENDAR_WEEKDAY_CLICKED, 955)
|
|
|
|
END_DECLARE_EVENT_TYPES()
|
|
|
|
|
2000-02-06 19:11:10 +00:00
|
|
|
typedef void (wxEvtHandler::*wxCalendarEventFunction)(wxCalendarEvent&);
|
|
|
|
|
2001-01-31 17:16:40 +00:00
|
|
|
#define EVT_CALENDAR(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_CALENDAR_DOUBLECLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxCalendarEventFunction) & fn, (wxObject *) NULL),
|
|
|
|
#define EVT_CALENDAR_SEL_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_CALENDAR_SEL_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxCalendarEventFunction) & fn, (wxObject *) NULL),
|
|
|
|
#define EVT_CALENDAR_DAY(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_CALENDAR_DAY_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxCalendarEventFunction) & fn, (wxObject *) NULL),
|
|
|
|
#define EVT_CALENDAR_MONTH(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_CALENDAR_MONTH_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxCalendarEventFunction) & fn, (wxObject *) NULL),
|
|
|
|
#define EVT_CALENDAR_YEAR(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_CALENDAR_YEAR_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxCalendarEventFunction) & fn, (wxObject *) NULL),
|
|
|
|
#define EVT_CALENDAR_WEEKDAY_CLICKED(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_CALENDAR_WEEKDAY_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxCalendarEventFunction) & fn, (wxObject *) NULL),
|
1999-12-29 19:18:01 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#endif // wxUSE_CALENDARCTRL
|
|
|
|
|
|
|
|
#endif // _WX_CALCTRL_H_
|
|
|
|
|