2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2006-07-26 15:14:01 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2006-07-26 15:14:01 +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.
|
2006-07-26 15:14:01 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2006-07-26 15:14:01 +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.
|
|
|
|
//
|
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/>.
|
2006-07-26 15:14:01 +00:00
|
|
|
|
|
|
|
#ifndef _SGUILISTCTRL_H_
|
|
|
|
#define _SGUILISTCTRL_H_
|
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
|
|
#pragma interface "sg_SGUIListControl.cpp"
|
|
|
|
#endif
|
|
|
|
|
2006-11-17 06:41:15 +00:00
|
|
|
#define DEFAULT_LIST_MULTI_SEL_FLAGS wxLC_REPORT | wxLC_VIRTUAL
|
2006-10-23 06:48:48 +00:00
|
|
|
|
2006-11-06 13:45:50 +00:00
|
|
|
class CPanelMessages;
|
2006-07-26 15:14:01 +00:00
|
|
|
|
|
|
|
class CSGUIListCtrl : public wxListView {
|
|
|
|
DECLARE_DYNAMIC_CLASS(CSGUIListCtrl)
|
|
|
|
|
|
|
|
public:
|
|
|
|
CSGUIListCtrl();
|
2006-11-06 13:45:50 +00:00
|
|
|
CSGUIListCtrl(CPanelMessages* pView, wxWindowID iListWindowID, int iListWindowFlags);
|
2006-07-26 15:14:01 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
virtual wxString OnGetItemText(long item, long column) const;
|
|
|
|
virtual int OnGetItemImage(long item) const;
|
|
|
|
virtual wxListItemAttr* OnGetItemAttr(long item) const;
|
2008-10-10 05:08:51 +00:00
|
|
|
virtual wxColour GetBackgroundColour();
|
2006-07-26 15:14:01 +00:00
|
|
|
|
|
|
|
bool m_bIsSingleSelection;
|
|
|
|
|
2006-11-06 13:45:50 +00:00
|
|
|
CPanelMessages* m_pParentView;
|
2006-07-26 15:14:01 +00:00
|
|
|
};
|
|
|
|
|
2007-04-20 18:49:40 +00:00
|
|
|
#endif
|