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.
|
|
|
import org.kde.qt.*;
|
|
|
|
import org.kde.koala.*;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Taken from test program of the tdeui tests
|
|
|
|
**/
|
|
|
|
public class KCharSelectTest {
|
|
|
|
|
|
|
|
|
|
|
|
public static void main (String[] args) {
|
|
|
|
|
|
|
|
KCmdLineArgs.init(args, "kcharselecttest", "KCharSelectTest",
|
|
|
|
"A KCharSelect test app", "0.1");
|
|
|
|
KApplication app = new KApplication();
|
|
|
|
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();
|
|
|
|
kdejava.initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|