1 /***************************************************************************
2 * Copyright (C) 2003 by Sébastien Laoût *
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 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
21 #include <kcmdlineargs.h>
24 #include <qfileinfo.h>
27 #include "application.h"
31 Application::Application()
32 : KUniqueApplication()
36 Application::~Application()
40 int Application::newInstance()
42 KUniqueApplication::newInstance();
44 // Open the basket archive or template file supplied as argument:
45 KCmdLineArgs
*args
= KCmdLineArgs::parsedArgs();
46 if (args
&& args
->count() >= 1) {
47 QString fileName
= QFile::decodeName(args
->arg(args
->count() - 1));
48 if (QFile::exists(fileName
)) {
49 QFileInfo
fileInfo(fileName
);
50 if (!fileInfo
.isDir()) { // Do not mis-interpret data-folder param!
51 // Tags are not loaded until Global::bnpView::lateInit() is called.
52 // It is called 0ms after the application start.
53 BNPView::s_fileToOpen
= fileName
;
54 QTimer::singleShot( 100, Global::bnpView
, SLOT(delayedOpenArchive()) );
55 // Global::bnpView->openArchive(fileName);