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

📄 cfont.h

📁 PGP8.0源码 请认真阅读您的文件包然后写出其具体功能
💻 H
字号:
/*____________________________________________________________________________
		Copyright (C) 2002 PGP Corporation
        All rights reserved.

        $Id: CFont.h,v 1.4 2002/08/06 20:10:46 dallen Exp $
____________________________________________________________________________*/

#ifndef Included_CFont_h	// [
#define Included_CFont_h

#include "pgpClassesConfig.h"

_PGP_BEGIN

// Class CFont

class CFont
{
	NOT_COPYABLE(CFont)

public:
	CFont();
	CFont(HFONT font);
	CFont(const LOGFONT& logFont);
	~CFont();

	CFont&	operator=(HFONT font);

	operator HFONT() const {return mFont;}
	HFONT	Get() const {return mFont;}

	void	GetLogFont(LOGFONT& logFont) const;

	PGPBoolean	IsAttached() const;
	PGPBoolean	WeCreated() const {return mWeCreated;}

	void	CreateIndirect(const LOGFONT& logFont);
	void	Attach(HFONT font);
	void	Clear();

private:
	PGPBoolean	mWeCreated;
	HFONT		mFont;
};


// Class CFont member functions

inline 
CFont::CFont() : mWeCreated(FALSE), mFont(NULL)
{
}

inline 
CFont::CFont(HFONT font) : mWeCreated(FALSE), mFont(NULL)
{
	Attach(font);
}

inline 
CFont::CFont(const LOGFONT& logFont) : mWeCreated(FALSE), mFont(NULL)
{
	CreateIndirect(logFont);
}

inline 
CFont::~CFont()
{
	try
	{
		Clear();
	}
	catch (CComboError&) { }
}

inline 
CFont& 
CFont::operator=(HFONT font)
{
	Attach(font);
	return *this;
}

inline 
void 
CFont::GetLogFont(LOGFONT& logFont) const
{
	if (GetObject(mFont, sizeof(logFont), &logFont) == 0)
		THROW_PGPERROR(kPGPError_GraphicsOpFailed);
}

inline 
PGPBoolean 
CFont::IsAttached() const
{
	return IsntNull(mFont);
}

inline 
void 
CFont::CreateIndirect(const LOGFONT& logFont)
{
	Clear();
	mFont = CreateFontIndirect(&logFont);

	if (IsNull(mFont))
		THROW_ERRORS(kPGPError_GraphicsOpFailed, GetLastError());

	mWeCreated = TRUE;
}

inline 
void 
CFont::Attach(HFONT font)
{
	if (mFont == font)
		return;

	Clear();

	mWeCreated = FALSE;
	mFont = font;
}

inline 
void 
CFont::Clear()
{
	if (WeCreated())
		DeleteObject(mFont);

	mWeCreated = FALSE;
	mFont = NULL;
}

_PGP_END

#endif	// ] Included_CFont_h

⌨️ 快捷键说明

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