movestatic.h

来自「一个完整的数字硬盘录像机系统软件」· C头文件 代码 · 共 58 行

H
58
字号
#ifndef _MOVESTATIC_H_
#define _MOVESTATIC_H_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MoveStatic.h : header file
//
/////////////////////////////////////////////////////////////////////////////
//
/////////////////////////////////////////////////////////////////////////////
class CMoveStatic : public CStatic
{
// Construction
public:
	CMoveStatic();
// Attributes
public:
	#define     DISPLAY_TIMER_ID		150		// timer id
 	CRect       m_ScrollRect,r;		   // rect of Static Text frame
	int         nArrIndex,nCounter;		   // work ints
	CString     m_szWork;			   // holds display line
	BOOL        m_bFirstTime;
	BOOL        m_bDrawText;
	int         nClip;
	int         nCurrentFontHeight;
	CBitmap     m_bmpWork;                  // bitmap holder
	CBitmap* 	pBmpOld;                    // other bitmap work members
	CBitmap*    m_bmpCurrent;
	HBITMAP 	m_hBmpOld;
	CSize 		m_size;                     // drawing helpers
	CPoint 		m_pt;
	BITMAP 		m_bmpInfo;
	CDC 		m_dcMem;
	BOOL 		m_bProcessingBitmap;
	CStringArray m_arArrCredit;
// Operations
public:
    void        Init(); 
	// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMoveStatic)
	public:
	virtual BOOL DestroyWindow();
	//}}AFX_VIRTUAL
// Implementation
public:
	virtual ~CMoveStatic();
	// Generated message map functions
protected:
	//{{AFX_MSG(CMoveStatic)
	afx_msg void OnPaint();
	afx_msg void OnTimer(UINT nIDEvent);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};
#endif

⌨️ 快捷键说明

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