14int main(
int argc,
char* argv[]) {
15 const QApplication app(argc, argv);
18 KLocalizedString::setApplicationDomain(
"yodau");
20 KAboutData about_data(
21 str_label(
"yodau"), str_label(
"yodau"), str_label(
"1.0"),
22 str_label(
"YEAR OF THE DEPEND ADULT UNDERGARMENT"), KAboutLicense::MIT,
23 str_label(
"(c) 2025, Yaroslav Riabtsev"), QString(),
24 str_label(
"https://github.com/ninjaro/yodau"),
25 str_label(
"yaroslav.riabtsev@rwth-aachen.de")
29 str_label(
"Yaroslav Riabtsev"), str_label(
"Original author"),
30 str_label(
"yaroslav.riabtsev@rwth-aachen.de"),
31 str_label(
"https://github.com/ninjaro"), str_label(
"ninjaro")
34 KAboutData::setApplicationData(about_data);
36 QCommandLineParser parser;
37 about_data.setupCommandLine(&parser);
39 about_data.processCommandLine(&parser);
41 QCoreApplication::setApplicationName(
str_label(
"yodau"));
42 QCoreApplication::setOrganizationName(
str_label(
"yodau"));
43 QCoreApplication::setApplicationVersion(
str_label(
"1.0"));
45 QCommandLineParser parser;
46 parser.setApplicationDescription(
47 str_label(
"YEAR OF THE DEPEND ADULT UNDERGARMENT")
49 parser.addHelpOption();
50 parser.addVersionOption();
57 const int result = QApplication::exec();
main_window(QWidget *parent=nullptr)
Construct the main window and create all core UI components.
int main(int argc, char *argv[])