📄 clientdlg.h
字号:
// ClientDlg.h : header file
//
#if !defined(AFX_CLIENTDLG_H__51438AE8_8379_4325_954E_AAFAFC56B250__INCLUDED_)
#define AFX_CLIENTDLG_H__51438AE8_8379_4325_954E_AAFAFC56B250__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// CClientDlg dialog
#include"ChattingDlg.h"
#include"msg.h"
#include"Connect.h"
#include"ChatSocket.h"
class CChatSocket;
struct OnlineNode{
CString username;
int seq;
};
struct DestNode{
CString username;
//CChattingDlg* pchatdlg;
int seq;
};
class CClientDlg : public CDialog
{
// Construction
public:
int seq;
void delconnection();
void delonline(int num);
void addonline();
void showmsg();
void msginterpreter();
void readall();
void receivemsg();
void sendmsg();
bool ConnectToServer(LPCTSTR name,LPCSTR ipaddr);
CClientDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CClientDlg)
enum { IDD = IDD_CLIENT_DIALOG };
CButton m_send;
CListBox m_chatcontent;
CComboBox m_namelist;
CButton m_chat;
CString m_selected;
CString m_readymsg;
CString m_yourname;
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CClientDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
DestNode destchatter;
int nIndex;
CPtrList m_onlinelist;
//CChattingDlg chattingdlg;
//bool chatting;
bool connected;
HICON m_hIcon;
CMsg msg;
CArchive* m_pout;
CArchive* m_pin;
CSocketFile* m_pfile;
CChatSocket* m_psocket;
CString m_pname;
// Generated message map functions
//{{AFX_MSG(CClientDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnSelchangeOnline();
afx_msg void OnChat();
afx_msg void OnQuit();
afx_msg void OnSend();
afx_msg void OnDestroy();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_CLIENTDLG_H__51438AE8_8379_4325_954E_AAFAFC56B250__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -