Updated the README file with some contributor tips.
[basket4.git] / src / application.cpp
blobecb633f7c1258d88dc6aca9f811f984ba075ff5c
1 /***************************************************************************
2 * Copyright (C) 2003 by Sébastien Laoût *
3 * slaout@linux62.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 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
21 #include <kcmdlineargs.h>
22 #include <qstring.h>
23 #include <qfile.h>
24 #include <qfileinfo.h>
25 #include <qtimer.h>
27 #include "application.h"
28 #include "global.h"
29 #include "bnpview.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);
56 args->clear();
60 return 0;