📄 chatselector.cpp
字号:
ci->log->AppendKeyWord(_T(" ") + GetResString(IDS_FAILED) + _T("\n"), RGB(255,0,0));
ci->strMessagePendingA.Empty();
}
else{
if (thePrefs.GetIRCAddTimestamp())
AddTimeStamp(ci);
ci->log->AppendKeyWord(GetResString(IDS_CHATDISCONNECTED) + _T("\n"), RGB(255,0,0));
}
}
else if (!ci->strMessagePendingA.IsEmpty()){
ci->log->AppendKeyWord(_T(" ok\n"), RGB(255,0,0));
uint16 mlen = ci->strMessagePendingA.GetLength();
Packet* packet = new Packet(OP_MESSAGE, mlen+2);
PokeUInt16(packet->pBuffer, mlen);
memcpy(packet->pBuffer + 2, ci->strMessagePendingA, mlen);
theStats.AddUpDataOverheadOther(packet->size);
ci->client->socket->SendPacket(packet, true, true);
if (thePrefs.GetIRCAddTimestamp())
AddTimeStamp(ci);
ci->log->AppendKeyWord(A2CT(thePrefs.GetUserNick()), RGB(1,180,20));
ci->log->AppendText(_T(": "));
ci->log->AppendText(CString(ci->strMessagePendingA) + _T("\n"));
ci->strMessagePendingA.Empty();
}
else{
if (thePrefs.GetIRCAddTimestamp())
AddTimeStamp(ci);
ci->log->AppendKeyWord(_T("*** Connected\n"), RGB(255,0,0));
}
}
void CChatSelector::DeleteAllItems()
{
for (int i = 0; i < GetItemCount(); i++){
TCITEM cur_item;
cur_item.mask = TCIF_PARAM;
if (GetItem(i, &cur_item))
delete (CChatItem*)cur_item.lParam;
}
}
void CChatSelector::OnTimer(UINT_PTR nIDEvent)
{
m_blinkstate = !m_blinkstate;
bool globalnotify = false;
for (int i = 0; i < GetItemCount();i++)
{
TCITEM cur_item;
cur_item.mask = TCIF_PARAM | TCIF_IMAGE;
if (!GetItem(i, &cur_item))
break;
cur_item.mask = TCIF_IMAGE;
if (((CChatItem*)cur_item.lParam)->notify){
cur_item.iImage = (m_blinkstate) ? 1 : 2;
SetItem(i, &cur_item);
HighlightItem(i, TRUE);
globalnotify = true;
}
else if (cur_item.iImage != 0){
cur_item.iImage = 0;
SetItem(i, &cur_item);
HighlightItem(i, FALSE);
}
}
if (globalnotify) {
theApp.emuledlg->ShowMessageState(m_blinkstate ? 1 : 2);
m_lastemptyicon = false;
}
else if (!m_lastemptyicon) {
theApp.emuledlg->ShowMessageState(0);
m_lastemptyicon = true;
}
}
CChatItem* CChatSelector::GetCurrentChatItem()
{
int iCurSel = GetCurSel();
if (iCurSel == -1)
return NULL;
TCITEM cur_item;
cur_item.mask = TCIF_PARAM;
if (!GetItem(iCurSel, &cur_item))
return NULL;
return (CChatItem*)cur_item.lParam;
}
void CChatSelector::ShowChat()
{
CChatItem* ci = GetCurrentChatItem();
if (!ci)
return;
// show current chat window
ci->log->ShowWindow(SW_SHOW);
::SetFocus(m_hwndMessageBox);
TCITEM item;
item.mask = TCIF_IMAGE;
item.iImage = 0;
SetItem(GetCurSel(), &item);
HighlightItem(GetCurSel(), FALSE);
// hide all other chat windows
item.mask = TCIF_PARAM;
int i = 0;
while (GetItem(i++, &item)){
CChatItem* ci2 = (CChatItem*)item.lParam;
if (ci2 != ci)
ci2->log->ShowWindow(SW_HIDE);
}
ci->notify = false;
}
void CChatSelector::OnTcnSelchangeChatsel(NMHDR *pNMHDR, LRESULT *pResult)
{
ShowChat();
*pResult = 0;
}
int CChatSelector::InsertItem(int nItem, TCITEM* pTabCtrlItem)
{
int iResult = CClosableTabCtrl::InsertItem(nItem, pTabCtrlItem);
RedrawWindow();
return iResult;
}
BOOL CChatSelector::DeleteItem(int nItem)
{
CClosableTabCtrl::DeleteItem(nItem);
RedrawWindow();
return TRUE;
}
void CChatSelector::EndSession(CUpDownClient* client)
{
int iCurSel;
if (client)
iCurSel = GetTabByClient(client);
else
iCurSel = GetCurSel();
if (iCurSel == -1)
return;
TCITEM item;
item.mask = TCIF_PARAM;
if (!GetItem(iCurSel, &item) || item.lParam == 0)
return;
CChatItem* ci = (CChatItem*)item.lParam;
ci->client->SetChatState(MS_NONE);
DeleteItem(iCurSel);
delete ci;
int iTabItems = GetItemCount();
if (iTabItems > 0){
// select next tab
if (iCurSel == CB_ERR)
iCurSel = 0;
else if (iCurSel >= iTabItems)
iCurSel = iTabItems - 1;
(void)SetCurSel(iCurSel); // returns CB_ERR if error or no prev. selection(!)
iCurSel = GetCurSel(); // get the real current selection
if (iCurSel == CB_ERR) // if still error
iCurSel = SetCurSel(0);
ShowChat();
}
}
void CChatSelector::GetChatSize(CRect& rcChat)
{
CRect rcClose, rcSend, rcMessage;
::GetWindowRect(m_hwndCloseBtn, &rcClose);
::GetWindowRect(m_hwndSendBtn, &rcSend);
::GetWindowRect(m_hwndMessageBox, &rcMessage);
int iTop = rcClose.Height() > rcSend.Height() ? rcClose.Height() : rcSend.Height();
if (iTop < rcMessage.Height())
iTop = rcMessage.Height();
CRect rcClient;
GetClientRect(&rcClient);
AdjustRect(FALSE, rcClient);
rcChat.left = rcClient.left + 7;
rcChat.top = rcClient.top + 7;
rcChat.right = rcChat.left + rcClient.right - 18;
rcChat.bottom = rcChat.top + rcClient.Height() - 7 - iTop - 14;
}
void CChatSelector::OnSize(UINT nType, int cx, int cy)
{
CClosableTabCtrl::OnSize(nType, cx, cy);
CRect rect;
GetClientRect(&rect);
AdjustRect(FALSE, rect);
CRect rClose;
::GetWindowRect(m_hwndCloseBtn, &rClose);
::SetWindowPos(m_hwndCloseBtn, NULL, rect.right-7-rClose.Width(), rect.bottom-7-rClose.Height(),
rClose.Width(), rClose.Height(), SWP_NOZORDER);
CRect rSend;
::GetWindowRect(m_hwndSendBtn, &rSend);
::SetWindowPos(m_hwndSendBtn, NULL, rect.right-7-rClose.Width()-7-rSend.Width(), rect.bottom-7-rSend.Height(),
rSend.Width(), rSend.Height(), SWP_NOZORDER);
CRect rMessage;
::GetWindowRect(m_hwndMessageBox, &rMessage);
::SetWindowPos(m_hwndMessageBox, NULL, rect.left+7, rect.bottom-9-rMessage.Height(),
rect.right-7-rClose.Width()-7-rSend.Width()-21, rMessage.Height(), SWP_NOZORDER);
CRect rcChat;
GetChatSize(rcChat);
TCITEM item;
item.mask = TCIF_PARAM;
int i = 0;
while (GetItem(i++, &item)){
CChatItem* ci = (CChatItem*)item.lParam;
ci->log->SetWindowPos(NULL, rcChat.left, rcChat.top, rcChat.Width(), rcChat.Height(), SWP_NOZORDER);
}
}
void CChatSelector::OnBnClickedCclose()
{
EndSession();
}
void CChatSelector::OnBnClickedCsend()
{
CString strMessage;
::GetWindowText(m_hwndMessageBox, strMessage.GetBuffer(MAX_CLIENT_MSG_LEN), MAX_CLIENT_MSG_LEN+1);
strMessage.ReleaseBuffer();
strMessage.Trim();
if (!strMessage.IsEmpty())
{
if (SendMessage(strMessage))
::SetWindowText(m_hwndMessageBox, _T(""));
}
::SetFocus(m_hwndMessageBox);
}
BOOL CChatSelector::PreTranslateMessage(MSG* pMsg)
{
if (pMsg->message == WM_KEYDOWN)
{
if (pMsg->wParam == VK_RETURN){
if (pMsg->hwnd == m_hwndMessageBox)
OnBnClickedCsend();
}
if (pMsg->hwnd == m_hwndMessageBox && (pMsg->wParam == VK_UP || pMsg->wParam == VK_DOWN)){
theApp.emuledlg->chatwnd->ScrollHistory(pMsg->wParam == VK_DOWN);
return TRUE;
}
}
return CClosableTabCtrl::PreTranslateMessage(pMsg);
}
void CChatSelector::Localize(void)
{
if (m_hWnd)
{
if (m_hwndSendBtn)
::SetWindowText(m_hwndSendBtn, GetResString(IDS_CW_SEND));
else
GetParent()->GetDlgItem(IDC_CSEND)->SetWindowText(GetResString(IDS_CW_SEND));
if (m_hwndCloseBtn)
::SetWindowText(m_hwndCloseBtn, GetResString(IDS_CW_CLOSE));
else
GetParent()->GetDlgItem(IDC_CCLOSE)->SetWindowText(GetResString(IDS_CW_CLOSE));
}
}
bool CChatSelector::IsSpam(CString strMessage, CUpDownClient* client)
{
// first step, spam dectection will be further improved in future versions
if ( !thePrefs.IsAdvSpamfilterEnabled() || client->IsFriend() ) // friends are never spammer... (but what if two spammers are friends :P )
return false;
if (client->IsSpammer())
return true;
// first fixed criteria: If a client sends me an URL in his first message before I response to him
// there is a 99,9% chance that it is some poor guy advising his leech mod, or selling you .. well you know :P
if (client->GetMessagesSent() == 0){
int curPos=0;
CString resToken = CString(URLINDICATOR).Tokenize(_T("|"), curPos);
while (resToken != _T("")){
if (strMessage.Find(resToken) > (-1) )
return true;
resToken= CString(URLINDICATOR).Tokenize(_T("|"),curPos);
}
}
// second fixed criteria: he sent me 5 or more messages and I didn't answered him once
if (client->GetMessagesReceived() > 4 && client->GetMessagesSent() == 0)
return true;
// to be continued
return false;
}
void CChatSelector::AddTimeStamp(CChatItem* ci)
{
ci->log->AppendText(CTime::GetCurrentTime().Format(_T("[%X] ")));
}
void CChatSelector::OnDestroy()
{
if (m_Timer){
KillTimer(m_Timer);
m_Timer = NULL;
}
CClosableTabCtrl::OnDestroy();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -