1 /* This file is part of the KDE project
2 Copyright (C) 1999-2006 David Faure <faure@kde.org>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
24 #include <QtGui/QApplication>
28 class ClientApp
: public QApplication
32 ClientApp(int &argc
, char **argv
) : QApplication( argc
, argv
) {}
34 /** Parse command-line arguments and "do it" */
37 /** Make konqueror open a window for @p url */
38 static bool createNewWindow(const KUrl
& url
, bool newTab
, bool tempFile
, const QString
& mimetype
= QString());
40 /** Make konqueror open a window for @p profile, @p url and @p mimetype */
41 static bool openProfile(const QString
& profile
, const QString
& url
, const QString
& mimetype
= QString());
44 void slotResult( KJob
* );
46 void slotDialogCanceled();
47 void deref() { KGlobal::deref(); }
50 static void sendASNChange();
52 static QByteArray startup_id_str
;