konq_faviconmgr.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __konq_faviconmgr_h__
00021 #define __konq_faviconmgr_h__
00022
00023 #include <dcopobject.h>
00024 #include <kurl.h>
00025 #include <libkonq_export.h>
00026
00031 class LIBKONQ_EXPORT KonqFavIconMgr : public QObject, public DCOPObject
00032 {
00033 Q_OBJECT
00034 K_DCOP
00035 public:
00039 KonqFavIconMgr(QObject *parent = 0, const char *name = 0);
00040
00044 static void setIconForURL(const KURL &url, const KURL &iconURL);
00045
00051 static void downloadHostIcon(const KURL &url);
00052
00057 static QString iconForURL(const QString &url);
00058
00059 k_dcop:
00063 virtual ASYNC notifyChange( bool, QString, QString ) = 0;
00064
00065 signals:
00066 void changed();
00067 };
00068
00069 #endif
00070
|