]> git.sesse.net Git - kdenlive/blob - src/main.cpp
Reindent the codebase using 'linux' bracket placement.
[kdenlive] / src / main.cpp
1 /***************************************************************************
2  *   Copyright (C) 2007 by Marco Gittler (g.marco@freenet.de)              *
3  *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
19  ***************************************************************************/
20
21 #include "kdenlive-config.h"
22 #include "mainwindow.h"
23
24 #include <KApplication>
25 #include <KAboutData>
26 #include <KDebug>
27 #include <KCmdLineArgs>
28 #include <KUrl> //new
29
30
31 #if defined(__APPLE_KDE__) || defined(__DARWIN__)
32 #include <SDL/SDL.h>
33 #endif
34
35 static const char version[] = VERSION;
36
37 int main(int argc, char *argv[])
38 {
39     KAboutData aboutData(QByteArray("kdenlive"), QByteArray("kdenlive"),
40                          ki18n("Kdenlive"), QByteArray(version),
41                          ki18n("An open source video editor."),
42                          KAboutData::License_GPL,
43                          ki18n("Copyright (c) 2008 Development team"));
44     aboutData.addAuthor(ki18n("Jean-Baptiste Mardelle"), ki18n("MLT porting, KDE4 porting, Main developer"), "jb@kdenlive.org");
45     aboutData.addAuthor(ki18n("Marco Gittler"), ki18n("MLT Connection, Transition, Effect, Timeline Developer"), "g.marco@freenet.de");
46     aboutData.setHomepage("http://kdenlive.org");
47     aboutData.setCustomAuthorText(ki18n("Please report bugs to http://kdenlive.org/mantis"), ki18n("Please report bugs to <a href=\"http://kdenlive.org/mantis\">http://kdenlive.org/mantis</a>"));
48     aboutData.setTranslator(ki18n("NAME OF TRANSLATORS"), ki18n("EMAIL OF TRANSLATORS"));
49
50     KCmdLineArgs::init(argc, argv, &aboutData);
51
52     KCmdLineOptions options;
53     options.add("mlt-path <path>", ki18n("Set the path for MLT environnement"));
54     options.add("+[file]", ki18n("Document to open")); //new
55     KCmdLineArgs::addCmdLineOptions(options); //new
56
57     KApplication app;
58
59     // see if we are starting with session management
60     if (app.isSessionRestored()) {
61         int n = 1;
62         while (KMainWindow::canBeRestored(n)) {
63             const QString className = KXmlGuiWindow::classNameOfToplevel(n);
64             if (className == QLatin1String("MainWindow")) {
65                 MainWindow* win = new MainWindow();
66                 win->restore(n);
67             } else {
68                 kWarning() << "Unknown class " << className << " in session saved data!";
69             }
70             ++n;
71         }
72     } else {
73         KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); //new
74
75         QString mltPath = args->getOption("mlt-path");
76         KUrl url;
77         if (args->count()) {
78             url = args->url(0);
79         }
80         MainWindow* window = new MainWindow(mltPath, url);
81         window->show();
82
83         args->clear();
84     }
85
86     return app.exec();
87 }