00001 // 00002 // WndHashProgressBar.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_WNDHASHPROGRESSBAR_H__812FCDD7_1E84_4398_86C5_47A9E5E6253F__INCLUDED_) 00023 #define AFX_WNDHASHPROGRESSBAR_H__812FCDD7_1E84_4398_86C5_47A9E5E6253F__INCLUDED_ 00024 00025 #pragma once 00026 00027 00028 class CHashProgressBar : public CWnd 00029 { 00030 // Construction 00031 public: 00032 CHashProgressBar(); 00033 virtual ~CHashProgressBar(); 00034 00035 // Attributes 00036 protected: 00037 CWnd* m_pParent; 00038 COLORREF m_crBorder; 00039 COLORREF m_crFill; 00040 COLORREF m_crText; 00041 CBrush m_brFill; 00042 HICON m_hIcon; 00043 int m_nFlash; 00044 int m_nRemaining; // Files left to hash 00045 int m_nTotal; // Total files to hash 00046 CString m_sCurrent; // Name of file currently hashing 00047 CString m_sPrevious; // Name of last file currently hashed 00048 00049 // Operations 00050 public: 00051 void Create(CWnd* pParent); 00052 void Run(); 00053 void Update(); 00054 protected: 00055 void Show(int nWidth, BOOL bShow); 00056 00057 // Overrides 00058 public: 00059 //{{AFX_VIRTUAL(CHashProgressBar) 00060 //}}AFX_VIRTUAL 00061 00062 // Implementation 00063 protected: 00064 //{{AFX_MSG(CHashProgressBar) 00065 afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); 00066 afx_msg BOOL OnEraseBkgnd(CDC* pDC); 00067 afx_msg void OnPaint(); 00068 afx_msg void OnLButtonDown(UINT nFlags, CPoint point); 00069 //}}AFX_MSG 00070 00071 DECLARE_MESSAGE_MAP() 00072 }; 00073 00074 //{{AFX_INSERT_LOCATION}} 00075 00076 #endif // !defined(AFX_WNDHASHPROGRESSBAR_H__812FCDD7_1E84_4398_86C5_47A9E5E6253F__INCLUDED_)