File indexing completed on 2024-04-28 03:59:17

0001 #include <QApplication>
0002 
0003 #include "kcharselect.h"
0004 
0005 int main(int argc, char **argv)
0006 {
0007     QApplication::setApplicationName(QStringLiteral("kcharselecttest"));
0008 
0009     QApplication app(argc, argv);
0010 
0011     KCharSelect selector(nullptr, nullptr);
0012     selector.setAllPlanesEnabled(true);
0013     selector.resize(selector.sizeHint());
0014     selector.show();
0015     selector.setWindowTitle(QStringLiteral("KCharSelect Test"));
0016 
0017     return app.exec();
0018 }