summaryrefslogtreecommitdiffabout
path: root/RequestDlg.h
Unidiff
Diffstat (limited to 'RequestDlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--RequestDlg.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/RequestDlg.h b/RequestDlg.h
new file mode 100644
index 0000000..fcd2d20
--- a/dev/null
+++ b/RequestDlg.h
@@ -0,0 +1,63 @@
1// RequestDlg.h : header file
2//
3
4/////////////////////////////////////////////////////////////////////////////
5// CRequestDlg dialog
6
7class CRequestDlg : public CDialog
8{
9// Construction
10public:
11 UINT m_BSize;
12 static CString m_MRUHost;
13 BOOL m_Drop;
14 virtual BOOL PreTranslateMessage(MSG* pMsg);
15 void UpdateOK();
16 void SyncNames();
17 BOOL m_Put;
18 CRequestDlg(CWnd* pParent = NULL); // standard constructor
19
20// Dialog Data
21 //{{AFX_DATA(CRequestDlg)
22 enum { IDD = IDD_REQUEST };
23 CEditm_RemoteFileCtl;
24 CEditm_LocalFileCtl;
25 CButtonm_RefreshCtl;
26 CButtonm_OKCtl;
27 CComboBoxm_TalksCtl;
28 CButtonm_BrowseCtl;
29 CStringm_Host;
30 CStringm_LocalFile;
31 CStringm_RemoteFile;
32 CStringm_Type;
33 CStringm_strBSize;
34 //}}AFX_DATA
35
36
37// Overrides
38 // ClassWizard generated virtual function overrides
39 //{{AFX_VIRTUAL(CRequestDlg)
40 public:
41 virtual int DoModal();
42 protected:
43 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
44 //}}AFX_VIRTUAL
45
46// Implementation
47protected:
48 CToolTipCtrl m_tooltip;
49
50 // Generated message map functions
51 //{{AFX_MSG(CRequestDlg)
52 virtual BOOL OnInitDialog();
53 afx_msg void OnRefresh();
54 afx_msg void OnBrowse();
55 afx_msg void OnChangeLocalfile();
56 afx_msg void OnChangeRemotefile();
57 afx_msg void OnEditchangeTalks();
58 afx_msg void OnSelchangeTalks();
59 afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
60 afx_msg void OnDropFiles(HDROP hDropInfo);
61 //}}AFX_MSG
62 DECLARE_MESSAGE_MAP()
63};