add more spacing
[personal-kdebase.git] / apps / konqueror / client / kfmclient.h
blobcdb07f6fcf03166d167a11d6b63757fc17470b1c
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.
20 #ifndef __kfmclient_h
21 #define __kfmclient_h
23 #include <kglobal.h>
24 #include <QtGui/QApplication>
25 class KJob;
26 class KUrl;
28 class ClientApp : public QApplication
30 Q_OBJECT
31 public:
32 ClientApp(int &argc, char **argv ) : QApplication( argc, argv ) {}
34 /** Parse command-line arguments and "do it" */
35 static bool doIt();
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());
43 protected Q_SLOTS:
44 void slotResult( KJob * );
45 void delayedQuit();
46 void slotDialogCanceled();
47 void deref() { KGlobal::deref(); }
49 private:
50 static void sendASNChange();
51 static bool m_ok;
52 static QByteArray startup_id_str;
56 #endif