Main Page | Namespace List | Class Hierarchy | Class List | Directories | File List | Namespace Members | Class Members | File Members

ImageServices.h

Go to the documentation of this file.
00001 //
00002 // ImageServices.h
00003 //
00004 // Copyright (c) Shareaza Development Team, 2002-2005.
00005 // This file is part of SHAREAZA (www.shareaza.com)
00006 //
00007 // Shareaza is free software; you can redistribute it
00008 // and/or modify it under the terms of the GNU General Public License
00009 // as published by the Free Software Foundation; either version 2 of
00010 // the License, or (at your option) any later version.
00011 //
00012 // Shareaza is distributed in the hope that it will be useful,
00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015 // GNU General Public License for more details.
00016 //
00017 // You should have received a copy of the GNU General Public License
00018 // along with Shareaza; if not, write to the Free Software
00019 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00020 //
00021 
00022 #pragma once
00023 
00024 #include "ImageFile.h"
00025 
00026 
00027 class CImageServices : public CComObject
00028 {
00029 // Construction
00030 public:
00031         CImageServices();
00032         virtual ~CImageServices();
00033 
00034         DECLARE_DYNAMIC(CImageServices)
00035 
00036 // Operations
00037 public:
00038         void                                    Cleanup();
00039 protected:
00040         BOOL                                    LoadFromMemory(CImageFile* pFile, LPCTSTR pszType, LPCVOID pData, DWORD nLength, BOOL bScanOnly = FALSE, BOOL bPartialOk = FALSE);
00041         BOOL                                    LoadFromFile(CImageFile* pFile, LPCTSTR pszType, HANDLE hFile, DWORD nLength, BOOL bScanOnly = FALSE, BOOL bPartialOk = FALSE);
00042         BOOL                                    PostLoad(CImageFile* pFile, IMAGESERVICEDATA* pParams, SAFEARRAY* pArray, BOOL bSuccess);
00043 protected:
00044         BOOL                                    SaveToMemory(CImageFile* pFile, LPCTSTR pszType, int nQuality, LPBYTE* ppBuffer, DWORD* pnLength);
00045         BOOL                                    SaveToFile(CImageFile* pFile, LPCTSTR pszType, int nQuality, HANDLE hFile, DWORD* pnLength = NULL);
00046         SAFEARRAY*                              ImageToArray(CImageFile* pFile);
00047 protected:
00048         IImageServicePlugin*    GetService(LPCTSTR pszFile, CLSID** ppCLSID = NULL);
00049         IImageServicePlugin*    LoadService(LPCTSTR pszType, CLSID* pCLSID = NULL);
00050 
00051 // Static Load Tool
00052 public:
00053         static BOOL                             LoadBitmap(CBitmap* pBitmap, UINT nResourceID, LPCTSTR pszType);
00054 
00055 // Attributes
00056 protected:
00057         CMapStringToPtr                 m_pService;
00058         CMapStringToPtr                 m_pCLSID;
00059         BOOL                                    m_bCOM;
00060 
00061         friend class CImageFile;
00062 };
00063 
00064 extern LPCTSTR RT_JPEG;
00065 extern LPCTSTR RT_PNG;

Generated on Thu Dec 15 10:39:43 2005 for Shareaza 2.2.1.0 by  doxygen 1.4.2