📄 xhtmldrawlink.h
字号:
// XHtmlDrawLink.h Version 1.2 - article available at www.codeproject.com
//
// Author: Hans Dietrich
// hdietrich@gmail.com
//
// License:
// This software is released into the public domain. You are free to use
// it in any way you like, except that you may not sell this source code.
//
// This software is provided "as is" with no expressed or implied warranty.
// I accept no liability for any damage or loss of business that this
// software may cause.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef XHTMLDRAWLINK_H
#define XHTMLDRAWLINK_H
#include "XHtmlDraw.h"
class CXHtmlDrawLink
{
// ctor
public:
CXHtmlDrawLink();
virtual ~CXHtmlDrawLink();
// Operations
public:
BOOL GotoURL(LPCTSTR url, int showcmd, LPARAM lParam);
BOOL ProcessAppCommand(LPCTSTR lpszCommand, LPARAM lParam);
void SetAppCommands(CXHtmlDraw::XHTMLDRAW_APP_COMMAND * paAppCommands,
int nAppCommands);
BOOL SetLinkCursor();
// Implementation
protected:
HCURSOR m_hLinkCursor; // cursor for links
int m_nAppCommands;
CXHtmlDraw::XHTMLDRAW_APP_COMMAND * m_paAppCommands;
LONG GetRegKey(HKEY key, LPCTSTR subkey, LPTSTR lpData);
void SetDefaultCursor();
};
#endif //XHTMLDRAWLINK_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -