📄 clientlistctrl.cpp
字号:
//this file is part of eMule
//Copyright (C)2002 Merkur ( merkur-@users.sourceforge.net / http://www.emule-project.net )
//
//This program is free software; you can redistribute it and/or
//modify it under the terms of the GNU General Public License
//as published by the Free Software Foundation; either
//version 2 of the License, or (at your option) any later version.
//
//This program is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//GNU General Public License for more details.
//
//You should have received a copy of the GNU General Public License
//along with this program; if not, write to the Free Software
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// ClientListCtrl.cpp : implementation file
//
#include "stdafx.h"
#include "emule.h"
#include "ClientListCtrl.h"
#include "otherfunctions.h"
#include "opcodes.h"
#include "ClientDetailDialog.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
// CClientListCtrl
IMPLEMENT_DYNAMIC(CClientListCtrl, CMuleListCtrl)
CClientListCtrl::CClientListCtrl(){
}
void CClientListCtrl::Init(){
SetExtendedStyle(LVS_EX_FULLROWSELECT);
InsertColumn(0,GetResString(IDS_QL_USERNAME),LVCFMT_LEFT,150,0);
InsertColumn(1,GetResString(IDS_CL_UPLOADSTATUS),LVCFMT_LEFT,150,1);
InsertColumn(2,GetResString(IDS_CL_TRANSFUP),LVCFMT_LEFT,150,2);
InsertColumn(3,GetResString(IDS_CL_DOWNLSTATUS),LVCFMT_LEFT,150,3);
InsertColumn(4,GetResString(IDS_CL_TRANSFDOWN),LVCFMT_LEFT,150,4);
CString coltemp;coltemp=GetResString(IDS_CD_CSOFT);coltemp.Remove(':');
InsertColumn(5,coltemp,LVCFMT_LEFT,150,5);
InsertColumn(6,GetResString(IDS_CONNECTED),LVCFMT_LEFT,150,6);
coltemp=GetResString(IDS_CD_UHASH);coltemp.Remove(':');
InsertColumn(7,coltemp,LVCFMT_LEFT,150,7);
imagelist.Create(16,16,ILC_COLOR32|ILC_MASK,0,10);
imagelist.SetBkColor(RGB(255,255,255));
imagelist.Add(theApp.LoadIcon(IDI_USER0));
imagelist.Add(theApp.LoadIcon(IDI_COMPPROT));
imagelist.Add(theApp.LoadIcon(IDI_PLUS));
imagelist.Add(theApp.LoadIcon(IDI_PLUSCOMPROT));
imagelist.Add(theApp.LoadIcon(IDI_FRIEND));
imagelist.Add(theApp.LoadIcon(IDI_MLDONK));
imagelist.Add(theApp.LoadIcon(IDI_PLUSMLDONK));
imagelist.Add(theApp.LoadIcon(IDI_EDONKEYHYBRID));
imagelist.Add(theApp.LoadIcon(IDI_PLUSEDONKEYHYBRID));
SetImageList(&imagelist,LVSIL_SMALL);
LoadSettings(CPreferences::tableClientList);
int sortItem = theApp.glob_prefs->GetColumnSortItem(CPreferences::tableClientList);
bool sortAscending = theApp.glob_prefs->GetColumnSortAscending(CPreferences::tableClientList);
SetSortArrow(sortItem, sortAscending);
SortItems(SortProc, sortItem + (sortAscending ? 0:100));
}
CClientListCtrl::~CClientListCtrl()
{
}
void CClientListCtrl::Localize() {
CHeaderCtrl* pHeaderCtrl = GetHeaderCtrl();
HDITEM hdi;
hdi.mask = HDI_TEXT;
if(pHeaderCtrl->GetItemCount() != 0) {
CString strRes;
strRes = GetResString(IDS_QL_USERNAME);
hdi.pszText = strRes.GetBuffer();
pHeaderCtrl->SetItem(0, &hdi);
strRes.ReleaseBuffer();
strRes = GetResString(IDS_CL_UPLOADSTATUS);
hdi.pszText = strRes.GetBuffer();
pHeaderCtrl->SetItem(1, &hdi);
strRes.ReleaseBuffer();
strRes = GetResString(IDS_CL_TRANSFUP);
hdi.pszText = strRes.GetBuffer();
pHeaderCtrl->SetItem(2, &hdi);
strRes.ReleaseBuffer();
strRes = GetResString(IDS_CL_DOWNLSTATUS);
hdi.pszText = strRes.GetBuffer();
pHeaderCtrl->SetItem(3, &hdi);
strRes.ReleaseBuffer();
strRes = GetResString(IDS_CL_TRANSFDOWN);
hdi.pszText = strRes.GetBuffer();
pHeaderCtrl->SetItem(4, &hdi);
strRes.ReleaseBuffer();
strRes=GetResString(IDS_CD_CSOFT);strRes.Remove(':');
hdi.pszText = strRes.GetBuffer();
pHeaderCtrl->SetItem(5, &hdi);
strRes.ReleaseBuffer();
strRes = GetResString(IDS_CONNECTED);
hdi.pszText = strRes.GetBuffer();
pHeaderCtrl->SetItem(6, &hdi);
strRes.ReleaseBuffer();
strRes=GetResString(IDS_CD_UHASH);strRes.Remove(':');
hdi.pszText = strRes.GetBuffer();
pHeaderCtrl->SetItem(7, &hdi);
strRes.ReleaseBuffer();
}
}
void CClientListCtrl::ShowKnownClients(){
DeleteAllItems();
int i=0;
CString temp;
for(POSITION pos = theApp.clientlist->list.GetHeadPosition(); pos != NULL;theApp.clientlist->list.GetNext(pos)) {
CUpDownClient* cur_client = theApp.clientlist->list.GetAt(pos);
InsertItem(LVIF_TEXT|LVIF_PARAM,i,0,0,0,0,(LPARAM)cur_client);
RefreshClient( cur_client );
i++;
}
}
void CClientListCtrl::AddClient(CUpDownClient* client){
if(theApp.glob_prefs->IsKnownClientListDisabled())
return;
LVFINDINFO find;
find.flags = LVFI_PARAM;
find.lParam = (LPARAM)client;
sint32 result = FindItem(&find);
if (result == (-1) && client){
uint32 itemnr = GetItemCount();
itemnr = InsertItem(LVIF_TEXT|LVIF_PARAM,itemnr,0,0,0,1,(LPARAM)client);
RefreshClient(client);
}
}
void CClientListCtrl::RemoveClient(CUpDownClient* client){
sint32 result = 0;
while( result != -1 ){
LVFINDINFO find;
find.flags = LVFI_PARAM;
find.lParam = (LPARAM)client;
result = FindItem(&find);
if (result != (-1) )
DeleteItem(result);
}
}
void CClientListCtrl::RefreshClient(CUpDownClient* client){
// There is some type of timing issue here.. If you click on item in the queue or upload and leave
// the focus on it when you exit the cient, it breaks on line 854 of emuleDlg.cpp..
// I added this IsRunning() check to this function and the DrawItem method and
// this seems to keep it from crashing. This is not the fix but a patch until
// someone points out what is going wrong.. Also, it will still assert in debug mode..
if( !theApp.emuledlg->IsRunning() )
return;
LVFINDINFO find;
find.flags = LVFI_PARAM;
find.lParam = (LPARAM)client;
sint16 result = FindItem(&find);
if(result != -1)
Update(result);
return;
}
#define DLC_DT_TEXT (DT_LEFT|DT_SINGLELINE|DT_VCENTER|DT_NOPREFIX|DT_END_ELLIPSIS)
void CClientListCtrl::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct){
if( !theApp.emuledlg->IsRunning() )
return;
if (!lpDrawItemStruct->itemData)
return;
CDC* odc = CDC::FromHandle(lpDrawItemStruct->hDC);
BOOL bCtrlFocused = ((GetFocus() == this ) || (GetStyle() & LVS_SHOWSELALWAYS));
if( (lpDrawItemStruct->itemAction | ODA_SELECT) && (lpDrawItemStruct->itemState & ODS_SELECTED )){
if(bCtrlFocused)
odc->SetBkColor(m_crHighlight);
else
odc->SetBkColor(m_crNoHighlight);
}
else
odc->SetBkColor(GetBkColor());
CUpDownClient* client = (CUpDownClient*)lpDrawItemStruct->itemData;
CMemDC dc(CDC::FromHandle(lpDrawItemStruct->hDC),&CRect(lpDrawItemStruct->rcItem));
dc.SelectObject(GetFont());
COLORREF crOldTextColor = dc->GetTextColor();
COLORREF crOldBkColor = dc->GetBkColor();
RECT cur_rec;
memcpy(&cur_rec,&lpDrawItemStruct->rcItem,sizeof(RECT));
CString Sbuffer;
CKnownFile* file = theApp.sharedfiles->GetFileByID(client->GetUploadFileID());
CHeaderCtrl *pHeaderCtrl = GetHeaderCtrl();
int iCount = pHeaderCtrl->GetItemCount();
cur_rec.right = cur_rec.left - 8;
cur_rec.left += 4;
for(int iCurrent = 0; iCurrent < iCount; iCurrent++){
int iColumn = pHeaderCtrl->OrderToIndex(iCurrent);
if( !IsColumnHidden(iColumn) ){
cur_rec.right += GetColumnWidth(iColumn);
switch(iColumn){
case 0:{
uint8 image;
if (client->IsFriend())
image = 4;
else if (client->ExtProtocolAvailable()){
image = 1;
}
else{
if (client->GetClientSoft() == SO_MLDONKEY ){
image = 5;
}
else if (client->GetClientSoft() == SO_EDONKEYHYBRID ){
image = 7;
}
else{
image = 0;
}
}
POINT point = {cur_rec.left, cur_rec.top+1};
imagelist.Draw(dc,image, point, ILD_NORMAL);
if (client->GetUserName()==NULL)
Sbuffer.Format("(%s)", GetResString(IDS_UNKNOWN));
else
Sbuffer.Format("%s", client->GetUserName());
cur_rec.left +=20;
dc->DrawText(Sbuffer,Sbuffer.GetLength(),&cur_rec,DLC_DT_TEXT);
cur_rec.left -=20;
break;
}
case 1:{
switch (client->GetUploadState()){
case US_ONUPLOADQUEUE:
Sbuffer = GetResString(IDS_ONQUEUE);
break;
case US_PENDING:
Sbuffer = GetResString(IDS_CL_PENDING);
break;
case US_LOWTOLOWIP:
Sbuffer = GetResString(IDS_CL_LOW2LOW);
break;
case US_BANNED:
Sbuffer = GetResString(IDS_BANNED);
break;
case US_ERROR:
Sbuffer = GetResString(IDS_ERROR);
break;
case US_CONNECTING:
Sbuffer = GetResString(IDS_CONNECTING);
break;
case US_WAITCALLBACK:
Sbuffer = GetResString(IDS_CONNVIASERVER);
break;
case US_UPLOADING:
Sbuffer = GetResString(IDS_TRANSFERRING);
break;
default:
Sbuffer = "";
}
break;
}
case 2:{
if(client->credits)
Sbuffer.Format("%s", CastItoXBytes(client->credits->GetUploadedTotal()));
else
Sbuffer = "";
break;
}
case 3:{
switch (client->GetDownloadState()) {
case DS_CONNECTING:
Sbuffer = GetResString(IDS_CONNECTING);
break;
case DS_CONNECTED:
Sbuffer = GetResString(IDS_ASKING);
break;
case DS_WAITCALLBACK:
Sbuffer = GetResString(IDS_CONNVIASERVER);
break;
case DS_ONQUEUE:
if( client->IsRemoteQueueFull() )
Sbuffer = GetResString(IDS_QUEUEFULL);
else
Sbuffer = GetResString(IDS_ONQUEUE);
break;
case DS_DOWNLOADING:
Sbuffer = GetResString(IDS_TRANSFERRING);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -