summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KDateWidget.java
blob: eda48f532d0e04b51ff3b8837b76393dbff7804c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import java.util.Calendar;
import org.kde.qt.TQWidget;
import org.kde.qt.TQWidget;

/**

 This widget can be used to display or allow user selection of a date.
 See {@link KDateWidgetSignals} for signals emitted by KDateWidget
		@version $Id$

		@short A pushbutton to display or allow user selection of a date. 
		@see KDatePicker

*/
public class KDateWidget extends TQWidget  {
	protected KDateWidget(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	/**	
		 Constructs a date selection widget.
		   		@short    Constructs a date selection widget.
	*/
	public KDateWidget(TQWidget parent, String name) {
		super((Class) null);
		newKDateWidget(parent,name);
	}
	private native void newKDateWidget(TQWidget parent, String name);
	public KDateWidget(TQWidget parent) {
		super((Class) null);
		newKDateWidget(parent);
	}
	private native void newKDateWidget(TQWidget parent);
	public KDateWidget() {
		super((Class) null);
		newKDateWidget();
	}
	private native void newKDateWidget();
	/**	
		 Constructs a date selection widget with the initial date set to <code>date.</code>
		   		@short    Constructs a date selection widget with the initial date set to <code>date.</code>
	*/
	public KDateWidget(Calendar date, TQWidget parent, String name) {
		super((Class) null);
		newKDateWidget(date,parent,name);
	}
	private native void newKDateWidget(Calendar date, TQWidget parent, String name);
	public KDateWidget(Calendar date, TQWidget parent) {
		super((Class) null);
		newKDateWidget(date,parent);
	}
	private native void newKDateWidget(Calendar date, TQWidget parent);
	public KDateWidget(Calendar date) {
		super((Class) null);
		newKDateWidget(date);
	}
	private native void newKDateWidget(Calendar date);
	/**	
		 Returns the currently selected date.
		   		@short    Returns the currently selected date.
	*/
	public native Calendar date();
	/**	
		 Changes the selected date to <code>date.</code>
		   		@short    Changes the selected date to <code>date.</code>
	*/
	public native void setDate(Calendar date);
	protected native void init();
	protected native void init(Calendar arg1);
	protected native void slotDateChanged();
	/** Deletes the wrapped C++ instance */
	protected native void finalize() throws InternalError;
	/** Delete the wrapped C++ instance ahead of finalize() */
	public native void dispose();
	/** Has the wrapped C++ instance been deleted? */
	public native boolean isDisposed();
}