📄 chatdoc.h
字号:
// chatdoc.h : interface of the CChatDoc class
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1997 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.
#include "chatsock.h"
#include "Msg.h"
class CChatDoc : public CDocument
{
protected: // create from serialization only
CChatDoc();
DECLARE_DYNCREATE(CChatDoc)
// Attributes
public:
BOOL m_bAutoChat;
CString m_strHandle;
COLORREF clr;
CChatSocket* m_pSocket;
CSocketFile* m_pFile;
CArchive* m_pArchiveIn;
CArchive* m_pArchiveOut;
CMsg msg;
bool refuse;
bool allowshow;
CString stime;
// Operations
public:
BOOL ConnectSocket(LPCTSTR lpszHandle, LPCTSTR lpszAddress, UINT nPort);
void ProcessPendingRead();
void SendMsg();
void ReceiveMsg();
void DisplayMsg(LPCTSTR lpszText);
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CChatDoc)
public:
virtual BOOL OnNewDocument();
virtual void DeleteContents();
//}}AFX_VIRTUAL
// Implementation
public:
bool allclose;
bool m_guolu;
void talk(int type2,CString from1,CString to1,CString str1,CString clr1);
void comset1(CString type1,CString from1);
void DisplayRecMsg(CString type1,CString from1,CString to1,CString sec1,CString str1,CString clr1 );
virtual ~CChatDoc();
virtual void Serialize(CArchive& ar); // overridden for document i/o
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CChatDoc)
//}}AFX_MSG
afx_msg void OnUpdateConnections(CCmdUI* pCmdUI);
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -