mirror of https://github.com/roytam1/kmeleon.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.3 KiB
73 lines
2.3 KiB
/* |
|
* Copyright (C) 2005 Dorian Boissonnade |
|
* |
|
* This program is free software; you can redistribute it and/or modify |
|
* it under the terms of the GNU General Public License as published by |
|
* the Free Software Foundation; either version 2, or (at your option) |
|
* any later version. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU General Public License |
|
* along with this program; if not, write to the Free Software |
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
* |
|
* |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include "afxtempl.h" |
|
|
|
class CFavIconList; |
|
class mozIAsyncFavicons; |
|
class KmImage; |
|
|
|
class CFavIconList : public CImageList |
|
{ |
|
private: |
|
CMap<CString, LPCTSTR, int, int &> m_urlMap; |
|
int m_iDefaultIcon; |
|
int m_iLoadingIcon; |
|
int m_iOffset; |
|
unsigned mWidth, mHeight; |
|
//nsCOMPtr<IconObserver> mIconObserver; |
|
|
|
void AddMap(const char *uri, int index, const char* pageUri = nullptr); |
|
int AddDownloadedIcon(char* uri, TCHAR* file, nsresult aStatus); |
|
BOOL LoadCache(); |
|
CImageList mSized; |
|
nsCOMPtr<mozIAsyncFavicons> mIconService; |
|
|
|
int GetFavIcon(nsIURI* iconURI); |
|
bool DwnFavIcon(nsIURI* iconURI, nsIURI* pageURI = NULL, bool reload = false); |
|
|
|
public: |
|
CFavIconList(); |
|
virtual ~CFavIconList(); |
|
|
|
mozIAsyncFavicons* GetIconService(); |
|
BOOL WriteCache(); |
|
//int AddIcon(const char* uri, CBitmap*, CBitmap*, const char* pageUri = nullptr); |
|
//int AddIcon(const char* uri, CBitmap*, COLORREF, const char* pageUri = nullptr); |
|
//int AddIcon(const char* uri, HICON icon, const char* pageUri = nullptr); |
|
int AddIcon(const char* uri, KmImage*, const char* pageUri = nullptr); |
|
|
|
bool CFavIconList::GetFaviconForPage(nsIURI* aPageURI, nsIURI** _retval); |
|
int GetIconForPage(const TCHAR* uri); |
|
int GetIcon(nsIURI* aUri, nsIURI* aPageURI = NULL, BOOL download = FALSE); |
|
CImageList* GetSizedList() {return &mSized;} |
|
void RefreshIcon(nsIURI* aURI); |
|
void ResetCache(); |
|
void LoadDefaultIcon(); |
|
|
|
static void DwnCall(char* , TCHAR* , nsresult, void* ); |
|
|
|
inline int GetDefaultIcon() {return m_iDefaultIcon;} |
|
inline int GetLoadingIcon() {return m_iLoadingIcon;} |
|
|
|
BOOL Create(int, int, UINT, int, int); |
|
};
|
|
|