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-09-21 01:30:29 +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-09-21 01:30:29 +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-09-21 01:30:29 +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-09-21 01:30:29 +00:00
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
|
|
#pragma implementation "BOINCBaseView.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "stdwx.h"
|
2004-10-26 01:59:44 +00:00
|
|
|
#include "BOINCGUIApp.h"
|
|
|
|
#include "MainDocument.h"
|
2004-09-21 01:30:29 +00:00
|
|
|
#include "BOINCBaseView.h"
|
|
|
|
#include "BOINCTaskCtrl.h"
|
|
|
|
#include "BOINCListCtrl.h"
|
2004-09-22 21:53:07 +00:00
|
|
|
|
2004-09-21 01:30:29 +00:00
|
|
|
#include "res/boinc.xpm"
|
|
|
|
|
|
|
|
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(CBOINCBaseView, wxPanel)
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
CBOINCBaseView::CBOINCBaseView() {}
|
2004-09-21 01:30:29 +00:00
|
|
|
|
2005-07-21 09:43:40 +00:00
|
|
|
CBOINCBaseView::CBOINCBaseView(wxNotebook* pNotebook, wxString strName) :
|
2005-04-21 06:04:26 +00:00
|
|
|
wxPanel(pNotebook, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL)
|
|
|
|
{
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(pNotebook);
|
2005-04-21 06:04:26 +00:00
|
|
|
|
|
|
|
m_bProcessingTaskRenderEvent = false;
|
|
|
|
m_bProcessingListRenderEvent = false;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Setup View
|
|
|
|
//
|
|
|
|
m_pTaskPane = NULL;
|
|
|
|
m_pListPane = NULL;
|
|
|
|
|
2005-07-21 09:43:40 +00:00
|
|
|
SetName(strName);
|
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
SetAutoLayout(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-08 16:58:55 +00:00
|
|
|
CBOINCBaseView::CBOINCBaseView(
|
2005-07-21 09:43:40 +00:00
|
|
|
wxNotebook* pNotebook, wxString strName, wxWindowID iTaskWindowID, int iTaskWindowFlags,
|
2005-04-21 06:04:26 +00:00
|
|
|
wxWindowID iListWindowID, int iListWindowFlags
|
2005-04-08 16:58:55 +00:00
|
|
|
) : wxPanel(pNotebook, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL) {
|
2004-09-21 01:30:29 +00:00
|
|
|
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(pNotebook);
|
2004-10-26 01:59:44 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
m_bProcessingTaskRenderEvent = false;
|
|
|
|
m_bProcessingListRenderEvent = false;
|
2004-10-26 01:59:44 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
//
|
|
|
|
// Setup View
|
|
|
|
//
|
|
|
|
m_pTaskPane = NULL;
|
|
|
|
m_pListPane = NULL;
|
2004-12-15 23:08:18 +00:00
|
|
|
|
2005-07-21 09:43:40 +00:00
|
|
|
SetName(strName);
|
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
SetAutoLayout(TRUE);
|
2004-09-21 01:30:29 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
wxFlexGridSizer* itemFlexGridSizer = new wxFlexGridSizer(2, 0, 0);
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(itemFlexGridSizer);
|
2004-09-21 01:30:29 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
itemFlexGridSizer->AddGrowableRow(0);
|
|
|
|
itemFlexGridSizer->AddGrowableCol(1);
|
|
|
|
|
|
|
|
m_pTaskPane = new CBOINCTaskCtrl(this, iTaskWindowID, iTaskWindowFlags);
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(m_pTaskPane);
|
2004-09-21 01:30:29 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
m_pListPane = new CBOINCListCtrl(this, iListWindowID, iListWindowFlags);
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(m_pListPane);
|
2004-12-10 23:30:40 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
itemFlexGridSizer->Add(m_pTaskPane, 1, wxGROW|wxALL, 1);
|
|
|
|
itemFlexGridSizer->Add(m_pListPane, 1, wxGROW|wxALL, 1);
|
|
|
|
|
2005-04-27 06:32:40 +00:00
|
|
|
SetSizer(itemFlexGridSizer);
|
|
|
|
|
|
|
|
Layout();
|
2004-09-21 01:30:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
CBOINCBaseView::~CBOINCBaseView() {}
|
2004-09-21 01:30:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
// The user friendly name of the view.
|
|
|
|
// If it has not been defined by the view "Undefined" is returned.
|
|
|
|
//
|
2005-04-07 07:04:50 +00:00
|
|
|
wxString CBOINCBaseView::GetViewName() {
|
2005-07-21 09:43:40 +00:00
|
|
|
return wxString(wxT("Undefined"));
|
2004-09-21 01:30:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// The user friendly icon of the view.
|
|
|
|
// If it has not been defined by the view the BOINC icon is returned.
|
|
|
|
//
|
2005-04-07 07:04:50 +00:00
|
|
|
const char** CBOINCBaseView::GetViewIcon() {
|
2005-04-08 16:58:55 +00:00
|
|
|
wxASSERT(boinc_xpm);
|
2004-09-21 01:30:29 +00:00
|
|
|
return boinc_xpm;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
bool CBOINCBaseView::FireOnSaveState(wxConfigBase* pConfig) {
|
|
|
|
return OnSaveState(pConfig);
|
2004-12-02 07:43:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
bool CBOINCBaseView::FireOnRestoreState(wxConfigBase* pConfig) {
|
|
|
|
return OnRestoreState(pConfig);
|
2004-12-02 07:43:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-20 22:22:41 +00:00
|
|
|
int CBOINCBaseView::GetListRowCount() {
|
|
|
|
wxASSERT(m_pListPane);
|
|
|
|
return m_pListPane->GetItemCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-24 10:49:42 +00:00
|
|
|
void CBOINCBaseView::FireOnListRender(wxTimerEvent& event) {
|
2005-04-20 22:22:41 +00:00
|
|
|
OnListRender(event);
|
2004-12-02 07:43:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
void CBOINCBaseView::FireOnListSelected(wxListEvent& event) {
|
|
|
|
OnListSelected(event);
|
2004-12-02 07:43:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
void CBOINCBaseView::FireOnListDeselected(wxListEvent& event) {
|
|
|
|
OnListDeselected(event);
|
2004-12-02 07:43:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxString CBOINCBaseView::FireOnListGetItemText(long item, long column) const {
|
|
|
|
return OnListGetItemText(item, column);
|
2004-12-02 07:43:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
int CBOINCBaseView::FireOnListGetItemImage(long item) const {
|
|
|
|
return OnListGetItemImage(item);
|
2004-12-02 07:43:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxListItemAttr* CBOINCBaseView::FireOnListGetItemAttr(long item) const {
|
|
|
|
return OnListGetItemAttr(item);
|
2004-12-02 07:43:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
void CBOINCBaseView::OnListRender (wxTimerEvent& event) {
|
|
|
|
if (!m_bProcessingListRenderEvent) {
|
2004-10-26 01:59:44 +00:00
|
|
|
m_bProcessingListRenderEvent = true;
|
|
|
|
|
2005-04-08 16:58:55 +00:00
|
|
|
wxASSERT(m_pListPane);
|
2004-10-26 01:59:44 +00:00
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
int iDocCount = GetDocCount();
|
|
|
|
int iCacheCount = GetCacheCount();
|
2005-04-07 07:04:50 +00:00
|
|
|
if (iDocCount != iCacheCount) {
|
|
|
|
if (0 >= iDocCount) {
|
2004-12-02 07:43:47 +00:00
|
|
|
EmptyCache();
|
2004-10-26 01:59:44 +00:00
|
|
|
m_pListPane->DeleteAllItems();
|
2005-04-07 07:04:50 +00:00
|
|
|
} else {
|
2005-04-10 19:01:23 +00:00
|
|
|
int iIndex = 0;
|
|
|
|
int iReturnValue = -1;
|
2005-04-07 07:04:50 +00:00
|
|
|
if (iDocCount > iCacheCount) {
|
|
|
|
for (iIndex = 0; iIndex < (iDocCount - iCacheCount); iIndex++
|
|
|
|
) {
|
2005-01-06 22:06:35 +00:00
|
|
|
iReturnValue = AddCacheElement();
|
2005-04-08 16:58:55 +00:00
|
|
|
wxASSERT(!iReturnValue);
|
2004-10-26 01:59:44 +00:00
|
|
|
}
|
2005-04-07 07:04:50 +00:00
|
|
|
wxASSERT(GetDocCount() == GetCacheCount());
|
|
|
|
} else {
|
|
|
|
for (iIndex = 0; iIndex < (iCacheCount - iDocCount); iIndex++
|
|
|
|
) {
|
2005-01-06 22:06:35 +00:00
|
|
|
iReturnValue = RemoveCacheElement();
|
2005-04-08 16:58:55 +00:00
|
|
|
wxASSERT(!iReturnValue);
|
2004-10-26 01:59:44 +00:00
|
|
|
}
|
2005-04-07 07:04:50 +00:00
|
|
|
wxASSERT(GetDocCount() == GetCacheCount());
|
2004-10-26 01:59:44 +00:00
|
|
|
}
|
2005-01-06 22:06:35 +00:00
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
m_pListPane->SetItemCount(iDocCount);
|
2004-10-26 01:59:44 +00:00
|
|
|
}
|
|
|
|
}
|
2004-12-02 21:43:44 +00:00
|
|
|
|
2005-04-08 16:58:55 +00:00
|
|
|
if (iDocCount) {
|
2005-01-06 22:57:28 +00:00
|
|
|
SyncronizeCache();
|
2005-04-08 16:58:55 +00:00
|
|
|
}
|
2004-12-02 21:43:44 +00:00
|
|
|
|
2005-04-08 16:58:55 +00:00
|
|
|
if (_EnsureLastItemVisible() && (iDocCount != iCacheCount)) {
|
2005-04-07 07:04:50 +00:00
|
|
|
m_pListPane->EnsureVisible(iDocCount - 1);
|
2005-04-08 16:58:55 +00:00
|
|
|
}
|
2004-12-08 23:13:20 +00:00
|
|
|
|
2005-04-29 22:46:03 +00:00
|
|
|
UpdateSelection();
|
|
|
|
|
2004-10-26 01:59:44 +00:00
|
|
|
m_bProcessingListRenderEvent = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
bool CBOINCBaseView::OnSaveState(wxConfigBase* pConfig) {
|
2004-09-21 01:30:29 +00:00
|
|
|
bool bReturnValue = true;
|
|
|
|
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(pConfig);
|
|
|
|
wxASSERT(m_pTaskPane);
|
|
|
|
wxASSERT(m_pListPane);
|
2004-09-21 01:30:29 +00:00
|
|
|
|
2005-04-08 16:58:55 +00:00
|
|
|
if (!m_pTaskPane->OnSaveState(pConfig)) {
|
2004-09-21 01:30:29 +00:00
|
|
|
bReturnValue = false;
|
2005-04-08 16:58:55 +00:00
|
|
|
}
|
2004-09-21 01:30:29 +00:00
|
|
|
|
2005-04-08 16:58:55 +00:00
|
|
|
if (!m_pListPane->OnSaveState(pConfig)) {
|
2004-09-21 01:30:29 +00:00
|
|
|
bReturnValue = false;
|
2005-04-08 16:58:55 +00:00
|
|
|
}
|
2004-09-21 01:30:29 +00:00
|
|
|
|
|
|
|
return bReturnValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-08 16:58:55 +00:00
|
|
|
bool CBOINCBaseView::OnRestoreState(wxConfigBase* pConfig) {
|
|
|
|
wxASSERT(pConfig);
|
|
|
|
wxASSERT(m_pTaskPane);
|
|
|
|
wxASSERT(m_pListPane);
|
2004-09-21 01:30:29 +00:00
|
|
|
|
2005-04-08 16:58:55 +00:00
|
|
|
if (!m_pTaskPane->OnRestoreState(pConfig)) {
|
|
|
|
return false;
|
|
|
|
}
|
2004-09-21 01:30:29 +00:00
|
|
|
|
2005-04-08 16:58:55 +00:00
|
|
|
if (!m_pListPane->OnRestoreState(pConfig)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2004-09-21 01:30:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
void CBOINCBaseView::OnListSelected(wxListEvent& event) {
|
2005-04-21 23:14:10 +00:00
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CBOINCBaseView::OnListSelected - Function Begin"));
|
|
|
|
|
2004-09-24 02:01:53 +00:00
|
|
|
UpdateSelection();
|
|
|
|
event.Skip();
|
2005-04-21 23:14:10 +00:00
|
|
|
|
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CBOINCBaseView::OnListSelected - Function End"));
|
2004-09-24 02:01:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
void CBOINCBaseView::OnListDeselected(wxListEvent& event) {
|
2005-04-21 23:14:10 +00:00
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CBOINCBaseView::OnListDeselected - Function Begin"));
|
|
|
|
|
2004-09-24 02:01:53 +00:00
|
|
|
UpdateSelection();
|
|
|
|
event.Skip();
|
2005-04-21 23:14:10 +00:00
|
|
|
|
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CBOINCBaseView::OnListDeselected - Function End"));
|
2004-09-24 02:01:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-08 16:58:55 +00:00
|
|
|
wxString CBOINCBaseView::OnListGetItemText(
|
|
|
|
long WXUNUSED(item), long WXUNUSED(column)
|
|
|
|
) const {
|
2004-09-21 01:30:29 +00:00
|
|
|
return wxString("Undefined");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
int CBOINCBaseView::OnListGetItemImage(long WXUNUSED(item)) const {
|
2004-09-21 01:30:29 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxListItemAttr* CBOINCBaseView::OnListGetItemAttr(long WXUNUSED(item)) const {
|
2004-09-21 01:30:29 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-20 22:22:41 +00:00
|
|
|
int CBOINCBaseView::GetDocCount() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxString CBOINCBaseView::OnDocGetItemText(long WXUNUSED(item), long WXUNUSED(column)) const {
|
2004-12-02 07:43:47 +00:00
|
|
|
return wxString("Undefined");
|
2004-10-26 01:59:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxString CBOINCBaseView::OnDocGetItemImage(long WXUNUSED(item)) const {
|
2004-12-02 07:43:47 +00:00
|
|
|
return wxString("Undefined");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxString CBOINCBaseView::OnDocGetItemAttr(long WXUNUSED(item)) const {
|
2004-12-02 07:43:47 +00:00
|
|
|
return wxString("Undefined");
|
2004-10-26 01:59:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
int CBOINCBaseView::AddCacheElement() {
|
2004-12-02 07:43:47 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
int CBOINCBaseView::EmptyCache() {
|
2004-12-02 07:43:47 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
int CBOINCBaseView::GetCacheCount() {
|
2004-12-02 07:43:47 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
int CBOINCBaseView::RemoveCacheElement() {
|
2004-12-02 07:43:47 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
int CBOINCBaseView::SyncronizeCache() {
|
|
|
|
int iRowIndex = 0;
|
|
|
|
int iRowTotal = 0;
|
|
|
|
int iColumnIndex = 0;
|
|
|
|
int iColumnTotal = 0;
|
2004-12-02 07:43:47 +00:00
|
|
|
wxString strDocumentText = wxEmptyString;
|
|
|
|
wxString strListPaneText = wxEmptyString;
|
|
|
|
bool bNeedRefreshData = false;
|
|
|
|
|
|
|
|
iRowTotal = GetDocCount();
|
|
|
|
iColumnTotal = m_pListPane->GetColumnCount();
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
for (iRowIndex = 0; iRowIndex < iRowTotal; iRowIndex++) {
|
2004-12-02 07:43:47 +00:00
|
|
|
bNeedRefreshData = false;
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
for (iColumnIndex = 0; iColumnIndex < iColumnTotal; iColumnIndex++) {
|
2004-12-02 07:43:47 +00:00
|
|
|
strDocumentText.Empty();
|
|
|
|
strListPaneText.Empty();
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
strDocumentText = OnDocGetItemText(iRowIndex, iColumnIndex);
|
|
|
|
strListPaneText = OnListGetItemText(iRowIndex, iColumnIndex);
|
2004-12-02 07:43:47 +00:00
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
if (!strDocumentText.IsSameAs(strListPaneText)) {
|
|
|
|
if (0 != UpdateCache(iRowIndex, iColumnIndex, strDocumentText)) {
|
|
|
|
wxASSERT(FALSE);
|
2004-12-10 20:46:43 +00:00
|
|
|
}
|
2004-12-02 07:43:47 +00:00
|
|
|
bNeedRefreshData = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
if (bNeedRefreshData) {
|
|
|
|
m_pListPane->RefreshItem(iRowIndex);
|
2004-12-02 07:43:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
int CBOINCBaseView::UpdateCache(
|
2005-04-08 16:58:55 +00:00
|
|
|
long WXUNUSED(item), long WXUNUSED(column), wxString& WXUNUSED(strNewData)
|
|
|
|
) {
|
2004-12-02 07:43:47 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-27 06:32:40 +00:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-20 22:22:41 +00:00
|
|
|
void CBOINCBaseView::UpdateSelection()
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
bool CBOINCBaseView::_EnsureLastItemVisible() {
|
2005-01-29 00:58:43 +00:00
|
|
|
return EnsureLastItemVisible();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
bool CBOINCBaseView::EnsureLastItemVisible() {
|
2004-12-02 07:43:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-13 08:47:51 +00:00
|
|
|
void CBOINCBaseView::append_to_status(wxString& existing, const wxChar* additional) {
|
|
|
|
if (existing.size() == 0) {
|
|
|
|
existing = additional;
|
|
|
|
} else {
|
|
|
|
existing = existing + ", " + additional;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-02 18:29:53 +00:00
|
|
|
const char *BOINC_RCSID_0a1bd38a5a = "$Id$";
|