You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/KDatePickerSignals.java

42 lines
1.7 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQObject;
import org.kde.qt.TQSize;
import java.util.Calendar;
import org.kde.qt.TQEvent;
import org.kde.qt.TQWidget;
import org.kde.qt.TQResizeEvent;
public interface KDatePickerSignals {
/** 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.
@short This signal is emitted each time the selected date is changed.
@see #dateSelected
*/
void dateChanged(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.
@short This signal is emitted each time a day has been selected by clicking on the table (hitting a day in the current month).
*/
void dateSelected(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.
@short This signal is emitted when enter is pressed and a VALID date has been entered before into the line edit.
*/
void dateEntered(Calendar arg1);
/** This signal is emitted when the day has been selected by
clicking on it in the table.
@short This signal is emitted when the day has been selected by clicking on it in the table.
*/
void tableClicked();
}