Qyoto  4.0.5
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Properties
QtGui.IQCalendarWidgetSignals Interface Reference
Inheritance diagram for QtGui.IQCalendarWidgetSignals:
Collaboration diagram for QtGui.IQCalendarWidgetSignals:

Public Member Functions

void SelectionChanged ()
 
 
void Clicked (QDate date)
 
 
void Activated (QDate date)
 
 
void CurrentPageChanged (int year, int month)
 
 
- Public Member Functions inherited from QtGui.IQWidgetSignals
void CustomContextMenuRequested (QPoint pos)
 
 
- Public Member Functions inherited from QtCore.IQObjectSignals
void Destroyed (QObject arg1)
 
void Destroyed ()
 
 

Member Function Documentation

void QtGui.IQCalendarWidgetSignals.Activated ( QDate  date)

This signal is emitted whenever the user presses the Return or Enter key or double-clicks a date in the calendar widget.

void QtGui.IQCalendarWidgetSignals.Clicked ( QDate  date)

This signal is emitted when a mouse button is clicked. The date the mouse was clicked on is specified by date. The signal is only emitted when clicked on a valid date, e.g., dates are not outside the minimumDate() and maximumDate(). If the selection mode is NoSelection, this signal will not be emitted.

void QtGui.IQCalendarWidgetSignals.CurrentPageChanged ( int  year,
int  month 
)

This signal is emitted when the currently shown month is changed. The new year and month are passed as parameters.

See also setCurrentPage().

void QtGui.IQCalendarWidgetSignals.SelectionChanged ( )

This signal is emitted when the currently selected date is changed.

The currently selected date can be changed by the user using the mouse or keyboard, or by the programmer using setSelectedDate().

See also selectedDate().