📄 clientlistctrl.cpp
字号:
Sbuffer = client->GetClientSoftVer();
if (Sbuffer.IsEmpty())
Sbuffer = GetResString(IDS_UNKNOWN);
break;
}
case 6:{
if(client->socket){
if(client->socket->IsConnected()){
Sbuffer = GetResString(IDS_YES);
break;
}
}
Sbuffer = GetResString(IDS_NO);
break;
}
case 7:
Sbuffer = md4str(client->GetUserHash());
break;
}
if( iColumn != 0)
dc->DrawText(Sbuffer,Sbuffer.GetLength(),&cur_rec,DLC_DT_TEXT);
cur_rec.left += GetColumnWidth(iColumn);
}
}
//draw rectangle around selected item(s)
if ((lpDrawItemStruct->itemAction | ODA_SELECT) && (lpDrawItemStruct->itemState & ODS_SELECTED))
{
RECT outline_rec = lpDrawItemStruct->rcItem;
outline_rec.top--;
outline_rec.bottom++;
dc->FrameRect(&outline_rec, &CBrush(GetBkColor()));
outline_rec.top++;
outline_rec.bottom--;
outline_rec.left++;
outline_rec.right--;
if(bCtrlFocused)
dc->FrameRect(&outline_rec, &CBrush(m_crFocusLine));
else
dc->FrameRect(&outline_rec, &CBrush(m_crNoFocusLine));
}
if (m_crWindowTextBk == CLR_NONE)
dc.SetBkMode(iOldBkMode);
dc.SelectObject(pOldFont);
dc.SetTextColor(crOldTextColor);
}
BEGIN_MESSAGE_MAP(CClientListCtrl, CMuleListCtrl)
ON_WM_CONTEXTMENU()
ON_WM_SYSCOLORCHANGE()
ON_NOTIFY_REFLECT(LVN_COLUMNCLICK, OnColumnClick)
ON_NOTIFY_REFLECT(NM_DBLCLK, OnNMDblclk)
ON_NOTIFY_REFLECT(LVN_GETDISPINFO, OnGetDispInfo)
END_MESSAGE_MAP()
// CClientListCtrl message handlers
void CClientListCtrl::OnContextMenu(CWnd* pWnd, CPoint point)
{
int iSel = GetNextItem(-1, LVIS_SELECTED | LVIS_FOCUSED);
const CUpDownClient* client = (iSel != -1) ? (CUpDownClient*)GetItemData(iSel) : NULL;
CTitleMenu ClientMenu;
ClientMenu.CreatePopupMenu();
ClientMenu.AddMenuTitle(GetResString(IDS_CLIENTS), true);
ClientMenu.AppendMenu(MF_STRING | (client ? MF_ENABLED : MF_GRAYED), MP_DETAIL, GetResString(IDS_SHOWDETAILS), _T("CLIENTDETAILS"));
ClientMenu.SetDefaultItem(MP_DETAIL);
ClientMenu.AppendMenu(MF_STRING | ((client && client->IsEd2kClient() && !client->IsFriend()) ? MF_ENABLED : MF_GRAYED), MP_ADDFRIEND, GetResString(IDS_ADDFRIEND), _T("ADDFRIEND"));
ClientMenu.AppendMenu(MF_STRING | ((client && client->IsEd2kClient()) ? MF_ENABLED : MF_GRAYED), MP_MESSAGE, GetResString(IDS_SEND_MSG), _T("SENDMESSAGE"));
ClientMenu.AppendMenu(MF_STRING | ((client && client->IsEd2kClient() && client->GetViewSharedFilesSupport()) ? MF_ENABLED : MF_GRAYED), MP_SHOWLIST, GetResString(IDS_VIEWFILES), _T("VIEWFILES"));
if (Kademlia::CKademlia::isRunning() && !Kademlia::CKademlia::isConnected())
ClientMenu.AppendMenu(MF_STRING | ((client && client->IsEd2kClient() && client->GetKadPort()!=0) ? MF_ENABLED : MF_GRAYED), MP_BOOT, GetResString(IDS_BOOTSTRAP));
ClientMenu.AppendMenu(MF_STRING,MP_SHOWMPAGE, GetResString(IDS_SHOWMPAGE)); //VeryCD:从VeryCD网站查看用户资料
if (!client || !client->GetUserName() || !strstr(client->GetUserName(), "VeryCD:"))
ClientMenu.EnableMenuItem(MP_SHOWMPAGE,MF_GRAYED);
GetPopupMenuPos(*this, point);
ClientMenu.TrackPopupMenu(TPM_LEFTALIGN | TPM_RIGHTBUTTON, point.x, point.y, this);
}
BOOL CClientListCtrl::OnCommand(WPARAM wParam,LPARAM lParam )
{
//CUpDownClient* client = (CUpDownClient*)GetItemData(GetSelectionMark());
int iSel = GetNextItem(-1, LVIS_SELECTED | LVIS_FOCUSED);
if (iSel != -1){
CUpDownClient* client = (CUpDownClient*)GetItemData(iSel);
switch (wParam){
case MP_SHOWLIST:
client->RequestSharedFileList();
break;
case MP_MESSAGE:
theApp.emuledlg->chatwnd->StartSession(client);
break;
case MP_ADDFRIEND:
if (theApp.friendlist->AddFriend(client))
Update(iSel);
break;
case MP_UNBAN:
if (client->IsBanned()){
client->UnBan();
Update(iSel);
}
break;
case MPG_ALTENTER:
case MP_DETAIL:{
CClientDetailDialog dialog(client);
dialog.DoModal();
break;
}
case MP_BOOT:
if (client->GetKadPort())
Kademlia::CKademlia::bootstrap(ntohl(client->GetIP()), client->GetKadPort());
break;
case MP_SHOWMPAGE:{
char *pdest1;
char *pdest2;
int result;
CString Start;
pdest1 = strstr( client->GetUserName(), "VeryCD:" );
if(strstr( pdest1, "]" ))
{
pdest2 = strstr( pdest1, "]" );
result = (int)(pdest2 - pdest1 - 7);
Start = pdest1;
Start = Start.Mid(7,result);
CString temp = "http://blog.VeryCD.com/" + Start;
ShellOpenFile(temp);
}
break;
}
}
}
return true;
}
void CClientListCtrl::OnColumnClick( NMHDR* pNMHDR, LRESULT* pResult){
NM_LISTVIEW* pNMListView = (NM_LISTVIEW*)pNMHDR;
// Barry - Store sort order in preferences
// Determine ascending based on whether already sorted on this column
int sortItem = thePrefs.GetColumnSortItem(CPreferences::tableClientList);
bool m_oldSortAscending = thePrefs.GetColumnSortAscending(CPreferences::tableClientList);
bool sortAscending = (sortItem != pNMListView->iSubItem) ? true : !m_oldSortAscending;
// Item is column clicked
sortItem = pNMListView->iSubItem;
// Save new preferences
thePrefs.SetColumnSortItem(CPreferences::tableClientList, sortItem);
thePrefs.SetColumnSortAscending(CPreferences::tableClientList, sortAscending);
// Sort table
SetSortArrow(sortItem, sortAscending);
SortItems(SortProc, sortItem + (sortAscending ? 0:100));
*pResult = 0;
}
int CClientListCtrl::SortProc(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort)
{
const CUpDownClient* item1 = (CUpDownClient*)lParam1;
const CUpDownClient* item2 = (CUpDownClient*)lParam2;
switch(lParamSort){
case 0:
if(item1->GetUserName() && item2->GetUserName())
return CompareLocaleStringNoCase(item1->GetUserName(), item2->GetUserName());
else if(item1->GetUserName())
return 1;
else
return -1;
case 100:
if(item1->GetUserName() && item2->GetUserName())
return CompareLocaleStringNoCase(item2->GetUserName(), item1->GetUserName());
else if(item2->GetUserName())
return 1;
else
return -1;
case 1:
return item1->GetUploadState()-item2->GetUploadState();
case 101:
return item2->GetUploadState()-item1->GetUploadState();
case 2:
if( item1->credits && item2->credits )
return CompareUnsigned64(item1->credits->GetUploadedTotal(), item2->credits->GetUploadedTotal());
else if( !item1->credits )
return 1;
else
return -1;
case 102:
if( item1->credits && item2->credits )
return CompareUnsigned64(item2->credits->GetUploadedTotal(), item1->credits->GetUploadedTotal());
else if( !item1->credits )
return 1;
else
return -1;
case 3:
if( item1->GetDownloadState() == item2->GetDownloadState() ){
if( item1->IsRemoteQueueFull() && item2->IsRemoteQueueFull() )
return 0;
else if( item1->IsRemoteQueueFull() )
return 1;
else if( item2->IsRemoteQueueFull() )
return -1;
else
return 0;
}
return item1->GetDownloadState()-item2->GetDownloadState();
case 103:
if( item2->GetDownloadState() == item1->GetDownloadState() ){
if( item2->IsRemoteQueueFull() && item1->IsRemoteQueueFull() )
return 0;
else if( item2->IsRemoteQueueFull() )
return 1;
else if( item1->IsRemoteQueueFull() )
return -1;
else
return 0;
}
return item2->GetDownloadState()-item1->GetDownloadState();
case 4:
if( item1->credits && item2->credits )
return CompareUnsigned64(item1->credits->GetDownloadedTotal(), item2->credits->GetDownloadedTotal());
else if( !item1->credits )
return 1;
else
return -1;
case 104:
if( item1->credits && item2->credits )
return CompareUnsigned64(item2->credits->GetDownloadedTotal(), item1->credits->GetDownloadedTotal());
else if( !item1->credits )
return 1;
else
return -1;
case 5:
if( item1->GetClientSoft() == item2->GetClientSoft() )
return item2->GetVersion() - item1->GetVersion();
return item1->GetClientSoft() - item2->GetClientSoft();
case 105:
if( item1->GetClientSoft() == item2->GetClientSoft() )
return item1->GetVersion() - item2->GetVersion();
return item2->GetClientSoft() - item1->GetClientSoft();
case 6:
if( item1->socket && item2->socket )
return item1->socket->IsConnected()-item2->socket->IsConnected();
else if( !item1->socket )
return -1;
else
return 1;
case 106:
if( item1->socket && item2->socket )
return item2->socket->IsConnected()-item1->socket->IsConnected();
else if( !item2->socket )
return -1;
else
return 1;
case 7:
return memcmp(item1->GetUserHash(), item2->GetUserHash(), 16);
case 107:
return memcmp(item2->GetUserHash(), item1->GetUserHash(), 16);
default:
return 0;
}
}
void CClientListCtrl::ShowSelectedUserDetails()
{
POINT point;
::GetCursorPos(&point);
CPoint p = point;
ScreenToClient(&p);
int it = HitTest(p);
if (it == -1)
return;
SetItemState(-1, 0, LVIS_SELECTED);
SetItemState(it, LVIS_SELECTED | LVIS_FOCUSED, LVIS_SELECTED | LVIS_FOCUSED);
SetSelectionMark(it); // display selection mark correctly!
const CUpDownClient* client = (CUpDownClient*)GetItemData(GetSelectionMark());
if (client){
CClientDetailDialog dialog(client);
dialog.DoModal();
}
}
void CClientListCtrl::OnNMDblclk(NMHDR *pNMHDR, LRESULT *pResult) {
int iSel = GetNextItem(-1, LVIS_SELECTED | LVIS_FOCUSED);
if (iSel != -1) {
const CUpDownClient* client = (CUpDownClient*)GetItemData(iSel);
if (client){
CClientDetailDialog dialog(client);
dialog.DoModal();
}
}
*pResult = 0;
}
void CClientListCtrl::OnGetDispInfo(NMHDR *pNMHDR, LRESULT *pResult)
{
NMLVDISPINFO *pDispInfo = reinterpret_cast<NMLVDISPINFO*>(pNMHDR);
if (theApp.emuledlg->IsRunning()){
// Although we have an owner drawn listview control we store the text for the primary item in the listview, to be
// capable of quick searching those items via the keyboard. Because our listview items may change their contents,
// we do this via a text callback function. The listview control will send us the LVN_DISPINFO notification if
// it needs to know the contents of the primary item.
//
// But, the listview control sends this notification all the time, even if we do not search for an item. At least
// this notification is only sent for the visible items and not for all items in the list. Though, because this
// function is invoked *very* often, no *NOT* put any time consuming code here in.
if (pDispInfo->item.mask & LVIF_TEXT){
const CUpDownClient* pClient = reinterpret_cast<CUpDownClient*>(pDispInfo->item.lParam);
if (pClient != NULL){
switch (pDispInfo->item.iSubItem){
case 0:
if (pClient->GetUserName() != NULL && pDispInfo->item.cchTextMax > 0){
_tcsncpy(pDispInfo->item.pszText, pClient->GetUserName(), pDispInfo->item.cchTextMax);
pDispInfo->item.pszText[pDispInfo->item.cchTextMax-1] = _T('\0');
}
break;
default:
// shouldn't happen
pDispInfo->item.pszText[0] = _T('\0');
break;
}
}
}
}
*pResult = 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -