mirror of https://github.com/BOINC/boinc.git
230 lines
7.4 KiB
C++
230 lines
7.4 KiB
C++
// $Id$
|
|
//
|
|
// The contents of this file are subject to the BOINC Public License
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
// compliance with the License. You may obtain a copy of the License at
|
|
// http://boinc.berkeley.edu/license_1.0.txt
|
|
//
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
// License for the specific language governing rights and limitations
|
|
// under the License.
|
|
//
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
//
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
//
|
|
// Contributor(s):
|
|
//
|
|
// Revision History:
|
|
//
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
#pragma implementation "BOINCListCtrl.h"
|
|
#endif
|
|
|
|
#include "stdwx.h"
|
|
#include "BOINCBaseView.h"
|
|
#include "BOINCListCtrl.h"
|
|
#include "ViewProjects.h"
|
|
#include "ViewWork.h"
|
|
#include "ViewTransfers.h"
|
|
#include "ViewMessages.h"
|
|
#include "ViewResources.h"
|
|
#include "Events.h"
|
|
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(CBOINCListCtrl, wxListView)
|
|
|
|
|
|
CBOINCListCtrl::CBOINCListCtrl()
|
|
{
|
|
}
|
|
|
|
|
|
CBOINCListCtrl::CBOINCListCtrl( CBOINCBaseView* pView, wxWindowID iListWindowID ) :
|
|
wxListView( pView, iListWindowID, wxDefaultPosition, wxSize(-1, -1), wxLC_REPORT | wxLC_VIRTUAL | wxLC_SINGLE_SEL, wxDefaultValidator )
|
|
{
|
|
m_pParentView = pView;
|
|
}
|
|
|
|
|
|
CBOINCListCtrl::~CBOINCListCtrl()
|
|
{
|
|
}
|
|
|
|
|
|
void CBOINCListCtrl::OnRender ( wxTimerEvent& event )
|
|
{
|
|
}
|
|
|
|
|
|
bool CBOINCListCtrl::OnSaveState( wxConfigBase* pConfig )
|
|
{
|
|
wxString strBaseConfigLocation = wxString(wxT(""));
|
|
wxListItem liColumnInfo;
|
|
wxInt32 iIndex = 0;
|
|
wxInt32 iColumnCount = 0;
|
|
|
|
|
|
wxASSERT(NULL != pConfig);
|
|
|
|
|
|
// Retrieve the base location to store configuration information
|
|
// Should be in the following form: "/Projects/"
|
|
strBaseConfigLocation = pConfig->GetPath() + wxT("/");
|
|
|
|
// Convert to a zero based index
|
|
iColumnCount = GetColumnCount() - 1;
|
|
|
|
// Which fields are we interested in?
|
|
liColumnInfo.SetMask( wxLIST_MASK_TEXT |
|
|
wxLIST_MASK_WIDTH |
|
|
wxLIST_MASK_FORMAT );
|
|
|
|
// Cycle through the columns recording anything interesting
|
|
for ( iIndex = 0; iIndex <= iColumnCount; iIndex++ ) {
|
|
|
|
GetColumn(iIndex, liColumnInfo);
|
|
|
|
pConfig->SetPath(strBaseConfigLocation + liColumnInfo.GetText());
|
|
|
|
pConfig->Write(wxT("Width"), liColumnInfo.GetWidth());
|
|
pConfig->Write(wxT("Format"), liColumnInfo.GetAlign());
|
|
|
|
}
|
|
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
bool CBOINCListCtrl::OnRestoreState( wxConfigBase* pConfig )
|
|
{
|
|
wxString strBaseConfigLocation = wxString(wxT(""));
|
|
wxListItem liColumnInfo;
|
|
wxInt32 iIndex = 0;
|
|
wxInt32 iColumnCount = 0;
|
|
wxInt32 iTempValue = 0;
|
|
|
|
|
|
wxASSERT(NULL != pConfig);
|
|
|
|
|
|
// Retrieve the base location to store configuration information
|
|
// Should be in the following form: "/Projects/"
|
|
strBaseConfigLocation = pConfig->GetPath() + wxT("/");
|
|
|
|
// Convert to a zero based index
|
|
iColumnCount = GetColumnCount() - 1;
|
|
|
|
// Which fields are we interested in?
|
|
liColumnInfo.SetMask( wxLIST_MASK_TEXT |
|
|
wxLIST_MASK_WIDTH |
|
|
wxLIST_MASK_FORMAT );
|
|
|
|
// Cycle through the columns recording anything interesting
|
|
for ( iIndex = 0; iIndex <= iColumnCount; iIndex++ ) {
|
|
|
|
GetColumn(iIndex, liColumnInfo);
|
|
|
|
pConfig->SetPath(strBaseConfigLocation + liColumnInfo.GetText());
|
|
|
|
pConfig->Read(wxT("Width"), &iTempValue, 80);
|
|
liColumnInfo.SetWidth(iTempValue);
|
|
|
|
pConfig->Read(wxT("Format"), &iTempValue, 0);
|
|
liColumnInfo.SetAlign((wxListColumnFormat)iTempValue);
|
|
|
|
SetColumn(iIndex, liColumnInfo);
|
|
|
|
}
|
|
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
wxString CBOINCListCtrl::OnGetItemText( long item, long column ) const
|
|
{
|
|
wxASSERT(NULL != m_pParentView);
|
|
wxASSERT(wxDynamicCast(m_pParentView, CBOINCBaseView));
|
|
|
|
if (wxDynamicCast(m_pParentView, CViewProjects)) {
|
|
return FireOnGetItemTextEvent(wxDynamicCast(m_pParentView, CViewProjects), item, column);
|
|
} else if (wxDynamicCast(m_pParentView, CViewWork)) {
|
|
return FireOnGetItemTextEvent(wxDynamicCast(m_pParentView, CViewWork), item, column);
|
|
} else if (wxDynamicCast(m_pParentView, CViewTransfers)) {
|
|
return FireOnGetItemTextEvent(wxDynamicCast(m_pParentView, CViewTransfers), item, column);
|
|
} else if (wxDynamicCast(m_pParentView, CViewMessages)) {
|
|
return FireOnGetItemTextEvent(wxDynamicCast(m_pParentView, CViewMessages), item, column);
|
|
} else if (wxDynamicCast(m_pParentView, CViewResources)) {
|
|
return FireOnGetItemTextEvent(wxDynamicCast(m_pParentView, CViewResources), item, column);
|
|
}
|
|
return FireOnGetItemTextEvent(wxDynamicCast(m_pParentView, CBOINCBaseView), item, column);
|
|
}
|
|
|
|
|
|
int CBOINCListCtrl::OnGetItemImage( long item ) const
|
|
{
|
|
wxASSERT(NULL != m_pParentView);
|
|
wxASSERT(wxDynamicCast(m_pParentView, CBOINCBaseView));
|
|
|
|
if (wxDynamicCast(m_pParentView, CViewProjects)) {
|
|
return FireOnGetItemImageEvent(wxDynamicCast(m_pParentView, CViewProjects), item);
|
|
} else if (wxDynamicCast(m_pParentView, CViewWork)) {
|
|
return FireOnGetItemImageEvent(wxDynamicCast(m_pParentView, CViewWork), item);
|
|
} else if (wxDynamicCast(m_pParentView, CViewTransfers)) {
|
|
return FireOnGetItemImageEvent(wxDynamicCast(m_pParentView, CViewTransfers), item);
|
|
} else if (wxDynamicCast(m_pParentView, CViewMessages)) {
|
|
return FireOnGetItemImageEvent(wxDynamicCast(m_pParentView, CViewMessages), item);
|
|
} else if (wxDynamicCast(m_pParentView, CViewResources)) {
|
|
return FireOnGetItemImageEvent(wxDynamicCast(m_pParentView, CViewResources), item);
|
|
}
|
|
return FireOnGetItemImageEvent(wxDynamicCast(m_pParentView, CBOINCBaseView), item);
|
|
}
|
|
|
|
|
|
wxListItemAttr* CBOINCListCtrl::OnGetItemAttr( long item ) const
|
|
{
|
|
wxASSERT(NULL != m_pParentView);
|
|
wxASSERT(wxDynamicCast(m_pParentView, CBOINCBaseView));
|
|
|
|
if (wxDynamicCast(m_pParentView, CViewProjects)) {
|
|
return FireOnGetItemAttrEvent(wxDynamicCast(m_pParentView, CViewProjects), item);
|
|
} else if (wxDynamicCast(m_pParentView, CViewWork)) {
|
|
return FireOnGetItemAttrEvent(wxDynamicCast(m_pParentView, CViewWork), item);
|
|
} else if (wxDynamicCast(m_pParentView, CViewTransfers)) {
|
|
return FireOnGetItemAttrEvent(wxDynamicCast(m_pParentView, CViewTransfers), item);
|
|
} else if (wxDynamicCast(m_pParentView, CViewMessages)) {
|
|
return FireOnGetItemAttrEvent(wxDynamicCast(m_pParentView, CViewMessages), item);
|
|
} else if (wxDynamicCast(m_pParentView, CViewResources)) {
|
|
return FireOnGetItemAttrEvent(wxDynamicCast(m_pParentView, CViewResources), item);
|
|
}
|
|
return FireOnGetItemAttrEvent(wxDynamicCast(m_pParentView, CBOINCBaseView), item);
|
|
}
|
|
|
|
|
|
template < class T >
|
|
wxString CBOINCListCtrl::FireOnGetItemTextEvent( T pView, long item, long column ) const
|
|
{
|
|
return pView->OnListGetItemText( item, column );
|
|
}
|
|
|
|
|
|
template < class T >
|
|
int CBOINCListCtrl::FireOnGetItemImageEvent( T pView, long item ) const
|
|
{
|
|
return pView->OnListGetItemImage( item );
|
|
}
|
|
|
|
|
|
template < class T >
|
|
wxListItemAttr* CBOINCListCtrl::FireOnGetItemAttrEvent( T pView, long item ) const
|
|
{
|
|
return pView->OnListGetItemAttr( item );
|
|
}
|
|
|