2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-01-20 23:22:22 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2004-05-17 22:15:10 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC 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 3 of the License, or (at your option) any later version.
|
2004-04-10 09:11:03 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-01-20 23:22:22 +00:00
|
|
|
// 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
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2004-05-17 22:15:10 +00:00
|
|
|
|
2004-09-21 01:30:29 +00:00
|
|
|
#ifndef _VIEWMESSAGES_H_
|
|
|
|
#define _VIEWMESSAGES_H_
|
2004-04-11 04:37:10 +00:00
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
2004-09-21 01:30:29 +00:00
|
|
|
#pragma interface "ViewMessages.cpp"
|
2004-04-11 04:37:10 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-09-21 01:30:29 +00:00
|
|
|
#include "BOINCBaseView.h"
|
2004-04-10 09:11:03 +00:00
|
|
|
|
2006-07-26 15:14:01 +00:00
|
|
|
class CBOINCBaseView;
|
2004-12-02 07:43:47 +00:00
|
|
|
|
2004-09-21 01:30:29 +00:00
|
|
|
class CViewMessages : public CBOINCBaseView
|
2004-04-10 09:11:03 +00:00
|
|
|
{
|
2004-09-21 01:30:29 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS( CViewMessages )
|
2007-04-04 21:20:53 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2004-04-10 09:11:03 +00:00
|
|
|
|
|
|
|
public:
|
2004-09-21 01:30:29 +00:00
|
|
|
CViewMessages();
|
|
|
|
CViewMessages(wxNotebook* pNotebook);
|
2004-04-10 09:11:03 +00:00
|
|
|
|
2004-09-21 01:30:29 +00:00
|
|
|
~CViewMessages();
|
2004-04-10 09:11:03 +00:00
|
|
|
|
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-04-08 06:24:58 +00:00
|
|
|
virtual const char** GetViewIcon();
|
2004-07-13 05:56:03 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
void OnMessagesCopyAll( wxCommandEvent& event );
|
|
|
|
void OnMessagesCopySelected( wxCommandEvent& event );
|
2008-07-08 12:47:05 +00:00
|
|
|
void OnMessagesFilter( wxCommandEvent& event );
|
2004-12-02 07:43:47 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
protected:
|
2006-07-26 15:14:01 +00:00
|
|
|
|
2008-07-08 12:47:05 +00:00
|
|
|
wxArrayInt m_iFilteredIndexes;
|
|
|
|
wxInt32 m_iTotalDocCount;
|
|
|
|
wxInt32 m_iFilteredDocCount;
|
|
|
|
wxInt32 m_iPreviousTotalDocCount;
|
|
|
|
wxInt32 m_iPreviousRowCount;
|
|
|
|
bool m_bIsFiltered;
|
|
|
|
std::string m_strFilteredProjectName;
|
2005-02-02 22:20:25 +00:00
|
|
|
|
2004-12-02 07:43:47 +00:00
|
|
|
wxListItemAttr* m_pMessageInfoAttr;
|
|
|
|
wxListItemAttr* m_pMessageErrorAttr;
|
2008-09-08 12:39:41 +00:00
|
|
|
wxListItemAttr* m_pMessageInfoGrayAttr;
|
|
|
|
wxListItemAttr* m_pMessageErrorGrayAttr;
|
2004-12-02 07:43:47 +00:00
|
|
|
|
2005-02-02 22:20:25 +00:00
|
|
|
virtual void OnListRender( wxTimerEvent& event );
|
2004-12-02 07:43:47 +00:00
|
|
|
|
2008-07-08 12:47:05 +00:00
|
|
|
virtual wxInt32 GetFilteredMessageIndex( wxInt32 iRow) const;
|
2004-12-02 07:43:47 +00:00
|
|
|
virtual wxInt32 GetDocCount();
|
2004-07-13 05:56:03 +00:00
|
|
|
|
2004-09-24 22:19:02 +00:00
|
|
|
virtual wxString OnListGetItemText( long item, long column ) const;
|
|
|
|
virtual wxListItemAttr* OnListGetItemAttr( long item ) const;
|
|
|
|
|
2004-12-02 07:43:47 +00:00
|
|
|
virtual bool EnsureLastItemVisible();
|
2004-09-24 22:19:02 +00:00
|
|
|
|
2004-12-02 07:43:47 +00:00
|
|
|
virtual void UpdateSelection();
|
2004-09-24 22:19:02 +00:00
|
|
|
|
2004-12-02 07:43:47 +00:00
|
|
|
wxInt32 FormatProjectName( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatTime( wxInt32 item, wxString& strBuffer ) const;
|
|
|
|
wxInt32 FormatMessage( wxInt32 item, wxString& strBuffer ) const;
|
2004-09-29 22:21:45 +00:00
|
|
|
|
2005-08-02 21:55:32 +00:00
|
|
|
#ifdef wxUSE_CLIPBOARD
|
2004-10-27 21:10:22 +00:00
|
|
|
bool m_bClipboardOpen;
|
|
|
|
wxString m_strClipboardData;
|
2009-02-05 19:25:08 +00:00
|
|
|
bool OpenClipboard( wxInt32 size );
|
2004-11-05 19:38:11 +00:00
|
|
|
wxInt32 CopyToClipboard( wxInt32 item );
|
|
|
|
bool CloseClipboard();
|
|
|
|
#endif
|
2004-04-10 09:11:03 +00:00
|
|
|
};
|
2004-04-11 04:37:10 +00:00
|
|
|
|
2004-04-11 05:09:18 +00:00
|
|
|
#endif
|
|
|
|
|