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 _VIEWPROJECTS_H_
|
|
|
|
#define _VIEWPROJECTS_H_
|
2004-05-17 22:15:10 +00:00
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
2004-09-21 01:30:29 +00:00
|
|
|
#pragma interface "ViewProjects.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
|
|
|
|
|
|
|
class CProject : public wxObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CProject();
|
|
|
|
~CProject();
|
|
|
|
|
|
|
|
wxString m_strProjectName;
|
|
|
|
wxString m_strAccountName;
|
|
|
|
wxString m_strTeamName;
|
|
|
|
wxString m_strTotalCredit;
|
|
|
|
wxString m_strAVGCredit;
|
|
|
|
wxString m_strResourceShare;
|
|
|
|
wxString m_strStatus;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-09-21 01:30:29 +00:00
|
|
|
class CViewProjects : public CBOINCBaseView
|
2004-05-17 22:15:10 +00:00
|
|
|
{
|
2004-09-21 01:30:29 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS( CViewProjects )
|
2004-05-17 22:15:10 +00:00
|
|
|
|
|
|
|
public:
|
2004-09-21 01:30:29 +00:00
|
|
|
CViewProjects();
|
|
|
|
CViewProjects(wxNotebook* pNotebook);
|
|
|
|
|
|
|
|
~CViewProjects();
|
|
|
|
|
2005-09-02 21:03:36 +00:00
|
|
|
virtual wxString& GetViewName();
|
2005-03-15 23:44:48 +00:00
|
|
|
virtual const char** GetViewIcon();
|
2004-05-17 22:15:10 +00:00
|
|
|
|
2005-04-20 22:22:41 +00:00
|
|
|
void OnProjectUpdate( wxCommandEvent& event );
|
|
|
|
void OnProjectSuspend( wxCommandEvent& event );
|
|
|
|
void OnProjectNoNewWork( wxCommandEvent& event );
|
|
|
|
void OnProjectReset( wxCommandEvent& event );
|
|
|
|
void OnProjectDetach( wxCommandEvent& event );
|
2004-09-22 21:53:07 +00:00
|
|
|
|
2005-04-22 06:37:14 +00:00
|
|
|
void OnProjectWebsiteClicked( wxEvent& event );
|
2005-04-22 01:46:32 +00:00
|
|
|
|
2005-04-20 22:22:41 +00:00
|
|
|
protected:
|
2005-01-29 00:58:43 +00:00
|
|
|
std::vector<CProject*> m_ProjectCache;
|
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 02:01:53 +00:00
|
|
|
virtual void UpdateSelection();
|
2004-09-24 22:19:02 +00:00
|
|
|
|
2005-06-13 08:47:51 +00:00
|
|
|
wxInt32 FormatProjectName( wxInt32 item, wxString& strBuffer ) const;
|
2004-10-05 02:55:26 +00:00
|
|
|
wxInt32 FormatAccountName( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatTeamName( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatTotalCredit( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatAVGCredit( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatResourceShare( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatStatus( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
|
2004-10-09 03:05:01 +00:00
|
|
|
bool IsWebsiteLink( const wxString& strLink );
|
|
|
|
wxInt32 ConvertWebsiteIndexToLink( wxInt32 iProjectIndex, wxInt32 iWebsiteIndex, wxString& strLink );
|
|
|
|
wxInt32 ConvertLinkToWebsiteIndex( const wxString& strLink, wxInt32& iProjectIndex, wxInt32& iWebsiteIndex );
|
|
|
|
|
2005-04-20 22:22:41 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2004-05-17 22:15:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|