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

📄 text.h

📁 Embedded VC “是男人就挺过二十秒”源代码
💻 H
字号:
/**////////////////////////////////////////////////////////////////////////
// Text.h: interface for the CText class.
//
//Version: 
//    1.0
//Data:
//    2007.03.27   
/**///////////////////////////////////////////////////////////////////////

#ifndef TEXT_H
#define TEXT_H


//------------------------------------------------------------------
class CText  
{
public:
    void GetPosition(RECT * prcOut);
    void SetTextHeight(int iHeight);
    void SetFormat(UINT uFormat);
    void SetBkColor(COLORREF crColor);
    void SetTextColor(COLORREF crColor);
    BOOL SetBkMode(int iMode);
    void Draw(HDC hdc);
    BOOL SetText(const TCHAR *pszText);
    void SetPosition(const RECT *prc);
    CText();
    virtual ~CText();
protected:
    RECT m_rcWndPos;    
    TCHAR *m_pszText;
    ULONG m_ulSizeText;
    UINT m_uFormat;
    int m_iTextHeight;
    int m_iBkMode;
    COLORREF m_crTextColor;
    COLORREF m_crBkColor;
	
};

#endif // #ifndef TEXT_H

⌨️ 快捷键说明

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