www.pudn.com > fanccMSNr.src.rar > SendView.h
#pragma once
class CChatFrame;
// CSendView ºäÀÔ´Ï´Ù.
class CSendView : public CEditView
{
DECLARE_DYNCREATE(CSendView)
protected:
CChatFrame *frame;
protected:
CSendView(); // µ¿Àû ¸¸µé±â¿¡ »ç¿ëµÇ´Â protected »ý¼ºÀÚÀÔ´Ï´Ù.
virtual ~CSendView();
public:
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
/**
* ÇÁ·¹ÀÓÀ» ¿¬°á½ÃÄÑÁØ´Ù. CSendView°¡ Á¤»óÀÛµ¿Çϱâ À§ÇØ ²À ºÒ·¯Áà¾ß ÇÑ´Ù.
*/
void setFrame(CChatFrame &frame) {
this->frame=&frame;
}
protected:
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnEnChange();
afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
};