File indexing completed on 2024-04-28 15:32: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     app.setAttribute(Qt::AA_UseHighDpiPixmaps, true);
0011 
0012     KCharSelect selector(nullptr, nullptr);
0013     selector.setAllPlanesEnabled(true);
0014     selector.resize(selector.sizeHint());
0015     selector.show();
0016     selector.setWindowTitle(QStringLiteral("KCharSelect Test"));
0017 
0018     return app.exec();
0019 }