org.kde.koala
Interface KDatePickerSignals


public interface KDatePickerSignals


Method Summary
 void dateChanged(java.util.Calendar arg1)
          This signal is emitted each time the selected date is changed.
 void dateEntered(java.util.Calendar arg1)
          This signal is emitted when enter is pressed and a VALID date has been entered before into the line edit.
 void dateSelected(java.util.Calendar arg1)
          This signal is emitted each time a day has been selected by clicking on the table (hitting a day in the current month).
 void tableClicked()
          This signal is emitted when the day has been selected by clicking on it in the table.
 

Method Detail

dateChanged

void dateChanged(java.util.Calendar arg1)
This signal is emitted each time the selected date is changed. Usually, this does not mean that the date has been entered, since the date also changes, for example, when another month is selected.

See Also:
dateSelected(java.util.Calendar)

dateSelected

void dateSelected(java.util.Calendar arg1)
This signal is emitted each time a day has been selected by clicking on the table (hitting a day in the current month). It has the same meaning as dateSelected() in older versions of KDatePicker.


dateEntered

void dateEntered(java.util.Calendar arg1)
This signal is emitted when enter is pressed and a VALID date has been entered before into the line edit. Connect to both dateEntered() and dateSelected() to receive all events where the user really enters a date.


tableClicked

void tableClicked()
This signal is emitted when the day has been selected by clicking on it in the table.