📄 resorghtmldoc.cpp
字号:
/************************************************************************
*
* Resource ID Organiser Utility Library
*
* (c) Copyright 2000 by Andy Metcalfe (andy.metcalfe@lineone.net)
* All rights reserved.
*
************************************************************************
*
* Filename : ResOrgHtmlDoc.cpp
*
* Description : CResOrgHtmlDoc - document class for a hosting
* the "ResOrg on the web" HTML view
*
* Compiler : Microsoft Visual C++ 6.0, Service Pack 3 or 4
*
* Target
* Environment : Windows 98/NT
*
* NOTE:
*
* This software is provided "as is" free for personal use. All
* title and copyrights in and to the software, including but not
* limited to any images, text, etc. incorporated into it, are
* owned by Andy Metcalfe, except where acknowledged otherwise.
*
* Your may freely to use this code in your own products, PROVIDED
* this notice is not removed or modified.
*
*
* Visit http://www.resorg.co.uk for latest updates
*
************************************************************************
*
* MODIFICATION HISTORY:
*
* This is a controlled document. See project configuration
* control tool for latest version and full version history.
*
* $Archive: /Projects/AddIns/ResOrg/ResOrgUtils/ResOrgHtmlDoc.cpp $
* $Revision: 2 $
* $Date: 26/05/01 15:22 $
* $Author: Andy $
*
* $History: ResOrgHtmlDoc.cpp $
*
* ***************** Version 2 *****************
* User: Andy Date: 26/05/01 Time: 15:22
* Updated in $/Projects/AddIns/ResOrg/ResOrgUtils
* Added CResOrgHtmlView to allow the view's ID to be changed (for help
* support)
*
* ***************** Version 1 *****************
* User: Andy Date: 5/12/00 Time: 20:33
* Created in $/Projects/AddIns/ResOrg/ResOrgUtils
*
*
* $Nokeywords: $
*
************************************************************************/
// ResOrgHtmlDoc.cpp : implementation of the CResOrgHtmlDoc class
//
#include "StdAfx.h"
#include "ResOrgUtils_Res.h"
#include "ResOrgHtmlDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CResOrgHtmlDoc
IMPLEMENT_DYNCREATE(CResOrgHtmlDoc, CResOrgHtmlDoc_BASE)
BEGIN_MESSAGE_MAP(CResOrgHtmlDoc, CResOrgHtmlDoc_BASE)
//{{AFX_MSG_MAP(CResOrgHtmlDoc)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CResOrgHtmlDoc construction/destruction
CResOrgHtmlDoc::CResOrgHtmlDoc(void)
{
}
CResOrgHtmlDoc::~CResOrgHtmlDoc(void)
{
}
/////////////////////////////////////////////////////////////////////////////
// CResOrgHtmlDoc overrides
/////////////////////////////////////////////////////////////////////////////
// CResOrgHtmlDoc serialization
/////////////////////////////////////////////////////////////////////////////
// CResOrgHtmlDoc diagnostics
#ifdef _DEBUG
void CResOrgHtmlDoc::AssertValid(void) const
{
CResOrgHtmlDoc_BASE::AssertValid();
}
void CResOrgHtmlDoc::Dump(CDumpContext& dc) const
{
CResOrgHtmlDoc_BASE::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CResOrgHtmlDoc commands
IMPLEMENT_DYNCREATE(CResOrgHtmlView, CHtmlView)
BEGIN_MESSAGE_MAP(CResOrgHtmlView, CHtmlView)
//{{AFX_MSG_MAP(CResOrgSymbolsListView)
//}}AFX_MSG_MAP
// The following are outside of ClassWizard's reach as it can't understand
// them....
ON_MESSAGE( WM_HELPHITTEST, OnHelpHitTest)
END_MESSAGE_MAP()
LRESULT CResOrgHtmlView::OnHelpHitTest(WPARAM, LPARAM)
{
return IDR_DISPLAY_WEB + HID_BASE_RESOURCE;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -