📄 systemframe.cpp
字号:
/*
* Copyright (C) 2001-2006 Jacek Sieka, arnetheduck on gmail point com
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "stdafx.h"
#include "../client/DCPlusPlus.h"
#include "Resource.h"
#include "SystemFrame.h"
#include "WinUtil.h"
#include "../client/File.h"
LRESULT SystemFrame::OnCreate(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled)
{
ctrlPad.Create(m_hWnd, rcDefault, NULL, WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN |
WS_VSCROLL | ES_AUTOVSCROLL | ES_MULTILINE | ES_NOHIDESEL, WS_EX_CLIENTEDGE);
ctrlPad.SetReadOnly(TRUE);
ctrlPad.SetFont(WinUtil::font);
ctrlClientContainer.SubclassWindow(ctrlPad.m_hWnd);
deque<pair<time_t, string> > oldMessages = LogManager::getInstance()->getLastLogs();
// Technically, we might miss a message or two here, but who cares...
LogManager::getInstance()->addListener(this);
for(deque<pair<time_t, string> >::iterator i = oldMessages.begin(); i != oldMessages.end(); ++i) {
addLine(i->first, Text::toT(i->second));
}
bHandled = FALSE;
return 1;
}
LRESULT SystemFrame::onClose(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled) {
LogManager::getInstance()->removeListener(this);
bHandled = FALSE;
return 0;
}
void SystemFrame::UpdateLayout(BOOL /*bResizeBars*/ /* = TRUE */)
{
CRect rc;
GetClientRect(rc);
rc.bottom -= 1;
rc.top += 1;
rc.left +=1;
rc.right -=1;
ctrlPad.MoveWindow(rc);
}
LRESULT SystemFrame::onLButton(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM lParam, BOOL& bHandled) {
HWND focus = GetFocus();
bHandled = false;
if(focus == ctrlPad.m_hWnd) {
POINT pt = { GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam) };
tstring x;
tstring::size_type start = (tstring::size_type)WinUtil::textUnderCursor(pt, ctrlPad, x);
tstring::size_type end = x.find(_T(" "), start);
if(end == tstring::npos)
end = x.length();
bHandled = WinUtil::parseDBLClick(x, start, end);
}
return 0;
}
LRESULT SystemFrame::onSpeaker(UINT /*uMsg*/, WPARAM wParam, LPARAM /*lParam*/, BOOL& /*bHandled*/) {
auto_ptr<pair<time_t, tstring> > msg((pair<time_t, tstring>*)wParam);
addLine(msg->first, msg->second);
if(BOOLSETTING(BOLD_SYSTEM_LOG))
setDirty();
return 0;
}
void SystemFrame::addLine(time_t t, const tstring& msg) {
if(ctrlPad.GetWindowTextLength() > 25000) {
// We want to limit the buffer to 25000 characters...after that, w95 becomes sad...
ctrlPad.SetRedraw(FALSE);
ctrlPad.SetSel(0, ctrlPad.LineIndex(ctrlPad.LineFromChar(2000)), TRUE);
ctrlPad.ReplaceSel(_T(""));
ctrlPad.SetRedraw(TRUE);
}
ctrlPad.AppendText((Text::toT("\r\n[" + Util::getShortTimeString(t) + "] ") + msg).c_str());
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -