]> cloud.milkyroute.net Git - dolphin.git/blob - src/main.cpp
71c59cdac2ca33597c49057e6a576a5fe0f66bfb
[dolphin.git] / src / main.cpp
1 /***************************************************************************
2 * Copyright (C) 2006 by Peter Penz <peter.penz@gmx.at> *
3 * Copyright (C) 2006 by Stefan Monov <logixoul@gmail.com> *
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 "dolphinapplication.h"
22
23 #include "dolphinmainwindow.h"
24
25 #include <kaboutdata.h>
26 #include <kcmdlineargs.h>
27 #include <klocale.h>
28 #include <kmainwindow.h>
29 #include <kdebug.h>
30
31 extern "C"
32 KDE_EXPORT int kdemain(int argc, char **argv)
33 {
34 KAboutData about("dolphin", 0,
35 ki18nc("@title", "Dolphin"),
36 "1.6.9",
37 ki18nc("@title", "File Manager"),
38 KAboutData::License_GPL,
39 ki18nc("@info:credit", "(C) 2006-2011 Peter Penz"));
40 about.setHomepage("http://dolphin.kde.org");
41 about.addAuthor(ki18nc("@info:credit", "Peter Penz"),
42 ki18nc("@info:credit", "Maintainer and developer"),
43 "peter.penz19@gmail.com");
44 about.addAuthor(ki18nc("@info:credit", "David Faure"),
45 ki18nc("@info:credit", "Developer"),
46 "faure@kde.org");
47 about.addAuthor(ki18nc("@info:credit", "Aaron J. Seigo"),
48 ki18nc("@info:credit", "Developer"),
49 "aseigo@kde.org");
50 about.addAuthor(ki18nc("@info:credit", "Rafael Fernández López"),
51 ki18nc("@info:credit", "Developer"),
52 "ereslibre@kde.org");
53 about.addAuthor(ki18nc("@info:credit", "Kevin Ottens"),
54 ki18nc("@info:credit", "Developer"),
55 "ervin@kde.org");
56 about.addAuthor(ki18nc("@info:credit", "Holger Freyther"),
57 ki18nc("@info:credit", "Developer"),
58 "freyther@gmx.net");
59 about.addAuthor(ki18nc("@info:credit", "Max Blazejak"),
60 ki18nc("@info:credit", "Developer"),
61 "m43ksrocks@gmail.com");
62 about.addAuthor(ki18nc("@info:credit", "Michael Austin"),
63 ki18nc("@info:credit", "Documentation"),
64 "tuxedup@users.sourceforge.net");
65 // the .desktop file is not taken into account when launching manually, so
66 // set the icon precautionally:
67 about.setProgramIconName("system-file-manager");
68
69 KCmdLineArgs::init(argc, argv, &about);
70
71 KCmdLineOptions options;
72
73 options.add("select", ki18nc("@info:shell", "The files and directories passed as arguments "
74 "will be selected."));
75 options.add("+[Url]", ki18nc("@info:shell", "Document to open"));
76 KCmdLineArgs::addCmdLineOptions(options);
77
78 if (!DolphinApplication::start()) {
79 return 0;
80 }
81
82 DolphinApplication app;
83 KGlobal::locale()->insertCatalog("libkonq"); // needed for applications using libkonq
84
85 if (app.isSessionRestored()) {
86 int n = 1;
87 while (KMainWindow::canBeRestored(n)) {
88 const QString className = KXmlGuiWindow::classNameOfToplevel(n);
89 if (className == QLatin1String("DolphinMainWindow")) {
90 DolphinMainWindow* win = app.createMainWindow();
91 win->restore(n);
92 } else {
93 kWarning() << "Unknown class " << className << " in session saved data!";
94 }
95 ++n;
96 }
97 }
98 app.exec(); // krazy:exclude=crashy
99
100 return 0;
101 }