File indexing completed on 2024-05-12 16:27:39

0001 /*
0002    SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "notificationwidget.h"
0008 #include <QApplication>
0009 #include <QCommandLineParser>
0010 int main(int argc, char **argv)
0011 {
0012     QApplication app(argc, argv);
0013     // Use specific ruqola name for database path
0014     app.setApplicationName(QStringLiteral("ruqola"));
0015     QCommandLineParser parser;
0016     parser.addVersionOption();
0017     parser.addHelpOption();
0018     parser.process(app);
0019     auto w = new NotificationWidget();
0020     w->resize(800, 600);
0021     w->show();
0022     return app.exec();
0023 }