📄 mymessengerdlg.h
字号:
// MyMessengerDlg.h : header file
//
#if !defined(AFX_MYMESSENGERDLG_H__C049691E_CF1F_4904_9489_32588FF75A49__INCLUDED_)
#define AFX_MYMESSENGERDLG_H__C049691E_CF1F_4904_9489_32588FF75A49__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// CMyMessengerDlg dialog
#include "MySocket.h"
class CMyMessengerDlg : public CDialog
{
// Construction
public:
void GetIPAddress();
void OnClose();
void OnReceive();
void OnSend();
void OnAccept();
void OnOK();
CMyMessengerDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CMyMessengerDlg)
enum { IDD = IDD_MYMESSENGER_DIALOG };
CButton m_breceive;
CButton m_bclose;
CListBox m_lreceived;
CListBox m_lsent;
CButton m_bconnect;
CString m_emsg;
CString m_address;
int m_port;
int m_itype;
CString m_ipaddress;
int m_ftype;
CString m_sendfilename;
CString m_receivefilename;
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMyMessengerDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
private:
CString LocalIPAddress;
char LocalHostName[256];
class MySocket m_ConnectSocket,m_ListenSocket;
//为对话框定义两个Socket
// Generated message map functions
//{{AFX_MSG(CMyMessengerDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnRType();
afx_msg void OnBconnect();
afx_msg void OnBsend();
afx_msg void OnBclose();
afx_msg void OnServer();
afx_msg void OnSendfile();
afx_msg void OnBreceive();
afx_msg void OnBaddsendfile();
afx_msg void OnAddreceivefile();
afx_msg void OnMessagetype();
afx_msg void OnBsendfile();
afx_msg void OnFiletype();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MYMESSENGERDLG_H__C049691E_CF1F_4904_9489_32588FF75A49__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -