#include "wx/stattext.h"
#endif //WX_PRECOMP
+// Can only use wxSpinEvent if this is enabled
+#if wxUSE_SPINBTN
+
#include "wx/calctrl.h"
#define DEBUG_PAINT 0
EVT_LEFT_DOWN(wxCalendarCtrl::OnClick)
EVT_LEFT_DCLICK(wxCalendarCtrl::OnDClick)
-
- EVT_CALENDAR_MONTH(-1, wxCalendarCtrl::OnCalMonthChange)
- EVT_CALENDAR_YEAR(-1, wxCalendarCtrl::OnCalMonthChange)
END_EVENT_TABLE()
BEGIN_EVENT_TABLE(wxMonthComboBox, wxComboBox)
END_EVENT_TABLE()
IMPLEMENT_DYNAMIC_CLASS(wxCalendarCtrl, wxControl)
+IMPLEMENT_DYNAMIC_CLASS(wxCalendarEvent, wxCommandEvent)
+
+// ----------------------------------------------------------------------------
+// events
+// ----------------------------------------------------------------------------
+
+DEFINE_EVENT_TYPE(wxEVT_CALENDAR_SEL_CHANGED)
+DEFINE_EVENT_TYPE(wxEVT_CALENDAR_DAY_CHANGED)
+DEFINE_EVENT_TYPE(wxEVT_CALENDAR_MONTH_CHANGED)
+DEFINE_EVENT_TYPE(wxEVT_CALENDAR_YEAR_CHANGED)
+DEFINE_EVENT_TYPE(wxEVT_CALENDAR_DOUBLECLICKED)
+DEFINE_EVENT_TYPE(wxEVT_CALENDAR_WEEKDAY_CLICKED)
// ============================================================================
// implementation
}
SetSelection(m_cal->GetDate().GetMonth());
+ SetSize(-1, -1, -1, -1, wxSIZE_AUTO_WIDTH|wxSIZE_AUTO_HEIGHT);
}
wxYearSpinCtrl::wxYearSpinCtrl(wxCalendarCtrl *cal)
wxControl *wxCalendarCtrl::GetMonthControl() const
{
- return AllowMonthChange() ? m_comboMonth : m_staticMonth;
+ return AllowMonthChange() ? (wxControl *)m_comboMonth : (wxControl *)m_staticMonth;
}
wxControl *wxCalendarCtrl::GetYearControl() const
{
- return AllowYearChange() ? m_spinYear : m_staticYear;
+ return AllowYearChange() ? (wxControl *)m_spinYear : (wxControl *)m_staticYear;
}
void wxCalendarCtrl::EnableYearChange(bool enable)
m_spinYear->SetValue(m_date.Format(_T("%Y")));
}
+ // as the month changed, holidays did too
+ SetHolidayAttrs();
+
// update the calendar
Refresh();
}
RecalcGeometry();
#if DEBUG_PAINT
- printf("--- starting to paint, selection: %s, week %u\n",
+ wxLogDebug("--- starting to paint, selection: %s, week %u\n",
m_date.Format("%a %d-%m-%Y %H:%M:%S").c_str(),
GetWeek(m_date));
#endif
if ( IsExposed(0, 0, 7*m_widthCol, m_heightRow) )
{
#if DEBUG_PAINT
- puts("painting the header");
+ wxLogDebug("painting the header");
#endif
dc.SetBackgroundMode(wxTRANSPARENT);
wxDateTime date = GetStartDate();
#if DEBUG_PAINT
- printf("starting calendar from %s\n",
+ wxLogDebug("starting calendar from %s\n",
date.Format("%a %d-%m-%Y %H:%M:%S").c_str());
#endif
}
#if DEBUG_PAINT
- printf("painting week %d at y = %d\n", nWeek, y);
+ wxLogDebug("painting week %d at y = %d\n", nWeek, y);
#endif
for ( size_t wd = 0; wd < 7; wd++ )
}
}
#if DEBUG_PAINT
- puts("+++ finished painting");
+ wxLogDebug("+++ finished painting");
#endif
}
rect.width = 7*m_widthCol;
rect.height = m_heightRow;
+#ifdef __WXMSW__
+ // VZ: for some reason, the selected date seems to occupy more space under
+ // MSW - this is probably some bug in the font size calculations, but I
+ // don't know where exactly. This fix is ugly and leads to more
+ // refreshes than really needed, but without it the selected days
+ // leaves even more ugly underscores on screen.
+ rect.Inflate(0, 1);
+#endif // MSW
+
#if DEBUG_PAINT
- printf("*** refreshing week %d at (%d, %d)-(%d, %d)\n",
+ wxLogDebug("*** refreshing week %d at (%d, %d)-(%d, %d)\n",
GetWeek(date),
rect.x, rect.y,
rect.x + rect.width, rect.y + rect.height);
tm.mday = wxDateTime::GetNumberOfDays(mon, tm.year);
}
- SetDate(wxDateTime(tm.mday, mon, tm.year));
-
- GenerateEvents(wxEVT_CALENDAR_MONTH_CHANGED, wxEVT_CALENDAR_SEL_CHANGED);
+ SetDateAndNotify(wxDateTime(tm.mday, mon, tm.year));
}
void wxCalendarCtrl::OnYearChange(wxSpinEvent& event)
tm.mday = wxDateTime::GetNumberOfDays(tm.mon, year);
}
- SetDate(wxDateTime(tm.mday, tm.mon, year));
-
- GenerateEvents(wxEVT_CALENDAR_YEAR_CHANGED, wxEVT_CALENDAR_SEL_CHANGED);
+ SetDateAndNotify(wxDateTime(tm.mday, tm.mon, year));
}
// ----------------------------------------------------------------------------
// holidays handling
// ----------------------------------------------------------------------------
-void wxCalendarCtrl::OnCalMonthChange(wxCalendarEvent& event)
-{
- SetHolidayAttrs();
-
- event.Skip();
-}
-
void wxCalendarCtrl::EnableHolidayDisplay(bool display)
{
long style = GetWindowStyle();
{
m_date = cal->GetDate();
}
+
+#endif // wxUSE_SPINBTN
+