Now the systrayicon change it's color when a download is in progress. I simply change...
[kdenetwork.git] / kdict / application.h
blobeddb7f44ba4973a73086047a9b910565ab098eee
1 /* -------------------------------------------------------------
3 application.h (part of The KDE Dictionary Client)
5 Copyright (C) 2000-2001 Christian Gebauer <gebauer@kde.org>
7 This file is distributed under the Artistic License.
8 See LICENSE for details.
10 ------------------------------------------------------------- */
12 #ifndef APPLICATION_H
13 #define APPLICATION_H
15 #include <kuniqueapplication.h>
16 #include <qguardedptr.h>
18 #define KDICT_VERSION "0.6"
20 class TopLevel;
22 class Application : public KUniqueApplication
24 Q_OBJECT
26 public:
27 Application();
28 ~Application();
30 /** Create new instance of Kdict. Make the existing
31 main window active if Kdict is already running */
32 int newInstance();
34 private:
35 QGuardedPtr<TopLevel> m_mainWindow;
39 #endif