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.
32 lines
722 B
32 lines
722 B
11 years ago
|
import org.trinitydesktop.qt.*;
|
||
|
import org.trinitydesktop.koala.*;
|
||
15 years ago
|
|
||
|
/**
|
||
|
*
|
||
13 years ago
|
* Taken from test program of the tdeui tests
|
||
15 years ago
|
**/
|
||
|
public class KCharSelectTest {
|
||
|
|
||
|
|
||
|
public static void main (String[] args) {
|
||
|
|
||
11 years ago
|
TDECmdLineArgs.init(args, "kcharselecttest", "KCharSelectTest",
|
||
15 years ago
|
"A KCharSelect test app", "0.1");
|
||
12 years ago
|
TDEApplication app = new TDEApplication();
|
||
15 years ago
|
KCharSelect selector = new KCharSelect(null,"char selector");
|
||
|
selector.resize( selector.sizeHint() );
|
||
|
app.setMainWidget(selector);
|
||
|
selector.show();
|
||
|
selector.setCaption( "KCharSelect Test");
|
||
|
app.exec();
|
||
|
return;
|
||
|
|
||
|
}
|
||
|
|
||
|
static {
|
||
|
qtjava.initialize();
|
||
11 years ago
|
tdejava.initialize();
|
||
15 years ago
|
}
|
||
|
|
||
|
}
|