00001 // 00002 // CtrlLibraryView.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 #if !defined(AFX_CTRLLIBRARYVIEW_H__9FA28C5B_A6A3_4616_9407_4661EA1C7B8A__INCLUDED_) 00023 #define AFX_CTRLLIBRARYVIEW_H__9FA28C5B_A6A3_4616_9407_4661EA1C7B8A__INCLUDED_ 00024 00025 #pragma once 00026 00027 class CAlbumFolder; 00028 class CLibraryFrame; 00029 class CLibraryTreeItem; 00030 class CLibraryTipCtrl; 00031 00032 00033 class CLibraryView : public CWnd 00034 { 00035 // Construction 00036 public: 00037 CLibraryView(); 00038 virtual ~CLibraryView(); 00039 00040 DECLARE_DYNAMIC(CLibraryView) 00041 00042 // Attributes 00043 public: 00044 UINT m_nCommandID; 00045 LPCTSTR m_pszToolBar; 00046 BOOL m_bAvailable; 00047 public: 00048 CLibraryList m_pSelection; 00049 00050 // Operations 00051 public: 00052 virtual BOOL CheckAvailable(CLibraryTreeItem* pSel); 00053 virtual void GetHeaderContent(int& nImage, CString& strTitle); 00054 virtual void Update(); 00055 virtual BOOL Select(DWORD nObject); 00056 virtual void CacheSelection(); 00057 protected: 00058 void PostUpdate(); 00059 CLibraryFrame* GetFrame() const; 00060 CLibraryTipCtrl* GetToolTip() const; 00061 DWORD GetFolderCookie() const; 00062 CLibraryTreeItem* GetFolderSelection() const; 00063 CAlbumFolder* GetSelectedAlbum(CLibraryTreeItem* pSel = NULL) const; 00064 void DragObjects(CImageList* pImage, const CPoint& ptMouse); 00065 protected: 00066 BOOL SelAdd(DWORD nObject, BOOL bNotify = TRUE); 00067 BOOL SelRemove(DWORD nObject, BOOL bNotify = TRUE); 00068 BOOL SelClear(BOOL bNotify = TRUE); 00069 int GetSelectedCount() const; 00070 00071 // Overrides 00072 public: 00073 //{{AFX_VIRTUAL(CLibraryView) 00074 public: 00075 virtual BOOL Create(CWnd* pParentWnd); 00076 //}}AFX_VIRTUAL 00077 00078 // Implementation 00079 protected: 00080 //{{AFX_MSG(CLibraryView) 00081 //}}AFX_MSG 00082 DECLARE_MESSAGE_MAP() 00083 }; 00084 00085 //{{AFX_INSERT_LOCATION}} 00086 00087 #define IDC_LIBRARY_VIEW 132 00088 00089 #endif // !defined(AFX_CTRLLIBRARYVIEW_H__9FA28C5B_A6A3_4616_9407_4661EA1C7B8A__INCLUDED_)