exploretool.cpp

来自「离线的RSS阅读器」· C++ 代码 · 共 71 行

CPP
71
字号
// ExploreTool.cpp : implementation file
//

#include "stdafx.h"
#include "DiamondReader.h"
#include "ExploreTool.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CExploreTool

IMPLEMENT_DYNCREATE(CExploreTool, CFormView)

CExploreTool::CExploreTool()
	: CFormView(CExploreTool::IDD)
{
	//{{AFX_DATA_INIT(CExploreTool)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}

CExploreTool::~CExploreTool()
{
}

void CExploreTool::DoDataExchange(CDataExchange* pDX)
{
	CFormView::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CExploreTool)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CExploreTool, CFormView)
	//{{AFX_MSG_MAP(CExploreTool)
	//}}AFX_MSG_MAP
	ON_WM_MOUSEMOVE()
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CExploreTool diagnostics

#ifdef _DEBUG
void CExploreTool::AssertValid() const
{
	CFormView::AssertValid();
}

void CExploreTool::Dump(CDumpContext& dc) const
{
	CFormView::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CExploreTool message handlers


void CExploreTool::OnMouseMove(UINT nFlags, CPoint point){
	//AfxMessageBox("");
}

void CExploreTool::OnNcMouseMove(UINT nHitTest, CPoint point){
	//AfxMessageBox("");
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?