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.,
|
2007-10-09 11:35:47 +00:00
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2004-05-17 22:15:10 +00:00
|
|
|
|
2004-09-21 01:30:29 +00:00
|
|
|
#ifndef _VIEWWORK_H_
|
|
|
|
#define _VIEWWORK_H_
|
2004-05-17 22:15:10 +00:00
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
2004-09-21 01:30:29 +00:00
|
|
|
#pragma interface "ViewWork.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 CWork : public wxObject
|
|
|
|
{
|
|
|
|
public:
|
2008-06-25 10:38:16 +00:00
|
|
|
CWork();
|
|
|
|
~CWork();
|
2004-12-02 07:43:47 +00:00
|
|
|
|
2008-06-25 10:38:16 +00:00
|
|
|
wxString m_strProjectName;
|
2004-12-02 07:43:47 +00:00
|
|
|
wxString m_strApplicationName;
|
|
|
|
wxString m_strName;
|
2008-06-25 10:38:16 +00:00
|
|
|
float m_fCPUTime;
|
|
|
|
float m_fProgress;
|
|
|
|
float m_fTimeToCompletion;
|
|
|
|
time_t m_tReportDeadline;
|
2004-12-02 07:43:47 +00:00
|
|
|
wxString m_strStatus;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-09-21 01:30:29 +00:00
|
|
|
class CViewWork : public CBOINCBaseView
|
2004-05-17 22:15:10 +00:00
|
|
|
{
|
2004-09-21 01:30:29 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS( CViewWork )
|
2004-05-17 22:15:10 +00:00
|
|
|
|
|
|
|
public:
|
2004-09-21 01:30:29 +00:00
|
|
|
CViewWork();
|
|
|
|
CViewWork(wxNotebook* pNotebook);
|
|
|
|
|
|
|
|
~CViewWork();
|
|
|
|
|
2005-09-02 21:03:36 +00:00
|
|
|
virtual wxString& GetViewName();
|
- fixes #207 - HTML entities in BOINC Manager have to be decoded
BOINC Manager can now properly decode HTML entites for the
following elements:
Projects Tab:
Project Name
User Name
Team Name
Work Tab:
Project Name
Application Name
Transfers Tab:
Project Name
Messages Tab:
Project Name
Disk Tab:
Project Name
- fixes #212 - Info in columns misaligned on switching views
- Properly restore which tab view the user left from when going
to the advanced view from the simple view
- Fix the problem that caused the manager to wait for 7 seconds
to display anything on initial startup.
- Store the various Grid/List persisted data seperately so that
the different header sizes don't cause problems.
clientgui/
AdvancedFrame.cpp
BOINCBaseView.cpp, .h
BOINCGridCtrl.cpp
ViewMessages.cpp, .h
ViewMessagesGrid.cpp, .h
ViewProjects.cpp, .h
ViewProjectsGrid.cpp, .h
ViewResources.cpp, .h
ViewStatistics.cpp, .h
ViewTransfers.cpp, .h
ViewTransfersGrid.cpp, .h
ViewWork.cpp, .h
ViewWorkGrid.cpp, .h
lib/
gui_rpc_client_ops.C
svn path=/trunk/boinc/; revision=12761
2007-05-29 05:07:35 +00:00
|
|
|
virtual wxString& GetViewDisplayName();
|
2005-02-22 03:38:33 +00:00
|
|
|
virtual const char** GetViewIcon();
|
2004-09-24 02:01:53 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
void OnWorkSuspend( wxCommandEvent& event );
|
|
|
|
void OnWorkShowGraphics( wxCommandEvent& event );
|
|
|
|
void OnWorkAbort( wxCommandEvent& event );
|
2008-07-02 10:03:01 +00:00
|
|
|
void OnShowItemProperties( wxCommandEvent& event );
|
2004-05-17 22:15:10 +00:00
|
|
|
|
2006-01-09 14:03:13 +00:00
|
|
|
void OnProjectWebsiteClicked( wxEvent& event );
|
2008-06-25 10:38:16 +00:00
|
|
|
|
2005-01-29 00:58:43 +00:00
|
|
|
std::vector<CWork*> m_WorkCache;
|
2004-12-02 07:43:47 +00:00
|
|
|
|
2008-06-25 13:12:39 +00:00
|
|
|
protected:
|
|
|
|
|
2004-12-02 07:43:47 +00:00
|
|
|
virtual wxInt32 GetDocCount();
|
|
|
|
|
|
|
|
virtual wxString OnListGetItemText( long item, long column ) const;
|
|
|
|
|
|
|
|
virtual wxInt32 AddCacheElement();
|
|
|
|
virtual wxInt32 EmptyCache();
|
|
|
|
virtual wxInt32 GetCacheCount();
|
|
|
|
virtual wxInt32 RemoveCacheElement();
|
2008-06-25 10:38:16 +00:00
|
|
|
virtual bool SynchronizeCacheItem(wxInt32 iRowIndex, wxInt32 iColumnIndex);
|
2004-09-24 02:01:53 +00:00
|
|
|
virtual void UpdateSelection();
|
2004-09-24 22:19:02 +00:00
|
|
|
|
2008-06-25 10:38:16 +00:00
|
|
|
void GetDocProjectName(wxInt32 item, wxString& strBuffer) const;
|
2004-10-11 04:38:00 +00:00
|
|
|
wxInt32 FormatProjectName( wxInt32 item, wxString& strBuffer ) const;
|
2008-06-25 10:38:16 +00:00
|
|
|
void GetDocApplicationName(wxInt32 item, wxString& strBuffer) const;
|
2004-10-11 04:38:00 +00:00
|
|
|
wxInt32 FormatApplicationName( wxInt32 item, wxString& strBuffer ) const;
|
2008-06-25 10:38:16 +00:00
|
|
|
void GetDocName(wxInt32 item, wxString& strBuffer) const;
|
2004-10-11 04:38:00 +00:00
|
|
|
wxInt32 FormatName( wxInt32 item, wxString& strBuffer ) const;
|
2008-06-25 10:38:16 +00:00
|
|
|
void GetDocCPUTime(wxInt32 item, float& fBuffer) const;
|
2004-10-11 04:38:00 +00:00
|
|
|
wxInt32 FormatCPUTime( wxInt32 item, wxString& strBuffer ) const;
|
2008-06-25 10:38:16 +00:00
|
|
|
void GetDocProgress(wxInt32 item, float& fBuffer) const;
|
2004-10-11 04:38:00 +00:00
|
|
|
wxInt32 FormatProgress( wxInt32 item, wxString& strBuffer ) const;
|
2008-06-25 10:38:16 +00:00
|
|
|
void GetDocTimeToCompletion(wxInt32 item, float& fBuffer) const;
|
2004-10-11 04:38:00 +00:00
|
|
|
wxInt32 FormatTimeToCompletion( wxInt32 item, wxString& strBuffer ) const;
|
2008-06-25 10:38:16 +00:00
|
|
|
void GetDocReportDeadline(wxInt32 item, time_t& time) const;
|
2004-10-11 04:38:00 +00:00
|
|
|
wxInt32 FormatReportDeadline( wxInt32 item, wxString& strBuffer ) const;
|
2008-06-25 10:38:16 +00:00
|
|
|
void GetDocStatus(wxInt32 item, wxString& strBuffer) const;
|
2004-10-11 04:38:00 +00:00
|
|
|
wxInt32 FormatStatus( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
|
2008-06-24 10:52:12 +00:00
|
|
|
virtual double GetProgressValue(long item);
|
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2004-05-17 22:15:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|