Format string mayhem
[amule.git] / src / SharedFilesCtrl.cpp
blob5358507b8a9121175be483a8a8f31badc75e5170
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 // Copyright (c) 2002 Merkur ( devs@emule-project.net / http://www.emule-project.net )
6 //
7 // Any parts of this program derived from the xMule, lMule or eMule project,
8 // or contributed by third-party developers are copyrighted by their
9 // respective authors.
11 // This program is free software; you can redistribute it and/or modify
12 // it under the terms of the GNU General Public License as published by
13 // the Free Software Foundation; either version 2 of the License, or
14 // (at your option) any later version.
16 // This program is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU General Public License for more details.
20 //
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "SharedFilesCtrl.h" // Interface declarations
28 #include <common/MenuIDs.h>
30 #include "muuli_wdr.h" // Needed for ID_SHFILELIST
31 #include "SharedFilesWnd.h" // Needed for CSharedFilesWnd
32 #include "amuleDlg.h" // Needed for CamuleDlg
33 #include "CommentDialog.h" // Needed for CCommentDialog
34 #include "PartFile.h" // Needed for CPartFile
35 #include "SharedFileList.h" // Needed for CKnownFileMap
36 #include "amule.h" // Needed for theApp
37 #include "ServerConnect.h" // Needed for CServerConnect
38 #include "Preferences.h" // Needed for thePrefs
39 #include "BarShader.h" // Needed for CBarShader
40 #include "DataToText.h" // Needed for PriorityToStr
41 #include "GuiEvents.h" // Needed for CoreNotify_*
42 #include "MuleCollection.h" // Needed for CMuleCollection
43 #include "DownloadQueue.h" // Needed for CDownloadQueue
44 #include "TransferWnd.h" // Needed for CTransferWnd
47 BEGIN_EVENT_TABLE(CSharedFilesCtrl,CMuleListCtrl)
48 EVT_LIST_ITEM_RIGHT_CLICK(-1, CSharedFilesCtrl::OnRightClick)
50 EVT_MENU( MP_PRIOVERYLOW, CSharedFilesCtrl::OnSetPriority )
51 EVT_MENU( MP_PRIOLOW, CSharedFilesCtrl::OnSetPriority )
52 EVT_MENU( MP_PRIONORMAL, CSharedFilesCtrl::OnSetPriority )
53 EVT_MENU( MP_PRIOHIGH, CSharedFilesCtrl::OnSetPriority )
54 EVT_MENU( MP_PRIOVERYHIGH, CSharedFilesCtrl::OnSetPriority )
55 EVT_MENU( MP_POWERSHARE, CSharedFilesCtrl::OnSetPriority )
56 EVT_MENU( MP_PRIOAUTO, CSharedFilesCtrl::OnSetPriorityAuto )
58 EVT_MENU( MP_CMT, CSharedFilesCtrl::OnEditComment )
59 EVT_MENU( MP_ADDCOLLECTION, CSharedFilesCtrl::OnAddCollection )
60 EVT_MENU( MP_GETMAGNETLINK, CSharedFilesCtrl::OnCreateURI )
61 EVT_MENU( MP_GETED2KLINK, CSharedFilesCtrl::OnCreateURI )
62 EVT_MENU( MP_GETSOURCEED2KLINK, CSharedFilesCtrl::OnCreateURI )
63 EVT_MENU( MP_GETCRYPTSOURCEDED2KLINK, CSharedFilesCtrl::OnCreateURI )
64 EVT_MENU( MP_GETHOSTNAMESOURCEED2KLINK, CSharedFilesCtrl::OnCreateURI )
65 EVT_MENU( MP_GETHOSTNAMECRYPTSOURCEED2KLINK, CSharedFilesCtrl::OnCreateURI )
66 EVT_MENU( MP_GETAICHED2KLINK, CSharedFilesCtrl::OnCreateURI )
67 EVT_MENU( MP_RENAME, CSharedFilesCtrl::OnRename )
68 EVT_MENU( MP_WS, CSharedFilesCtrl::OnGetFeedback )
71 EVT_CHAR( CSharedFilesCtrl::OnKeyPressed )
72 END_EVENT_TABLE()
74 enum SharedFilesListColumns {
75 ID_SHARED_COL_NAME = 0,
76 ID_SHARED_COL_SIZE,
77 ID_SHARED_COL_TYPE,
78 ID_SHARED_COL_PRIO,
79 ID_SHARED_COL_ID,
80 ID_SHARED_COL_REQ,
81 ID_SHARED_COL_AREQ,
82 ID_SHARED_COL_TRA,
83 ID_SHARED_COL_RTIO,
84 ID_SHARED_COL_PART,
85 ID_SHARED_COL_CMPL,
86 ID_SHARED_COL_PATH
90 CSharedFilesCtrl::CSharedFilesCtrl(wxWindow* parent, int id, const wxPoint& pos, wxSize size, int flags)
91 : CMuleListCtrl(parent, id, pos, size, flags | wxLC_OWNERDRAW )
93 // Setting the sorter function.
94 SetSortFunc( SortProc );
96 // Set the table-name (for loading and saving preferences).
97 SetTableName( wxT("Shared") );
99 m_menu=NULL;
101 InsertColumn(ID_SHARED_COL_NAME, _("File Name"), wxLIST_FORMAT_LEFT, 250, wxT("N") );
102 InsertColumn(ID_SHARED_COL_SIZE, _("Size"), wxLIST_FORMAT_LEFT, 100, wxT("Z") );
103 InsertColumn(ID_SHARED_COL_TYPE, _("Type"), wxLIST_FORMAT_LEFT, 50, wxT("Y") );
104 InsertColumn(ID_SHARED_COL_PRIO, _("Priority"), wxLIST_FORMAT_LEFT, 70, wxT("p") );
105 InsertColumn(ID_SHARED_COL_ID, _("FileID"), wxLIST_FORMAT_LEFT, 220, wxT("I") );
106 InsertColumn(ID_SHARED_COL_REQ, _("Requests"), wxLIST_FORMAT_LEFT, 100, wxT("Q") );
107 InsertColumn(ID_SHARED_COL_AREQ, _("Accepted Requests"), wxLIST_FORMAT_LEFT, 100, wxT("A") );
108 InsertColumn(ID_SHARED_COL_TRA, _("Transferred Data"), wxLIST_FORMAT_LEFT, 120, wxT("T") );
109 InsertColumn(ID_SHARED_COL_RTIO, _("Share Ratio"), wxLIST_FORMAT_LEFT, 100, wxT("R") );
110 InsertColumn(ID_SHARED_COL_PART, _("Obtained Parts"), wxLIST_FORMAT_LEFT, 120, wxT("P") );
111 InsertColumn(ID_SHARED_COL_CMPL, _("Complete Sources"), wxLIST_FORMAT_LEFT, 120, wxT("C") );
112 InsertColumn(ID_SHARED_COL_PATH, _("Directory Path"), wxLIST_FORMAT_LEFT, 220, wxT("D") );
114 LoadSettings();
118 wxString CSharedFilesCtrl::GetOldColumnOrder() const
120 return wxT("N,Z,Y,p,I,Q,A,T,R,P,C,D");
124 CSharedFilesCtrl::~CSharedFilesCtrl()
129 void CSharedFilesCtrl::OnRightClick(wxListEvent& event)
131 long item_hit = CheckSelection(event);
133 if ( (m_menu == NULL) && (item_hit != -1)) {
134 m_menu = new wxMenu(_("Shared Files"));
135 wxMenu* prioMenu = new wxMenu();
136 prioMenu->AppendCheckItem(MP_PRIOVERYLOW, _("Very low"));
137 prioMenu->AppendCheckItem(MP_PRIOLOW, _("Low"));
138 prioMenu->AppendCheckItem(MP_PRIONORMAL, _("Normal"));
139 prioMenu->AppendCheckItem(MP_PRIOHIGH, _("High"));
140 prioMenu->AppendCheckItem(MP_PRIOVERYHIGH, _("Very High"));
141 prioMenu->AppendCheckItem(MP_POWERSHARE, _("Release"));
142 prioMenu->AppendCheckItem(MP_PRIOAUTO, _("Auto"));
144 m_menu->Append(0,_("Priority"),prioMenu);
145 m_menu->AppendSeparator();
147 CKnownFile* file = (CKnownFile*)GetItemData(item_hit);
148 if (file->GetFileComment().IsEmpty() && !file->GetFileRating()) {
149 m_menu->Append(MP_CMT, _("Add Comment/Rating"));
150 } else {
151 m_menu->Append(MP_CMT, _("Edit Comment/Rating"));
154 m_menu->AppendSeparator();
155 m_menu->Append(MP_RENAME, _("Rename"));
156 m_menu->AppendSeparator();
158 if (file->GetFileName().GetExt() == wxT("emulecollection")) {
159 m_menu->Append( MP_ADDCOLLECTION, _("Add files in collection to transfer list"));
160 m_menu->AppendSeparator();
162 m_menu->Append(MP_GETMAGNETLINK,_("Copy magnet &URI to clipboard"));
163 m_menu->Append(MP_GETED2KLINK,_("Copy eD2k &link to clipboard"));
164 m_menu->Append(MP_GETSOURCEED2KLINK,_("Copy eD2k link to clipboard (&Source)"));
165 m_menu->Append(MP_GETCRYPTSOURCEDED2KLINK,_("Copy eD2k link to clipboard (Source) (&With Crypt options)"));
166 m_menu->Append(MP_GETHOSTNAMESOURCEED2KLINK,_("Copy eD2k link to clipboard (&Hostname)"));
167 m_menu->Append(MP_GETHOSTNAMECRYPTSOURCEED2KLINK,_("Copy eD2k link to clipboard (Hostname) (With &Crypt options)"));
168 m_menu->Append(MP_GETAICHED2KLINK,_("Copy eD2k link to clipboard (&AICH info)"));
169 m_menu->Append(MP_WS,_("Copy feedback to clipboard"));
171 m_menu->Enable(MP_GETAICHED2KLINK, file->HasProperAICHHashSet());
172 m_menu->Enable(MP_GETHOSTNAMESOURCEED2KLINK, !thePrefs::GetYourHostname().IsEmpty());
173 m_menu->Enable(MP_GETHOSTNAMECRYPTSOURCEED2KLINK, !thePrefs::GetYourHostname().IsEmpty());
175 int priority = file->IsAutoUpPriority() ? PR_AUTO : file->GetUpPriority();
177 prioMenu->Check(MP_PRIOVERYLOW, priority == PR_VERYLOW);
178 prioMenu->Check(MP_PRIOLOW, priority == PR_LOW);
179 prioMenu->Check(MP_PRIONORMAL, priority == PR_NORMAL);
180 prioMenu->Check(MP_PRIOHIGH, priority == PR_HIGH);
181 prioMenu->Check(MP_PRIOVERYHIGH,priority == PR_VERYHIGH);
182 prioMenu->Check(MP_POWERSHARE, priority == PR_POWERSHARE);
183 prioMenu->Check(MP_PRIOAUTO, priority == PR_AUTO);
185 PopupMenu( m_menu, event.GetPoint() );
187 delete m_menu;
189 m_menu = NULL;
194 void CSharedFilesCtrl::OnGetFeedback(wxCommandEvent& WXUNUSED(event))
196 wxString feed;
197 long index = GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
198 while (index != -1) {
199 if (feed.IsEmpty()) {
200 feed = CFormat(_("Feedback from: %s (%s)\n\n")) % thePrefs::GetUserNick() % theApp->GetFullMuleVersion();
201 } else {
202 feed += wxT("\n");
204 feed += ((CKnownFile*)GetItemData(index))->GetFeedback();
205 index = GetNextItem(index, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
208 if (!feed.IsEmpty()) {
209 theApp->CopyTextToClipboard(feed);
214 #ifndef CLIENT_GUI
215 void CSharedFilesCtrl::ShowFileList()
217 Freeze();
218 DeleteAllItems();
220 std::vector<CKnownFile*> files;
221 theApp->sharedfiles->CopyFileList(files);
222 for (unsigned i = 0; i < files.size(); ++i) {
223 DoShowFile(files[i], true);
226 SortList();
227 ShowFilesCount();
229 Thaw();
231 #endif
234 void CSharedFilesCtrl::RemoveFile(CKnownFile *toRemove)
236 long index = FindItem( -1, reinterpret_cast<wxUIntPtr>(toRemove) );
238 if ( index != -1 ) {
239 DeleteItem( index );
241 ShowFilesCount();
246 void CSharedFilesCtrl::ShowFile(CKnownFile* file)
248 DoShowFile(file, false);
252 void CSharedFilesCtrl::DoShowFile(CKnownFile* file, bool batch)
254 wxUIntPtr ptr = reinterpret_cast<wxUIntPtr>(file);
255 if ((!batch) && (FindItem(-1, ptr) > -1)) {
256 return;
259 const long insertPos = (batch ? GetItemCount() : GetInsertPos(ptr));
261 long newitem = InsertItem(insertPos, wxEmptyString);
262 SetItemPtrData( newitem, ptr );
264 if (!batch) {
265 ShowFilesCount();
269 void CSharedFilesCtrl::OnSetPriority( wxCommandEvent& event )
271 int priority = 0;
273 switch ( event.GetId() ) {
274 case MP_PRIOVERYLOW: priority = PR_VERYLOW; break;
275 case MP_PRIOLOW: priority = PR_LOW; break;
276 case MP_PRIONORMAL: priority = PR_NORMAL; break;
277 case MP_PRIOHIGH: priority = PR_HIGH; break;
278 case MP_PRIOVERYHIGH: priority = PR_VERYHIGH; break;
279 case MP_POWERSHARE: priority = PR_POWERSHARE; break;
282 long index = GetNextItem( -1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
284 while( index != -1 ) {
285 CKnownFile* file = (CKnownFile*)GetItemData( index );
286 CoreNotify_KnownFile_Up_Prio_Set( file, priority );
288 RefreshItem( index );
290 index = GetNextItem( index, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
295 void CSharedFilesCtrl::OnSetPriorityAuto( wxCommandEvent& WXUNUSED(event) )
297 long index = GetNextItem( -1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
299 while( index != -1 ) {
300 CKnownFile* file = (CKnownFile*)GetItemData( index );
301 CoreNotify_KnownFile_Up_Prio_Auto(file);
303 RefreshItem( index );
305 index = GetNextItem( index, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
310 void CSharedFilesCtrl::OnCreateURI( wxCommandEvent& event )
312 wxString URIs;
314 if ( event.GetId() == MP_GETSOURCEED2KLINK || event.GetId() == MP_GETCRYPTSOURCEDED2KLINK) {
315 if ( !( (theApp->IsConnectedED2K() && !theApp->serverconnect->IsLowID())
316 || (theApp->IsConnectedKad() && !theApp->IsFirewalledKad() ))) {
317 wxMessageBox(_("You need a HighID to create a valid sourcelink"), _("WARNING"), wxOK | wxICON_ERROR, this);
318 return;
322 long index = GetNextItem( -1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
324 while( index != -1 ) {
325 CKnownFile* file = (CKnownFile*)GetItemData( index );
327 switch ( event.GetId() ) {
328 case MP_GETMAGNETLINK: URIs += theApp->CreateMagnetLink( file ) + wxT("\n"); break;
329 case MP_GETED2KLINK: URIs += theApp->CreateED2kLink( file ) + wxT("\n"); break;
330 case MP_GETSOURCEED2KLINK: URIs += theApp->CreateED2kLink( file , true) + wxT("\n"); break;
331 case MP_GETCRYPTSOURCEDED2KLINK: URIs += theApp->CreateED2kLink( file , true, false, true) + wxT("\n"); break;
332 case MP_GETHOSTNAMESOURCEED2KLINK: URIs += theApp->CreateED2kLink( file , true, true) + wxT("\n"); break;
333 case MP_GETHOSTNAMECRYPTSOURCEED2KLINK: URIs += theApp->CreateED2kLink( file, true, true, true ) + wxT("\n"); break;
334 case MP_GETAICHED2KLINK: URIs += theApp->CreateED2kAICHLink( file ) + wxT("\n"); break;
337 index = GetNextItem( index, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
340 if ( !URIs.IsEmpty() ) {
341 theApp->CopyTextToClipboard( URIs.RemoveLast() );
346 void CSharedFilesCtrl::OnEditComment( wxCommandEvent& WXUNUSED(event) )
348 long index = GetNextItem( -1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
350 if ( index != -1 ) {
351 CKnownFile* file = (CKnownFile*)GetItemData( index );
353 CCommentDialog dialog( this, file );
355 dialog.ShowModal();
360 int CSharedFilesCtrl::SortProc(wxUIntPtr item1, wxUIntPtr item2, long sortData)
362 CKnownFile* file1 = (CKnownFile*)item1;
363 CKnownFile* file2 = (CKnownFile*)item2;
365 int mod = (sortData & CMuleListCtrl::SORT_DES) ? -1 : 1;
366 bool altSorting = (sortData & CMuleListCtrl::SORT_ALT) > 0;
368 switch (sortData & CMuleListCtrl::COLUMN_MASK) {
369 // Sort by filename.
370 case ID_SHARED_COL_NAME:
371 return mod * CmpAny(file1->GetFileName(), file2->GetFileName());
373 // Sort by filesize.
374 case ID_SHARED_COL_SIZE:
375 return mod * CmpAny( file1->GetFileSize(), file2->GetFileSize() );
377 // Sort by filetype.
378 case ID_SHARED_COL_TYPE:
379 return mod * GetFiletypeByName(file1->GetFileName()).CmpNoCase(GetFiletypeByName( file2->GetFileName()) );
381 // Sort by priority.
382 case ID_SHARED_COL_PRIO: {
383 int8 prioA = file1->GetUpPriority();
384 int8 prioB = file2->GetUpPriority();
386 // Work-around for PR_VERYLOW which has value 4. See KnownFile.h for that stupidity ...
387 return mod * CmpAny( ( prioB != PR_VERYLOW ? prioB : -1 ), ( prioA != PR_VERYLOW ? prioA : -1 ) );
390 // Sort by fileID.
391 case ID_SHARED_COL_ID:
392 return mod * file1->GetFileHash().Encode().Cmp( file2->GetFileHash().Encode() );
394 // Sort by Requests this session.
395 case ID_SHARED_COL_REQ:
396 if (altSorting) {
397 return mod * CmpAny( file1->statistic.GetAllTimeRequests(), file2->statistic.GetAllTimeRequests() );
398 } else {
399 return mod * CmpAny( file1->statistic.GetRequests(), file2->statistic.GetRequests() );
402 // Sort by accepted requests. Ascending.
403 case ID_SHARED_COL_AREQ:
404 if (altSorting) {
405 return mod * CmpAny( file1->statistic.GetAllTimeAccepts(), file2->statistic.GetAllTimeAccepts() );
406 } else {
407 return mod * CmpAny( file1->statistic.GetAccepts(), file2->statistic.GetAccepts() );
410 // Sort by transferred. Ascending.
411 case ID_SHARED_COL_TRA:
412 if (altSorting) {
413 return mod * CmpAny( file1->statistic.GetAllTimeTransferred(), file2->statistic.GetAllTimeTransferred() );
414 } else {
415 return mod * CmpAny( file1->statistic.GetTransferred(), file2->statistic.GetTransferred() );
418 // Sort by Share Ratio. Ascending.
419 case ID_SHARED_COL_RTIO:
420 return mod * CmpAny( (double)file1->statistic.GetAllTimeTransferred() / file1->GetFileSize(),
421 (double)file2->statistic.GetAllTimeTransferred() / file2->GetFileSize() );
423 // Complete sources asc
424 case ID_SHARED_COL_CMPL:
425 return mod * CmpAny( file1->m_nCompleteSourcesCount, file2->m_nCompleteSourcesCount );
427 // Folders ascending
428 case ID_SHARED_COL_PATH: {
429 if ( file1->IsPartFile() && file2->IsPartFile() )
430 return mod * 0;
431 if ( file1->IsPartFile() )
432 return mod * -1;
433 if ( file2->IsPartFile() )
434 return mod * 1;
436 return mod * CmpAny(file1->GetFilePath(), file2->GetFilePath());
439 default:
440 return 0;
445 void CSharedFilesCtrl::UpdateItem(CKnownFile* toupdate)
447 long result = FindItem( -1, reinterpret_cast<wxUIntPtr>(toupdate) );
449 if ( result > -1 ) {
450 RefreshItem(result);
452 if ( GetItemState( result, wxLIST_STATE_SELECTED ) ) {
453 theApp->amuledlg->m_sharedfileswnd->SelectionUpdated();
459 void CSharedFilesCtrl::ShowFilesCount()
461 wxStaticText* label = CastByName( wxT("sharedFilesLabel"), GetParent(), wxStaticText );
463 label->SetLabel(CFormat(_("Shared Files (%i)")) % GetItemCount());
464 label->GetParent()->Layout();
468 void CSharedFilesCtrl::OnDrawItem( int item, wxDC* dc, const wxRect& rect, const wxRect& rectHL, bool highlighted )
470 CKnownFile *file = (CKnownFile*)GetItemData(item);
471 wxASSERT( file );
473 if ( highlighted ) {
474 CMuleColour newcol(GetFocus() ? wxSYS_COLOUR_HIGHLIGHT : wxSYS_COLOUR_BTNSHADOW);
475 dc->SetBackground(newcol.Blend(125).GetBrush());
476 dc->SetTextForeground( CMuleColour(wxSYS_COLOUR_HIGHLIGHTTEXT));
477 // The second blending goes over the first one.
478 dc->SetPen(newcol.Blend(65).GetPen());
479 } else {
480 dc->SetBackground( CMuleColour(wxSYS_COLOUR_LISTBOX).GetBrush() );
481 dc->SetTextForeground(CMuleColour(wxSYS_COLOUR_WINDOWTEXT));
482 dc->SetPen(*wxTRANSPARENT_PEN);
485 dc->SetBrush(dc->GetBackground());
486 dc->DrawRectangle(rectHL);
487 dc->SetPen(*wxTRANSPARENT_PEN);
489 // Offset based on the height of the fonts
490 const int textVOffset = ( rect.GetHeight() - dc->GetCharHeight() ) / 2;
491 // Empty space to each side of a column
492 const int SPARE_PIXELS_HORZ = 4;
494 // The leftmost position of the current column
495 int columnLeft = 0;
497 for ( int i = 0; i < GetColumnCount(); ++i ) {
498 const int columnWidth = GetColumnWidth(i);
500 if (columnWidth > 2*SPARE_PIXELS_HORZ) {
501 wxRect columnRect(
502 columnLeft + SPARE_PIXELS_HORZ, rect.y,
503 columnWidth - 2 * SPARE_PIXELS_HORZ, rect.height);
505 wxDCClipper clipper(*dc, columnRect);
507 wxString textBuffer;
508 switch ( i ) {
509 case ID_SHARED_COL_NAME:
510 textBuffer = file->GetFileName().GetPrintable();
512 if (file->GetFileRating() || file->GetFileComment().Length()) {
513 int image = Client_CommentOnly_Smiley;
514 if (file->GetFileRating()) {
515 image = Client_InvalidRating_Smiley + file->GetFileRating() - 1;
518 wxASSERT(image >= Client_InvalidRating_Smiley);
519 wxASSERT(image <= Client_CommentOnly_Smiley);
521 int imgWidth = 16;
523 theApp->amuledlg->m_imagelist.Draw(image, *dc, columnRect.x,
524 columnRect.y + 1, wxIMAGELIST_DRAW_TRANSPARENT);
526 // Move the text to the right
527 columnRect.x += (imgWidth + 4);
530 break;
532 case ID_SHARED_COL_SIZE:
533 textBuffer = CastItoXBytes(file->GetFileSize());
534 break;
536 case ID_SHARED_COL_TYPE:
537 textBuffer = GetFiletypeByName(file->GetFileName());
538 break;
540 case ID_SHARED_COL_PRIO:
541 textBuffer = PriorityToStr(file->GetUpPriority(), file->IsAutoUpPriority());
542 break;
544 case ID_SHARED_COL_ID:
545 textBuffer = file->GetFileHash().Encode();
546 break;
548 case ID_SHARED_COL_REQ:
549 textBuffer = CFormat(wxT("%u (%u)"))
550 % file->statistic.GetRequests()
551 % file->statistic.GetAllTimeRequests();
552 break;
554 case ID_SHARED_COL_AREQ:
555 textBuffer = CFormat(wxT("%u (%u)"))
556 % file->statistic.GetAccepts()
557 % file->statistic.GetAllTimeAccepts();
558 break;
560 case ID_SHARED_COL_TRA:
561 textBuffer = CastItoXBytes(file->statistic.GetTransferred())
562 + wxT(" (") + CastItoXBytes(file->statistic.GetAllTimeTransferred()) + wxT(")");
563 break;
565 case ID_SHARED_COL_RTIO:
566 textBuffer = CFormat(wxT("%.2f")) % ((double)file->statistic.GetAllTimeTransferred() / file->GetFileSize());
567 break;
569 case ID_SHARED_COL_PART:
570 if ( file->GetPartCount() ) {
571 wxRect barRect(columnRect.x, columnRect. y + 1,
572 columnRect.width, columnRect.height - 2);
574 DrawAvailabilityBar(file, dc, barRect);
576 break;
578 case ID_SHARED_COL_CMPL:
579 if ( file->m_nCompleteSourcesCountLo == 0 ) {
580 if ( file->m_nCompleteSourcesCountHi ) {
581 textBuffer = CFormat(wxT("< %u")) % file->m_nCompleteSourcesCountHi;
582 } else {
583 textBuffer = wxT("0");
585 } else if (file->m_nCompleteSourcesCountLo == file->m_nCompleteSourcesCountHi) {
586 textBuffer = CFormat(wxT("%u")) % file->m_nCompleteSourcesCountLo;
587 } else {
588 textBuffer = CFormat(wxT("%u - %u")) % file->m_nCompleteSourcesCountLo % file->m_nCompleteSourcesCountHi;
591 break;
593 case ID_SHARED_COL_PATH:
594 if ( file->IsPartFile() ) {
595 textBuffer = _("[PartFile]");
596 } else {
597 textBuffer = file->GetFilePath().GetPrintable();
601 if (!textBuffer.IsEmpty()) {
602 dc->DrawText(textBuffer, columnRect.x, columnRect.y + textVOffset);
606 // Move to the next column
607 columnLeft += columnWidth;
612 wxString CSharedFilesCtrl::GetTTSText(unsigned item) const
614 return reinterpret_cast<CKnownFile*>(GetItemData(item))->GetFileName().GetPrintable();
618 bool CSharedFilesCtrl::AltSortAllowed(unsigned column) const
620 switch ( column ) {
621 case ID_SHARED_COL_REQ:
622 case ID_SHARED_COL_AREQ:
623 case ID_SHARED_COL_TRA:
624 return true;
626 default:
627 return false;
632 void CSharedFilesCtrl::DrawAvailabilityBar(CKnownFile* file, wxDC* dc, const wxRect& rect ) const
634 // Reference to the availability list
635 const ArrayOfUInts16& list = file->IsPartFile() ?
636 ((CPartFile*)file)->m_SrcpartFrequency :
637 file->m_AvailPartFrequency;
638 wxPen old_pen = dc->GetPen();
639 wxBrush old_brush = dc->GetBrush();
640 bool bFlat = thePrefs::UseFlatBar();
642 wxRect barRect = rect;
643 if (!bFlat) { // round bar has a black border, the bar itself is 1 pixel less on each border
644 barRect.x ++;
645 barRect.y ++;
646 barRect.height -= 2;
647 barRect.width -= 2;
649 static CBarShader s_ChunkBar;
650 s_ChunkBar.SetFileSize( file->GetFileSize() );
651 s_ChunkBar.SetHeight( barRect.GetHeight() );
652 s_ChunkBar.SetWidth( barRect.GetWidth() );
653 s_ChunkBar.Set3dDepth( CPreferences::Get3DDepth() );
654 uint64 end = 0;
655 for ( unsigned int i = 0; i < list.size(); ++i ) {
656 uint64 start = PARTSIZE * static_cast<uint64>(i);
657 end = PARTSIZE * static_cast<uint64>(i + 1);
658 s_ChunkBar.FillRange(start, end, CMuleColour(list[i] ? 0 : 255, list[i] ? ((210-(22*( list[i] - 1 ) ) < 0) ? 0 : (210-(22*( list[i] - 1 ) ))) : 0, list[i] ? 255 : 0));
660 s_ChunkBar.FillRange(end + 1, file->GetFileSize() - 1, CMuleColour(255, 0, 0));
661 s_ChunkBar.Draw(dc, barRect.x, barRect.y, bFlat);
663 if (!bFlat) {
664 // Draw black border
665 dc->SetPen( *wxBLACK_PEN );
666 dc->SetBrush( *wxTRANSPARENT_BRUSH );
667 dc->DrawRectangle(rect);
670 dc->SetPen( old_pen );
671 dc->SetBrush( old_brush );
674 void CSharedFilesCtrl::OnRename( wxCommandEvent& WXUNUSED(event) )
676 int item = GetNextItem( -1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
677 if ( item != -1 ) {
678 CKnownFile* file = (CKnownFile*)GetItemData(item);
680 wxString strNewName = ::wxGetTextFromUser(
681 _("Enter new name for this file:"),
682 _("File rename"), file->GetFileName().GetPrintable());
684 CPath newName = CPath(strNewName);
685 if (newName.IsOk() && (newName != file->GetFileName())) {
686 theApp->sharedfiles->RenameFile(file, newName);
692 void CSharedFilesCtrl::OnKeyPressed( wxKeyEvent& event )
694 if (event.GetKeyCode() == WXK_F2) {
695 wxCommandEvent evt;
696 OnRename(evt);
698 return;
700 event.Skip();
704 void CSharedFilesCtrl::OnAddCollection( wxCommandEvent& WXUNUSED(evt) )
706 int item = GetNextItem( -1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
707 if (item != -1) {
708 CKnownFile *file = (CKnownFile*)GetItemData(item);
709 wxString CollectionFile = file->GetFilePath().JoinPaths(file->GetFileName()).GetRaw();
710 CMuleCollection my_collection;
711 if (my_collection.Open( (std::string)CollectionFile.mb_str() )) {
712 //#warning This is probably not working on Unicode
713 for (size_t e = 0; e < my_collection.GetFileCount(); ++e) {
714 theApp->downloadqueue->AddLink(
715 wxString(my_collection.GetEd2kLink(e).c_str(), wxConvUTF8));
722 // File_checked_for_headers