blob: fcd2d20e97ff75a895274207c62ec36f12e01bfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// RequestDlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CRequestDlg dialog
class CRequestDlg : public CDialog
{
// Construction
public:
UINT m_BSize;
static CString m_MRUHost;
BOOL m_Drop;
virtual BOOL PreTranslateMessage(MSG* pMsg);
void UpdateOK();
void SyncNames();
BOOL m_Put;
CRequestDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CRequestDlg)
enum { IDD = IDD_REQUEST };
CEdit m_RemoteFileCtl;
CEdit m_LocalFileCtl;
CButton m_RefreshCtl;
CButton m_OKCtl;
CComboBox m_TalksCtl;
CButton m_BrowseCtl;
CString m_Host;
CString m_LocalFile;
CString m_RemoteFile;
CString m_Type;
CString m_strBSize;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CRequestDlg)
public:
virtual int DoModal();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
CToolTipCtrl m_tooltip;
// Generated message map functions
//{{AFX_MSG(CRequestDlg)
virtual BOOL OnInitDialog();
afx_msg void OnRefresh();
afx_msg void OnBrowse();
afx_msg void OnChangeLocalfile();
afx_msg void OnChangeRemotefile();
afx_msg void OnEditchangeTalks();
afx_msg void OnSelchangeTalks();
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
afx_msg void OnDropFiles(HDROP hDropInfo);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
|