📄 urlctrl.h
字号:
//this file is part of notepad++
//Copyright (C)2003 Don HO ( donho@altern.org )
//
//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.
#ifndef URLCTRL_INCLUDED
#define URLCTRL_INCLUDED
#include <windows.h>
#include "Window.h"
/* XOR mask for hand cursor */
/* Generated by HexEdit */
class URLCtrl : public Window
{
public:
URLCtrl():_hfUnderlined(0),_hCursor(0), _oldproc(NULL), \
_linkColor(), _visitedColor(), _clicking(false) {_URL[0] = '\0';};
void create(HWND itemHandle, LPTSTR link, COLORREF linkColor = RGB(0,0,255));
void destroy(){
if(_hfUnderlined)
::DeleteObject(_hfUnderlined);
if(_hCursor)
::DestroyCursor(_hCursor);
};
private :
TCHAR _URL[MAX_PATH];
HFONT _hfUnderlined;
HCURSOR _hCursor;
WNDPROC _oldproc;
COLORREF _linkColor;
COLORREF _visitedColor;
bool _clicking;
static LRESULT CALLBACK URLCtrlProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam){
return ((URLCtrl *)(::GetWindowLong(hwnd, GWL_USERDATA)))->runProc(hwnd, Message, wParam, lParam);
};
LRESULT runProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam);
};
#endif //URLCTRL_INCLUDED
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -