/
makani
/
strongdc
Обзор
Документация
Войти
/
makani
/
strongdc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
windows/NotepadFrame.cpp
112 строк
3 KB
bigmuscle
updated core
24 июл 2011, 22:28
24 июл 2011, 22:28
172ec44
Код
Авторство
О чём код?
/* * 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 "NotepadFrame.h" #include "WinUtil.h" #include "../client/File.h" LRESULT NotepadFrame::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.LimitText(0); ctrlPad.SetFont(WinUtil::font); string tmp; try { tmp = File(Util::getNotepadFile(), File::READ, File::OPEN).read(); } catch(const FileException&) { // ... } ctrlPad.SetWindowText(Text::toT(tmp).c_str()); ctrlPad.EmptyUndoBuffer(); ctrlClientContainer.SubclassWindow(ctrlPad.m_hWnd); bHandled = FALSE; return 1; } LRESULT NotepadFrame::onClose(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled) { if(!closed) { SettingsManager::getInstance()->removeListener(this); if(dirty || ctrlPad.GetModify()) { tstring tmp; tmp.resize(ctrlPad.GetWindowTextLength()); ctrlPad.GetWindowText(&tmp[0], tmp.size() + 1); try { File(Util::getNotepadFile(), File::WRITE, File::CREATE | File::TRUNCATE).write(Text::fromT(tmp)); } catch(const FileException&) { // Oops... } } closed = true; WinUtil::setButtonPressed(IDC_NOTEPAD, false); PostMessage(WM_CLOSE); return 0; } else { bHandled = FALSE; return 0; } } void NotepadFrame::UpdateLayout(BOOL /*bResizeBars*/ /* = TRUE */) { CRect rc; GetClientRect(rc); rc.bottom -= 1; rc.top += 1; rc.left +=1; rc.right -=1; ctrlPad.MoveWindow(rc); } LRESULT NotepadFrame::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 == string::npos) end = x.length(); bHandled = WinUtil::parseDBLClick(x, start, end); } return 0; } void NotepadFrame::on(SettingsManagerListener::Save, SimpleXML& /*xml*/) noexcept { RedrawWindow(NULL, NULL, RDW_ERASE | RDW_INVALIDATE | RDW_UPDATENOW | RDW_ALLCHILDREN); } /** * @file * $Id$ */