added native GTK implementation of wxCalendarCtrl (modified patch 1925439)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52891 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
64
src/common/calctrlcmn.cpp
Normal file
64
src/common/calctrlcmn.cpp
Normal file
@@ -0,0 +1,64 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: common/calctrlcmn.cpp
|
||||
// Author: Marcin Wojdyr
|
||||
// Created: 2008-03-26
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (C) Marcin Wojdyr
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "wx/wxprec.h"
|
||||
|
||||
#ifdef __BORLANDC__
|
||||
#pragma hdrstop
|
||||
#endif
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#endif //WX_PRECOMP
|
||||
|
||||
#if wxUSE_CALENDARCTRL || wxUSE_DATEPICKCTRL
|
||||
|
||||
#include "wx/dateevt.h"
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxDateEvent, wxCommandEvent)
|
||||
DEFINE_EVENT_TYPE(wxEVT_DATE_CHANGED)
|
||||
|
||||
#endif // wxUSE_CALENDARCTRL || wxUSE_DATEPICKCTRL
|
||||
|
||||
|
||||
#if wxUSE_CALENDARCTRL
|
||||
|
||||
#include "wx/calctrl.h"
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// events
|
||||
// ----------------------------------------------------------------------------
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxCalendarEvent, wxDateEvent)
|
||||
|
||||
DEFINE_EVENT_TYPE(wxEVT_CALENDAR_SEL_CHANGED)
|
||||
DEFINE_EVENT_TYPE(wxEVT_CALENDAR_PAGE_CHANGED)
|
||||
DEFINE_EVENT_TYPE(wxEVT_CALENDAR_DOUBLECLICKED)
|
||||
DEFINE_EVENT_TYPE(wxEVT_CALENDAR_WEEKDAY_CLICKED)
|
||||
|
||||
// deprecated events
|
||||
DEFINE_EVENT_TYPE(wxEVT_CALENDAR_DAY_CHANGED)
|
||||
DEFINE_EVENT_TYPE(wxEVT_CALENDAR_MONTH_CHANGED)
|
||||
DEFINE_EVENT_TYPE(wxEVT_CALENDAR_YEAR_CHANGED)
|
||||
|
||||
|
||||
wxCalendarDateAttr wxCalendarDateAttr::m_mark(wxCAL_BORDER_SQUARE);
|
||||
|
||||
bool wxCalendarCtrlBase::EnableMonthChange(bool enable)
|
||||
{
|
||||
const long styleOrig = GetWindowStyle();
|
||||
long style = enable ? styleOrig & ~wxCAL_NO_MONTH_CHANGE
|
||||
: styleOrig | wxCAL_NO_MONTH_CHANGE;
|
||||
if ( style == styleOrig )
|
||||
return false;
|
||||
|
||||
SetWindowStyle(style);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
#endif // wxUSE_CALENDARCTRL
|
||||
|
||||
Reference in New Issue
Block a user