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.
27 lines
549 B
27 lines
549 B
15 years ago
|
import org.kde.qt.*;
|
||
|
import org.kde.koala.*;
|
||
|
|
||
|
public class KDatePickTest {
|
||
|
|
||
|
|
||
|
public static void main (String[] args) {
|
||
|
|
||
|
KLocale.setMainCatalogue("kdelibs");
|
||
|
KCmdLineArgs.init(args, "kdatepickertest", "KDatePickTest",
|
||
|
"A KDatePicker test..", "0.1");
|
||
|
KApplication app = new KApplication();
|
||
|
KDatePicker picker = new KDatePicker();
|
||
|
app.setMainWidget(picker);
|
||
|
picker.show();
|
||
|
app.exec();
|
||
|
return;
|
||
|
|
||
|
}
|
||
|
|
||
|
static {
|
||
|
qtjava.initialize();
|
||
|
kdejava.initialize();
|
||
|
}
|
||
|
|
||
|
}
|