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
578 B
27 lines
578 B
11 years ago
|
import org.trinitydesktop.qt.*;
|
||
|
import org.trinitydesktop.koala.*;
|
||
15 years ago
|
|
||
|
public class KDatePickTest {
|
||
|
|
||
|
|
||
|
public static void main (String[] args) {
|
||
|
|
||
12 years ago
|
TDELocale.setMainCatalogue("tdelibs");
|
||
11 years ago
|
TDECmdLineArgs.init(args, "kdatepickertest", "KDatePickTest",
|
||
15 years ago
|
"A KDatePicker test..", "0.1");
|
||
12 years ago
|
TDEApplication app = new TDEApplication();
|
||
15 years ago
|
KDatePicker picker = new KDatePicker();
|
||
|
app.setMainWidget(picker);
|
||
|
picker.show();
|
||
|
app.exec();
|
||
|
return;
|
||
|
|
||
|
}
|
||
|
|
||
|
static {
|
||
|
qtjava.initialize();
|
||
11 years ago
|
tdejava.initialize();
|
||
15 years ago
|
}
|
||
|
|
||
|
}
|