]>
cloud.milkyroute.net Git - dolphin.git/blob - src/main.cpp
71c59cdac2ca33597c49057e6a576a5fe0f66bfb
1 /***************************************************************************
2 * Copyright (C) 2006 by Peter Penz <peter.penz@gmx.at> *
3 * Copyright (C) 2006 by Stefan Monov <logixoul@gmail.com> *
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. *
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. *
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 ***************************************************************************/
21 #include "dolphinapplication.h"
23 #include "dolphinmainwindow.h"
25 #include <kaboutdata.h>
26 #include <kcmdlineargs.h>
28 #include <kmainwindow.h>
32 KDE_EXPORT
int kdemain(int argc
, char **argv
)
34 KAboutData
about("dolphin", 0,
35 ki18nc("@title", "Dolphin"),
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"),
47 about
.addAuthor(ki18nc("@info:credit", "Aaron J. Seigo"),
48 ki18nc("@info:credit", "Developer"),
50 about
.addAuthor(ki18nc("@info:credit", "Rafael Fernández López"),
51 ki18nc("@info:credit", "Developer"),
53 about
.addAuthor(ki18nc("@info:credit", "Kevin Ottens"),
54 ki18nc("@info:credit", "Developer"),
56 about
.addAuthor(ki18nc("@info:credit", "Holger Freyther"),
57 ki18nc("@info:credit", "Developer"),
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");
69 KCmdLineArgs::init(argc
, argv
, &about
);
71 KCmdLineOptions options
;
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
);
78 if (!DolphinApplication::start()) {
82 DolphinApplication app
;
83 KGlobal::locale()->insertCatalog("libkonq"); // needed for applications using libkonq
85 if (app
.isSessionRestored()) {
87 while (KMainWindow::canBeRestored(n
)) {
88 const QString className
= KXmlGuiWindow::classNameOfToplevel(n
);
89 if (className
== QLatin1String("DolphinMainWindow")) {
90 DolphinMainWindow
* win
= app
.createMainWindow();
93 kWarning() << "Unknown class " << className
<< " in session saved data!";
98 app
.exec(); // krazy:exclude=crashy