forked from svn2github/FDM
-
Notifications
You must be signed in to change notification settings - Fork 4
/
DlgDL.h
49 lines (37 loc) · 949 Bytes
/
DlgDL.h
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
/*
Free Download Manager Copyright (c) 2003-2016 FreeDownloadManager.ORG
*/
#if !defined(AFX_DLGDL_H__D4E5F35D_B01D_4814_B022_CC8A7FA9FA90__INCLUDED_)
#define AFX_DLGDL_H__D4E5F35D_B01D_4814_B022_CC8A7FA9FA90__INCLUDED_
#include "fsDownloadMgr.h"
#if _MSC_VER > 1000
#pragma once
#endif
class CDlgDL : public CDialog
{
public:
bool m_bCancelled;
bool m_bSucceeded;
CString m_strFile;
CString m_strUrl;
CString m_strDlName;
CDlgDL(CWnd* pParent = NULL);
//{{AFX_DATA(CDlgDL)
enum { IDD = IDD_DL };
CProgressCtrl m_wndProgress;
//}}AFX_DATA
//{{AFX_VIRTUAL(CDlgDL)
protected:
virtual void DoDataExchange(CDataExchange* pDX);
//}}AFX_VIRTUAL
protected:
fsDownloadMgr m_dldr;
//{{AFX_MSG(CDlgDL)
virtual BOOL OnInitDialog();
afx_msg void OnTimer(UINT nIDEvent);
virtual void OnCancel();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
#endif