File indexing completed on 2024-05-19 05:04:29

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