boinc/clientgui/BOINCBaseView.cpp

933 lines
33 KiB
C++
Raw Normal View History

// Berkeley Open Infrastructure for Network Computing
// http://boinc.berkeley.edu
// Copyright (C) 2005 University of California
//
// 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.
//
// 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.
//
// To view the GNU Lesser General Public License visit
// http://www.gnu.org/copyleft/lesser.html
// or write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#if defined(__GNUG__) && !defined(__APPLE__)
#pragma implementation "BOINCBaseView.h"
#endif
#include "stdwx.h"
#include "BOINCGUIApp.h"
#include "MainDocument.h"
#include "BOINCBaseView.h"
#include "BOINCTaskCtrl.h"
#include "BOINCListCtrl.h"
#include "Events.h"
#include "res/boinc.xpm"
#include "res/sortascending.xpm"
#include "res/sortdescending.xpm"
IMPLEMENT_DYNAMIC_CLASS(CBOINCBaseView, wxPanel)
CBOINCBaseView::CBOINCBaseView() {}
CBOINCBaseView::CBOINCBaseView(wxNotebook* pNotebook) :
wxPanel(pNotebook, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL)
{
wxASSERT(pNotebook);
m_bProcessingTaskRenderEvent = false;
m_bProcessingListRenderEvent = false;
m_bForceUpdateSelection = true;
m_bIgnoreUIEvents = false;
//
// Setup View
//
m_pTaskPane = NULL;
m_pListPane = NULL;
m_iProgressColumn = -1;
m_iSortColumn = -1;
m_SortArrows = NULL;
SetName(GetViewName());
SetAutoLayout(TRUE);
}
CBOINCBaseView::CBOINCBaseView(
wxNotebook* pNotebook, wxWindowID iTaskWindowID, int iTaskWindowFlags, wxWindowID iListWindowID, int iListWindowFlags) :
wxPanel(pNotebook, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL)
{
wxASSERT(pNotebook);
m_bProcessingTaskRenderEvent = false;
m_bProcessingListRenderEvent = false;
m_bForceUpdateSelection = true;
m_bIgnoreUIEvents = false;
//
// Setup View
//
m_pTaskPane = NULL;
m_pListPane = NULL;
SetName(GetViewName());
SetAutoLayout(TRUE);
wxFlexGridSizer* itemFlexGridSizer = new wxFlexGridSizer(2, 0, 0);
wxASSERT(itemFlexGridSizer);
itemFlexGridSizer->AddGrowableRow(0);
itemFlexGridSizer->AddGrowableCol(1);
m_pTaskPane = new CBOINCTaskCtrl(this, iTaskWindowID, iTaskWindowFlags);
wxASSERT(m_pTaskPane);
m_pListPane = new CBOINCListCtrl(this, iListWindowID, iListWindowFlags);
wxASSERT(m_pListPane);
itemFlexGridSizer->Add(m_pTaskPane, 1, wxGROW|wxALL, 1);
itemFlexGridSizer->Add(m_pListPane, 1, wxGROW|wxALL, 1);
SetSizer(itemFlexGridSizer);
Layout();
#if USE_NATIVE_LISTCONTROL
m_pListPane->PushEventHandler(new MyEvtHandler(m_pListPane));
#else
(m_pListPane->GetMainWin())->PushEventHandler(new MyEvtHandler(m_pListPane));
#endif
m_iProgressColumn = -1;
m_iSortColumn = -1;
m_bReverseSort = false;
m_SortArrows = new wxImageList(16, 16, true);
m_SortArrows->Add( wxIcon( sortascending_xpm ) );
m_SortArrows->Add( wxIcon( sortdescending_xpm ) );
m_pListPane->SetImageList(m_SortArrows, wxIMAGE_LIST_SMALL);
}
CBOINCBaseView::~CBOINCBaseView() {
if (m_pListPane) {
#if USE_NATIVE_LISTCONTROL
m_pListPane->PopEventHandler(true);
#else
(m_pListPane->GetMainWin())->PopEventHandler(true);
#endif
}
if (m_SortArrows) {
delete m_SortArrows;
}
}
// The name of the view.
// If it has not been defined by the view "Undefined" is returned.
//
wxString& CBOINCBaseView::GetViewName() {
static wxString strViewName(wxT("Undefined"));
return strViewName;
}
// The user friendly name of the view.
// If it has not been defined by the view "Undefined" is returned.
//
wxString& CBOINCBaseView::GetViewDisplayName() {
static wxString strViewName(wxT("Undefined"));
return strViewName;
}
// The user friendly icon of the view.
// If it has not been defined by the view the BOINC icon is returned.
//
const char** CBOINCBaseView::GetViewIcon() {
wxASSERT(boinc_xpm);
return boinc_xpm;
}
// The rate at which the view is refreshed.
// If it has not been defined by the view 1 second is retrned.
//
const int CBOINCBaseView::GetViewRefreshRate() {
return 1;
}
bool CBOINCBaseView::FireOnSaveState(wxConfigBase* pConfig) {
return OnSaveState(pConfig);
}
bool CBOINCBaseView::FireOnRestoreState(wxConfigBase* pConfig) {
return OnRestoreState(pConfig);
}
int CBOINCBaseView::GetListRowCount() {
wxASSERT(m_pListPane);
return m_pListPane->GetItemCount();
}
void CBOINCBaseView::FireOnListRender(wxTimerEvent& event) {
OnListRender(event);
}
void CBOINCBaseView::FireOnListSelected(wxListEvent& event) {
OnListSelected(event);
}
void CBOINCBaseView::FireOnListDeselected(wxListEvent& event) {
OnListDeselected(event);
}
wxString CBOINCBaseView::FireOnListGetItemText(long item, long column) const {
return OnListGetItemText(item, column);
}
int CBOINCBaseView::FireOnListGetItemImage(long item) const {
return OnListGetItemImage(item);
}
wxListItemAttr* CBOINCBaseView::FireOnListGetItemAttr(long item) const {
return OnListGetItemAttr(item);
}
void CBOINCBaseView::OnListRender(wxTimerEvent& event) {
if (!m_bProcessingListRenderEvent) {
m_bProcessingListRenderEvent = true;
wxASSERT(m_pListPane);
int iDocCount = GetDocCount();
int iCacheCount = GetCacheCount();
if (iDocCount != iCacheCount) {
if (0 >= iDocCount) {
EmptyCache();
m_pListPane->DeleteAllItems();
} else {
int iIndex = 0;
int iReturnValue = -1;
if (iDocCount > iCacheCount) {
for (iIndex = 0; iIndex < (iDocCount - iCacheCount); iIndex++
) {
iReturnValue = AddCacheElement();
wxASSERT(!iReturnValue);
}
wxASSERT(GetDocCount() == GetCacheCount());
} else {
for (iIndex = 0; iIndex < (iCacheCount - iDocCount); iIndex++
) {
iReturnValue = RemoveCacheElement();
wxASSERT(!iReturnValue);
}
wxASSERT(GetDocCount() == GetCacheCount());
}
m_pListPane->SetItemCount(iDocCount);
}
}
if (iDocCount) {
SynchronizeCache();
}
if (_EnsureLastItemVisible() && (iDocCount != iCacheCount)) {
m_pListPane->EnsureVisible(iDocCount - 1);
}
if (m_pListPane->m_bIsSingleSelection) {
// If no item has been selected yet, select the first item.
#ifdef __WXMSW__
if ((m_pListPane->GetSelectedItemCount() == 0) &&
(m_pListPane->GetItemCount() >= 1)) {
long desiredstate = wxLIST_STATE_FOCUSED | wxLIST_STATE_SELECTED;
m_pListPane->SetItemState(0, desiredstate, desiredstate);
}
#else
if ((m_pListPane->GetFirstSelected() < 0) &&
(m_pListPane->GetItemCount() >= 1))
m_pListPane->SetItemState(0, wxLIST_STATE_FOCUSED | wxLIST_STATE_SELECTED,
wxLIST_STATE_FOCUSED | wxLIST_STATE_SELECTED);
#endif
}
UpdateSelection();
m_bProcessingListRenderEvent = false;
}
event.Skip();
}
bool CBOINCBaseView::OnSaveState(wxConfigBase* pConfig) {
bool bReturnValue = true;
wxASSERT(pConfig);
wxASSERT(m_pTaskPane);
wxASSERT(m_pListPane);
if (!m_pTaskPane->OnSaveState(pConfig)) {
bReturnValue = false;
}
if (!m_pListPane->OnSaveState(pConfig)) {
bReturnValue = false;
}
return bReturnValue;
}
bool CBOINCBaseView::OnRestoreState(wxConfigBase* pConfig) {
wxASSERT(pConfig);
wxASSERT(m_pTaskPane);
wxASSERT(m_pListPane);
if (!m_pTaskPane->OnRestoreState(pConfig)) {
return false;
}
if (!m_pListPane->OnRestoreState(pConfig)) {
return false;
}
return true;
}
void CBOINCBaseView::OnListSelected(wxListEvent& event) {
wxLogTrace(wxT("Function Start/End"), wxT("CBOINCBaseView::OnListSelected - Function Begin"));
if (!m_bIgnoreUIEvents) {
m_bForceUpdateSelection = true;
UpdateSelection();
event.Skip();
}
wxLogTrace(wxT("Function Start/End"), wxT("CBOINCBaseView::OnListSelected - Function End"));
}
void CBOINCBaseView::OnListDeselected(wxListEvent& event) {
wxLogTrace(wxT("Function Start/End"), wxT("CBOINCBaseView::OnListDeselected - Function Begin"));
if (!m_bIgnoreUIEvents) {
m_bForceUpdateSelection = true;
UpdateSelection();
event.Skip();
}
wxLogTrace(wxT("Function Start/End"), wxT("CBOINCBaseView::OnListDeselected - Function End"));
}
// Work around a bug (feature?) in virtual list control
// which does not send deselection events
void CBOINCBaseView::OnCacheHint(wxListEvent& event) {
static int oldSelectionCount = 0;
int newSelectionCount = m_pListPane->GetSelectedItemCount();
if (newSelectionCount < oldSelectionCount) {
wxListEvent leDeselectedEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED, m_windowId);
leDeselectedEvent.SetEventObject(this);
OnListDeselected(leDeselectedEvent);
}
oldSelectionCount = newSelectionCount;
event.Skip();
}
wxString CBOINCBaseView::OnListGetItemText(long WXUNUSED(item), long WXUNUSED(column)) const {
return wxString(wxT("Undefined"));
}
int CBOINCBaseView::OnListGetItemImage(long WXUNUSED(item)) const {
return -1;
}
wxListItemAttr* CBOINCBaseView::OnListGetItemAttr(long WXUNUSED(item)) const {
return NULL;
}
void CBOINCBaseView::OnGridSelectCell( wxGridEvent& event ) {
wxLogTrace(wxT("Function Start/End"), wxT("CBOINCBaseView::OnGridSelectCell - Function Begin"));
if (!m_bIgnoreUIEvents) {
m_bForceUpdateSelection = true;
UpdateSelection();
event.Skip();
}
wxLogTrace(wxT("Function Start/End"), wxT("CBOINCBaseView::OnGridSelectCell - Function End"));
}
void CBOINCBaseView::OnGridSelectRange( wxGridRangeSelectEvent& event ) {
wxLogTrace(wxT("Function Start/End"), wxT("CBOINCBaseView::OnGridSelectRange - Function Begin"));
if (!m_bIgnoreUIEvents) {
m_bForceUpdateSelection = true;
UpdateSelection();
event.Skip();
}
wxLogTrace(wxT("Function Start/End"), wxT("CBOINCBaseView::OnGridSelectRange - Function End"));
}
int CBOINCBaseView::GetDocCount() {
return 0;
}
wxString CBOINCBaseView::OnDocGetItemImage(long WXUNUSED(item)) const {
return wxString(wxT("Undefined"));
}
wxString CBOINCBaseView::OnDocGetItemAttr(long WXUNUSED(item)) const {
return wxString(wxT("Undefined"));
}
int CBOINCBaseView::AddCacheElement() {
return -1;
}
int CBOINCBaseView::EmptyCache() {
return -1;
}
int CBOINCBaseView::GetCacheCount() {
return -1;
}
int CBOINCBaseView::RemoveCacheElement() {
return -1;
}
int CBOINCBaseView::SynchronizeCache() {
int iRowIndex = 0;
int iRowTotal = 0;
int iColumnIndex = 0;
int iColumnTotal = 0;
bool bNeedRefreshData = false;
bool bNeedSort = false;
iRowTotal = GetDocCount();
iColumnTotal = m_pListPane->GetColumnCount();
for (iRowIndex = 0; iRowIndex < iRowTotal; iRowIndex++) {
bNeedRefreshData = false;
for (iColumnIndex = 0; iColumnIndex < iColumnTotal; iColumnIndex++) {
if (SynchronizeCacheItem(iRowIndex, iColumnIndex)) {
bNeedRefreshData = true;
if (iColumnIndex == m_iSortColumn) {
bNeedSort = true;
}
}
}
if (bNeedRefreshData) {
m_pListPane->RefreshItem(iRowIndex);
}
}
if (bNeedSort) {
sortData(); // Will mark entire list as needing refresh
}
return 0;
}
bool CBOINCBaseView::SynchronizeCacheItem(wxInt32 WXUNUSED(iRowIndex), wxInt32 WXUNUSED(iColumnIndex)) {
return false;
}
void CBOINCBaseView::OnColClick(wxListEvent& event) {
wxListItem item;
int newSortColumn = event.GetColumn();
item.SetMask(wxLIST_MASK_IMAGE);
if (newSortColumn == m_iSortColumn) {
m_bReverseSort = !m_bReverseSort;
} else {
// Remove sort arrow from old sort column
if (m_iSortColumn >= 0) {
item.SetImage(-1);
m_pListPane->SetColumn(m_iSortColumn, item);
}
m_iSortColumn = newSortColumn;
m_bReverseSort = false;
}
item.SetImage(m_bReverseSort ? 0 : 1);
m_pListPane->SetColumn(newSortColumn, item);
sortData();
}
void CBOINCBaseView::InitSort() {
wxListItem item;
if (m_iSortColumn < 0) return;
item.SetMask(wxLIST_MASK_IMAGE);
item.SetImage(m_bReverseSort ? 0 : 1);
m_pListPane->SetColumn(m_iSortColumn, item);
sortData();
}
void CBOINCBaseView::sortData() {
if (m_iSortColumn < 0) return;
wxArrayInt oldSortedIndexes(m_iSortedIndexes);
wxArrayInt selections;
int i, j, m, n = (int)m_iSortedIndexes.GetCount();
// Remember which cache elements are selected and deselect them
m_bIgnoreUIEvents = true;
i = -1;
while (1) {
i = m_pListPane->GetNextItem(i, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
if (i < 0) break;
selections.Add(m_iSortedIndexes[i]);
m_pListPane->SetItemState(i, 0, wxLIST_STATE_SELECTED);
}
m_iSortedIndexes.Sort(m_funcSortCompare);
// Reselect previously selected cache elements in the sorted list
m = (int)selections.GetCount();
for (i=0; i<m; i++) {
if (selections[i] >= 0) {
j = m_iSortedIndexes.Index(selections[i]);
m_pListPane->SetItemState(j, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
}
}
m_bIgnoreUIEvents = false;
// Refresh rows which have moved
for (i=0; i<n; i++) {
if (m_iSortedIndexes[i] != oldSortedIndexes[i]) {
m_pListPane->RefreshItem(i);
}
}
}
void CBOINCBaseView::EmptyTasks() {
unsigned int i;
unsigned int j;
for (i=0; i<m_TaskGroups.size(); i++) {
for (j=0; j<m_TaskGroups[i]->m_Tasks.size(); j++) {
delete m_TaskGroups[i]->m_Tasks[j];
}
m_TaskGroups[i]->m_Tasks.clear();
delete m_TaskGroups[i];
}
m_TaskGroups.clear();
}
void CBOINCBaseView::PreUpdateSelection(){
}
void CBOINCBaseView::UpdateSelection(){
}
void CBOINCBaseView::PostUpdateSelection(){
wxASSERT(m_pTaskPane);
m_pTaskPane->UpdateControls();
Layout();
}
void CBOINCBaseView::UpdateWebsiteSelection(long lControlGroup, PROJECT* project){
unsigned int i;
CTaskItemGroup* pGroup = NULL;
CTaskItem* pItem = NULL;
wxASSERT(m_pTaskPane);
wxASSERT(m_pListPane);
// Update the websites list
//
if (m_bForceUpdateSelection) {
if (m_TaskGroups.size() > 1) {
// Delete task group, objects, and controls.
pGroup = m_TaskGroups[lControlGroup];
m_pTaskPane->DeleteTaskGroupAndTasks(pGroup);
for (i=0; i<pGroup->m_Tasks.size(); i++) {
delete pGroup->m_Tasks[i];
}
pGroup->m_Tasks.clear();
delete pGroup;
pGroup = NULL;
m_TaskGroups.erase( m_TaskGroups.begin() + 1 );
}
// If something is selected create the tasks and controls
if (m_pListPane->GetSelectedItemCount()) {
if (project) {
// Create the web sites task group
pGroup = new CTaskItemGroup( _("Web sites") );
m_TaskGroups.push_back( pGroup );
// Default project url
pItem = new CTaskItem(
wxString(project->project_name.c_str(), wxConvUTF8),
wxT(""),
wxString(project->master_url.c_str(), wxConvUTF8),
ID_TASK_PROJECT_WEB_PROJDEF_MIN
);
pGroup->m_Tasks.push_back(pItem);
// Project defined urls
for (i=0;(i<project->gui_urls.size())&&(i<=ID_TASK_PROJECT_WEB_PROJDEF_MAX);i++) {
pItem = new CTaskItem(
wxGetTranslation(wxString(project->gui_urls[i].name.c_str(), wxConvUTF8)),
wxGetTranslation(wxString(project->gui_urls[i].description.c_str(), wxConvUTF8)),
wxString(project->gui_urls[i].url.c_str(), wxConvUTF8),
ID_TASK_PROJECT_WEB_PROJDEF_MIN + 1 + i
);
pGroup->m_Tasks.push_back(pItem);
}
}
}
m_bForceUpdateSelection = false;
}
}
bool CBOINCBaseView::_EnsureLastItemVisible() {
return EnsureLastItemVisible();
}
bool CBOINCBaseView::EnsureLastItemVisible() {
return false;
}
double CBOINCBaseView::GetProgressValue(long) {
return 0.0;
}
void CBOINCBaseView::append_to_status(wxString& existing, const wxChar* additional) {
if (existing.size() == 0) {
existing = additional;
} else {
existing = existing + wxT(", ") + additional;
}
}
// HTML Entity Conversion:
// http://www.webreference.com/html/reference/character/
// Completed: The ISO Latin 1 Character Set
//
wxString CBOINCBaseView::HtmlEntityEncode(wxString strRaw) {
wxString strEncodedHtml(strRaw);
#ifdef __WXMSW__
strEncodedHtml.Replace(wxT("&"), wxT("&amp;"), true);
strEncodedHtml.Replace(wxT("\""), wxT("&quot;"), true);
strEncodedHtml.Replace(wxT("<"), wxT("&lt;"), true);
strEncodedHtml.Replace(wxT(">"), wxT("&gt;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&sbquo;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&fnof;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&bdquo;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&hellip;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&dagger;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Dagger;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Scaron;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&OElig;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&lsquo;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&rsquo;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&ldquo;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&rdquo;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&bull;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&ndash;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&mdash;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD><EFBFBD>~"), wxT("&tilde;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&trade;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&scaron;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&oelig;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Yuml;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&iexcl;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&cent;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&pound;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&curren;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&yen;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&brvbar;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&sect;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&uml;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&copy;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&ordf;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&laquo;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&not;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&reg;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&macr;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&deg;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&plusmn;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&sup2;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&sup3;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&acute;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&micro;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&para;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&middot;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&cedil;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&sup1;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&ordm;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&raquo;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&frac14;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&frac12;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&frac34;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&iquest;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Agrave;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Aacute;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Acirc;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Atilde;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Auml;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Aring;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&AElig;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Ccedil;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Egrave;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Eacute;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Ecirc;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Euml;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Igrave;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Iacute;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Icirc;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Iuml;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&ETH;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Ntilde;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Ograve;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Oacute;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Ocirc;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Otilde;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Ouml;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&times;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Oslash;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Ugrave;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Uacute;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Ucirc;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Uuml;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&Yacute;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&THORN;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&szlig;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&agrave;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&aacute;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&acirc;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&atilde;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&auml;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&aring;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&aelig;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&ccedil;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&egrave;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&eacute;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&ecirc;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&euml;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&igrave;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&iacute;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&icirc;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&iuml;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&eth;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&ntilde;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&ograve;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&oacute;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&ocirc;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&otilde;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&ouml;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&divide;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&oslash;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&ugrave;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&uacute;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&ucirc;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&uuml;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&yacute;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&thorn;"), true);
strEncodedHtml.Replace(wxT("<EFBFBD>"), wxT("&yuml;"), true);
#endif
return strEncodedHtml;
}
wxString CBOINCBaseView::HtmlEntityDecode(wxString strRaw) {
wxString strDecodedHtml(strRaw);
if (0 <= strDecodedHtml.Find(wxT("&"))) {
#ifdef __WXMSW__
strDecodedHtml.Replace(wxT("&amp;"), wxT("&"), true);
strDecodedHtml.Replace(wxT("&quot;"), wxT("\""), true);
strDecodedHtml.Replace(wxT("&lt;"), wxT("<"), true);
strDecodedHtml.Replace(wxT("&gt;"), wxT(">"), true);
strDecodedHtml.Replace(wxT("&sbquo;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&fnof;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&bdquo;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&hellip;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&dagger;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Dagger;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Scaron;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&OElig;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&lsquo;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&rsquo;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&ldquo;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&rdquo;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&bull;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&ndash;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&mdash;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&tilde;"), wxT("<EFBFBD><EFBFBD>~"), true);
strDecodedHtml.Replace(wxT("&trade;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&scaron;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&oelig;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Yuml;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&iexcl;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&cent;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&pound;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&curren;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&yen;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&brvbar;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&sect;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&uml;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&copy;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&ordf;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&laquo;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&not;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&reg;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&macr;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&deg;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&plusmn;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&sup2;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&sup3;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&acute;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&micro;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&para;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&middot;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&cedil;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&sup1;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&ordm;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&raquo;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&frac14;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&frac12;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&frac34;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&iquest;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Agrave;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Aacute;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Acirc;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Atilde;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Auml;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Aring;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&AElig;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Ccedil;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Egrave;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Eacute;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Ecirc;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Euml;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Igrave;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Iacute;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Icirc;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Iuml;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&ETH;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Ntilde;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Ograve;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Oacute;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Ocirc;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Otilde;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Ouml;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&times;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Oslash;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Ugrave;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Uacute;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Ucirc;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Uuml;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&Yacute;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&THORN;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&szlig;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&agrave;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&aacute;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&acirc;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&atilde;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&auml;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&aring;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&aelig;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&ccedil;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&egrave;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&eacute;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&ecirc;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&euml;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&igrave;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&iacute;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&icirc;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&iuml;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&eth;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&ntilde;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&ograve;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&oacute;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&ocirc;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&otilde;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&ouml;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&divide;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&oslash;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&ugrave;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&uacute;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&ucirc;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&uuml;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&yacute;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&thorn;"), wxT("<EFBFBD>"), true);
strDecodedHtml.Replace(wxT("&yuml;"), wxT("<EFBFBD>"), true);
#endif
}
return strDecodedHtml;
}
const char *BOINC_RCSID_0a1bd38a5a = "$Id$";