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 _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:
|
|
|
|
CWork();
|
|
|
|
~CWork();
|
|
|
|
|
|
|
|
wxInt32 GetProjectName( wxString& strProjectName );
|
|
|
|
wxInt32 GetApplicationName( wxString& strApplicationName );
|
|
|
|
wxInt32 GetName( wxString& strName );
|
|
|
|
wxInt32 GetCPUTime( wxString& strCPUTime );
|
|
|
|
wxInt32 GetProgress( wxString& strProgress );
|
|
|
|
wxInt32 GetTimeToCompletion( wxString& strTimeToCompletion );
|
|
|
|
wxInt32 GetReportDeadline( wxString& strReportDeadline );
|
|
|
|
wxInt32 GetStatus( wxString& strStatus );
|
|
|
|
|
|
|
|
wxInt32 SetProjectName( wxString& strProjectName );
|
|
|
|
wxInt32 SetApplicationName( wxString& strApplicationName );
|
|
|
|
wxInt32 SetName( wxString& strName );
|
|
|
|
wxInt32 SetCPUTime( wxString& strCPUTime );
|
|
|
|
wxInt32 SetProgress( wxString& strProgress );
|
|
|
|
wxInt32 SetTimeToCompletion( wxString& strTimeToCompletion );
|
|
|
|
wxInt32 SetReportDeadline( wxString& strReportDeadline );
|
|
|
|
wxInt32 SetStatus( wxString& strStatus );
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxString m_strProjectName;
|
|
|
|
wxString m_strApplicationName;
|
|
|
|
wxString m_strName;
|
|
|
|
wxString m_strCPUTime;
|
|
|
|
wxString m_strProgress;
|
|
|
|
wxString m_strTimeToCompletion;
|
|
|
|
wxString m_strReportDeadline;
|
|
|
|
wxString m_strStatus;
|
|
|
|
};
|
|
|
|
|
|
|
|
WX_DECLARE_OBJARRAY( CWork, CWorkCache );
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
virtual wxString GetViewName();
|
|
|
|
virtual char** GetViewIcon();
|
2004-09-24 02:01:53 +00:00
|
|
|
|
2004-12-02 07:43:47 +00:00
|
|
|
protected:
|
2004-09-21 01:30:29 +00:00
|
|
|
|
2004-09-24 02:01:53 +00:00
|
|
|
bool m_bTaskHeaderHidden;
|
2004-10-09 03:05:01 +00:00
|
|
|
bool m_bTaskSuspendHidden;
|
|
|
|
bool m_bTaskResumeHidden;
|
2004-09-24 02:01:53 +00:00
|
|
|
bool m_bTaskShowGraphicsHidden;
|
|
|
|
bool m_bTaskAbortHidden;
|
|
|
|
|
|
|
|
bool m_bTipsHeaderHidden;
|
|
|
|
|
|
|
|
bool m_bItemSelected;
|
2004-05-17 22:15:10 +00:00
|
|
|
|
2004-12-02 07:43:47 +00:00
|
|
|
CWorkCache m_WorkCache;
|
|
|
|
|
|
|
|
virtual wxInt32 GetDocCount();
|
|
|
|
|
|
|
|
virtual wxString OnListGetItemText( long item, long column ) const;
|
|
|
|
|
|
|
|
virtual wxString OnDocGetItemText( long item, long column ) const;
|
|
|
|
|
|
|
|
virtual void OnTaskLinkClicked( const wxHtmlLinkInfo& link );
|
|
|
|
virtual void OnTaskCellMouseHover( wxHtmlCell* cell, wxCoord x, wxCoord y );
|
|
|
|
|
|
|
|
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();
|
|
|
|
virtual void UpdateTaskPane();
|
2004-09-24 22:19:02 +00:00
|
|
|
|
2004-10-11 04:38:00 +00:00
|
|
|
wxInt32 FormatProjectName( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatApplicationName( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatName( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatCPUTime( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatProgress( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatTimeToCompletion( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatReportDeadline( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatStatus( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
|
2004-12-23 01:06:41 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Globalization/Localization
|
|
|
|
//
|
|
|
|
wxString VIEW_HEADER;
|
|
|
|
|
|
|
|
wxString SECTION_TASK;
|
|
|
|
wxString SECTION_TIPS;
|
|
|
|
|
|
|
|
wxString BITMAP_RESULTS;
|
|
|
|
wxString BITMAP_TASKHEADER;
|
|
|
|
wxString BITMAP_TIPSHEADER;
|
|
|
|
|
|
|
|
wxString LINKDESC_DEFAULT;
|
|
|
|
|
|
|
|
wxString LINK_TASKSUSPEND;
|
|
|
|
wxString LINKDESC_TASKSUSPEND;
|
|
|
|
|
|
|
|
wxString LINK_TASKRESUME;
|
|
|
|
wxString LINKDESC_TASKRESUME;
|
|
|
|
|
|
|
|
wxString LINK_TASKSHOWGRAPHICS;
|
|
|
|
wxString LINKDESC_TASKSHOWGRAPHICS;
|
|
|
|
|
|
|
|
wxString LINK_TASKABORT;
|
|
|
|
wxString LINKDESC_TASKABORT;
|
|
|
|
|
2004-05-17 22:15:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|