Fix a compiler warning
[amule.git] / src / SourceListCtrl.cpp
blobe26cbe1846e3af406e1a43cb855e834838985b3b
1 //
2 // This file is part of the aMule Project.
3 //
4 // Copyright (c) 2003-2008 aMule Team ( admin@amule.org / http://www.amule.org )
5 //
6 // Any parts of this program derived from the xMule, lMule or eMule project,
7 // or contributed by third-party developers are copyrighted by their
8 // respective authors.
9 //
10 // This program is free software; you can redistribute it and/or modify
11 // it under the terms of the GNU General Public License as published by
12 // the Free Software Foundation; either version 2 of the License, or
13 // (at your option) any later version.
15 // This program is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with this program; if not, write to the Free Software
22 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "SourceListCtrl.h"
26 static CGenericClientListCtrlColumn s_sources_column_info[] = {
27 { ColumnUserName, wxTRANSLATE("User Name"), 260 },
28 { ColumnUserDownloaded, wxTRANSLATE("Downloaded"), 65 },
29 { ColumnUserSpeedDown, wxTRANSLATE("Speed"), 65 },
30 { ColumnUserUploaded, wxTRANSLATE("Uploaded"), 65 },
31 { ColumnUserProgress, wxTRANSLATE("Available Parts"), 170 },
32 { ColumnUserVersion, wxTRANSLATE("Version"), 50 },
33 { ColumnUserQueueRankRemote, wxTRANSLATE("Queue Rank"), 55 },
34 { ColumnUserStatus, wxTRANSLATE("Status"), 70 },
35 { ColumnUserOrigin, wxTRANSLATE("Origin"), 110 }
38 BEGIN_EVENT_TABLE(CSourceListCtrl, CGenericClientListCtrl)
39 END_EVENT_TABLE()
41 CSourceListCtrl::CSourceListCtrl(
42 wxWindow *parent, wxWindowID winid, const wxPoint& pos, const wxSize& size,
43 long style, const wxValidator& validator, const wxString& name )
45 CGenericClientListCtrl( wxT("Sources"), parent, winid, pos, size, style | wxLC_OWNERDRAW, validator, name )
47 // Setting the sorter function.
48 SetSortFunc( SourceSortProc );
50 m_columndata.n_columns = sizeof(s_sources_column_info) / sizeof(CGenericClientListCtrlColumn);
51 m_columndata.columns = s_sources_column_info;
53 InitColumnData();
56 CSourceListCtrl::~CSourceListCtrl()
60 int CSourceListCtrl::SourceSortProc(wxUIntPtr param1, wxUIntPtr param2, long sortData)
62 return CGenericClientListCtrl::SortProc(param1, param2, s_sources_column_info[sortData & CMuleListCtrl::COLUMN_MASK].cid | (sortData & CMuleListCtrl::SORT_DES));
65 // File_checked_for_headers