www.pudn.com > DrawTextS.rar > DropShadowEffectTextView.h
// DropShadowEffectTextView.h : CDropShadowEffectTextView 类的接口
//
#pragma once
class CDropShadowEffectTextView : public CView
{
protected: // 仅从序列化创建
CDropShadowEffectTextView();
DECLARE_DYNCREATE(CDropShadowEffectTextView)
// 属性
public:
CDropShadowEffectTextDoc* GetDocument() const;
// 操作
public:
// 重写
public:
virtual void OnDraw(CDC* pDC); // 重写以绘制该视图
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
// 实现
public:
virtual ~CDropShadowEffectTextView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// 生成的消息映射函数
protected:
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // DropShadowEffectTextView.cpp 的调试版本
inline CDropShadowEffectTextDoc* CDropShadowEffectTextView::GetDocument() const
{ return reinterpret_cast(m_pDocument); }
#endif