Now the systrayicon change it's color when a download is in progress. I simply change...
[kdenetwork.git] / ksirc / objFinder.h
blob8777dd68919ba0637222017627e9679f42582e47
1 #ifndef OBJFINGER_H
2 #define OBJFINGER_H
4 #include <qobject.h>
5 #include <qdict.h>
6 #include <qstringlist.h>
8 class objFinder : public QObject {
9 Q_OBJECT
10 public:
12 objFinder();
13 virtual ~objFinder();
15 static void insert(QObject *obj, const char *key = 0);
16 static QObject *find(const char *name, const char *inherits);
17 static void dumpTree();
18 static QStringList allObjects();
20 signals:
21 void inserted(QObject *obj);
23 protected slots:
24 void objDest();
26 private:
28 * Don't allow the object to be created, all it's members are static
31 static QString randString();
34 static QDict<QObject> *objList;
38 extern objFinder *objFind;
40 #endif