mainfrm.h

来自「Sunplus DVD 字体文件查看修改工具,只针对Font_ori.c文件!使」· C头文件 代码 · 共 67 行

H
67
字号
//===================================================================================
//
//	模块:	主框架窗口
//
//	版本:	1.00
//
//	日期:	2005-04-14
//
//	作者:	施探宇
//
//	说明:	框架窗口
//
//===================================================================================
#pragma once

#include "ChildView.h"

class CMainFrame : public CFrameWnd
{
	
public:
	CMainFrame();
protected: 
	DECLARE_DYNAMIC(CMainFrame)

// Attributes
public:
	int bSmooth;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	///{{AFX_VIRTUAL(CMainFrame)
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
	//}}AFX_VIRTUAL

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

protected:  // control bar embedded members
	CStatusBar    m_wndStatusBar;
	CChildView    m_wndView;

// Generated message map functions
protected:
	///{{AFX_MSG(CMainFrame)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnSetFocus(CWnd *pOldWnd);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
public:
	afx_msg void OnLanguageCn();
	afx_msg void OnLanguageEn();
	
	// 显示状态栏数据
	int ShowStatuText(CString oText, UINT nID);
};

⌨️ 快捷键说明

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