⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 notebookview.h

📁 notbook是VS2005下WinCE6.0记事本源码
💻 H
字号:
// NoteBookView.h : interface of the CNoteBookView class
//
/////////////////////////////////////////////////////////////////////////////
#include "NoteBookDoc.h"
#if !defined(AFX_NOTEBOOKVIEW_H__0C7AEEE5_64ED_4724_9242_60596AE3B6E6__INCLUDED_)
#define AFX_NOTEBOOKVIEW_H__0C7AEEE5_64ED_4724_9242_60596AE3B6E6__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

class CNoteBookView : public CEditView
{
protected: // create from serialization only
	CNoteBookView();
	DECLARE_DYNCREATE(CNoteBookView)

// Attributes
public:
	CNoteBookDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CNoteBookView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	virtual void OnInitialUpdate();
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CNoteBookView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CNoteBookView)
	//}}AFX_MSG
	afx_msg void OnSelendokCombo1();
	DECLARE_MESSAGE_MAP()
public:
	CFont  m_ComboFont;   //////组合框字体
	CFont  m_EditDefaultFont;   //////编辑框字体
	CFont  m_EditSmallFont;
	CFont  m_EditMiddlingFont;
	CFont  m_EditBigFont;
	CString  m_strFilePath; /////当前文件路径	
};

#ifndef _DEBUG  // debug version in NoteBookView.cpp
inline CNoteBookDoc* CNoteBookView::GetDocument()
   { return (CNoteBookDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft eMbedded Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_NOTEBOOKVIEW_H__0C7AEEE5_64ED_4724_9242_60596AE3B6E6__INCLUDED_)

⌨️ 快捷键说明

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