Fix compilation with wxWidgets 2.8.12
[amule.git] / src / SharedFilePeersListCtrl.cpp
blobd5eec4b62f49a18add2846cc8cdc7e73ecb3f565
1 //
2 // This file is part of the aMule Project.
3 //
4 // Copyright (c) 2003-2011 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.
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 "SharedFilePeersListCtrl.h"
25 #include "KnownFile.h" // Do_not_auto_remove
27 static CGenericClientListCtrlColumn s_sources_column_info[] = {
28 { ColumnUserName, wxTRANSLATE("User Name"), 260 },
29 { ColumnUserDownloaded, wxTRANSLATE("Downloaded"), 65 },
30 { ColumnUserSpeedDown, wxTRANSLATE("Download Speed"), 65 },
31 { ColumnUserUploaded, wxTRANSLATE("Uploaded"), 65 },
32 { ColumnUserSpeedUp, wxTRANSLATE("Upload Speed"), 65 },
33 { ColumnUserAvailable, wxTRANSLATE("Available Parts"), 170 },
34 { ColumnUserVersion, wxTRANSLATE("Version"), 50 },
35 { ColumnUserQueueRankLocal, wxTRANSLATE("Upload Status"), 70 },
36 { ColumnUserQueueRankRemote, wxTRANSLATE("Download Status"), 70 },
37 { ColumnUserOrigin, wxTRANSLATE("Origin"), 110 },
38 { ColumnUserFileNameUpload, wxTRANSLATE("Local File Name"), 200 },
39 { ColumnUserSharedFiles, wxTRANSLATE("Shares File List"), 100 }
42 BEGIN_EVENT_TABLE(CSharedFilePeersListCtrl, CGenericClientListCtrl)
43 END_EVENT_TABLE()
45 CSharedFilePeersListCtrl::CSharedFilePeersListCtrl(
46 wxWindow *parent, wxWindowID winid, const wxPoint& pos, const wxSize& size,
47 long style, const wxValidator& validator, const wxString& name )
49 CGenericClientListCtrl( wxT("Peers"), parent, winid, pos, size, style | wxLC_OWNERDRAW, validator, name )
51 // Setting the sorter function.
52 SetSortFunc( SourceSortProc );
54 m_columndata.n_columns = sizeof(s_sources_column_info) / sizeof(CGenericClientListCtrlColumn);
55 m_columndata.columns = s_sources_column_info;
57 InitColumnData();
60 CSharedFilePeersListCtrl::~CSharedFilePeersListCtrl()
64 int CSharedFilePeersListCtrl::SourceSortProc(wxUIntPtr param1, wxUIntPtr param2, long sortData)
66 return CGenericClientListCtrl::SortProc(param1, param2, s_sources_column_info[sortData & CMuleListCtrl::COLUMN_MASK].cid | (sortData & CMuleListCtrl::SORT_DES));
69 void CSharedFilePeersListCtrl::SetShowSources(CKnownFile * f, bool b) const
71 f->SetShowPeers(b);
74 // File_checked_for_headers