2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2004-05-17 22:15:10 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation;
|
|
|
|
// either version 2.1 of the License, or (at your option) any later version.
|
2004-05-17 22:15:10 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This software 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 Lesser General Public License for more details.
|
2004-05-17 22:15:10 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2004-05-17 22:15:10 +00:00
|
|
|
|
2004-09-21 01:30:29 +00:00
|
|
|
#ifndef _VIEWTRANSFERS_H_
|
|
|
|
#define _VIEWTRANSFERS_H_
|
2004-05-17 22:15:10 +00:00
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
2004-09-21 01:30:29 +00:00
|
|
|
#pragma interface "ViewTransfers.cpp"
|
2004-05-17 22:15:10 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-09-21 01:30:29 +00:00
|
|
|
#include "BOINCBaseView.h"
|
|
|
|
|
2004-12-02 07:43:47 +00:00
|
|
|
|
2005-04-27 06:55:28 +00:00
|
|
|
class CTransfer : public wxObject {
|
2004-12-02 07:43:47 +00:00
|
|
|
public:
|
|
|
|
CTransfer();
|
|
|
|
~CTransfer();
|
|
|
|
|
|
|
|
wxString m_strProjectName;
|
|
|
|
wxString m_strFileName;
|
|
|
|
wxString m_strProgress;
|
|
|
|
wxString m_strSize;
|
|
|
|
wxString m_strTime;
|
|
|
|
wxString m_strSpeed;
|
|
|
|
wxString m_strStatus;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-04-27 06:55:28 +00:00
|
|
|
class CViewTransfers : public CBOINCBaseView {
|
2004-09-21 01:30:29 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS( CViewTransfers )
|
2004-05-17 22:15:10 +00:00
|
|
|
|
|
|
|
public:
|
2004-09-21 01:30:29 +00:00
|
|
|
CViewTransfers();
|
|
|
|
CViewTransfers(wxNotebook* pNotebook);
|
|
|
|
|
|
|
|
~CViewTransfers();
|
|
|
|
|
2005-09-02 21:03:36 +00:00
|
|
|
virtual wxString& GetViewName();
|
2005-02-22 03:38:33 +00:00
|
|
|
virtual const char** GetViewIcon();
|
2004-09-24 22:19:02 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
void OnTransfersRetryNow( wxCommandEvent& event );
|
|
|
|
void OnTransfersAbort( wxCommandEvent& event );
|
2004-09-24 22:19:02 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
protected:
|
2005-01-29 00:58:43 +00:00
|
|
|
std::vector<CTransfer*> m_TransferCache;
|
2004-12-02 07:43:47 +00:00
|
|
|
|
|
|
|
virtual wxInt32 GetDocCount();
|
|
|
|
|
|
|
|
virtual wxString OnListGetItemText( long item, long column ) const;
|
|
|
|
|
|
|
|
virtual wxString OnDocGetItemText( long item, long column ) const;
|
|
|
|
|
|
|
|
virtual wxInt32 AddCacheElement();
|
|
|
|
virtual wxInt32 EmptyCache();
|
|
|
|
virtual wxInt32 GetCacheCount();
|
|
|
|
virtual wxInt32 RemoveCacheElement();
|
|
|
|
virtual wxInt32 UpdateCache( long item, long column, wxString& strNewData );
|
|
|
|
|
2004-09-24 22:19:02 +00:00
|
|
|
virtual void UpdateSelection();
|
2004-05-17 22:15:10 +00:00
|
|
|
|
2004-10-22 00:41:18 +00:00
|
|
|
wxInt32 FormatProjectName( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatFileName( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatProgress( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatSize( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatTime( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatSpeed( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatStatus( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2004-05-17 22:15:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|