-
Notifications
You must be signed in to change notification settings - Fork 29
/
BtDldSheet.h
57 lines (42 loc) · 1.22 KB
/
BtDldSheet.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
50
51
52
53
54
55
56
57
/*
Free Download Manager Copyright (c) 2003-2016 FreeDownloadManager.ORG
*/
#if !defined(AFX_BTDLDSHEET_H__758A8CA6_C725_4BC9_A4FB_C945B13AF7DD__INCLUDED_)
#define AFX_BTDLDSHEET_H__758A8CA6_C725_4BC9_A4FB_C945B13AF7DD__INCLUDED_
#include "BtDld_General.h"
#include "BtDld_Misc.h"
#include "BtDld_Files.h"
#include "BtDld_Seeding.h"
#if _MSC_VER > 1000
#pragma once
#endif
#define BTDS_GENERAL_PAGE 1
#define BTDS_FILES_PAGE (1 << 1)
#define BTDS_SEEDING_PAGE (1 << 2)
#define BTDS_MISC_PAGE (1 << 3)
#define BTDS_ALL (0xffffffff)
class CBtDldSheet : public CPropertySheet
{
DECLARE_DYNAMIC(CBtDldSheet)
public:
CBtDldSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
CBtDldSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
public:
public:
//{{AFX_VIRTUAL(CBtDldSheet)
//}}AFX_VIRTUAL
public:
CBtDld_Seeding m_seeding;
CBtDld_Files m_files;
CBtDld_Misc m_misc;
BOOL IsNeedUpdateTasks();
void Init (DLDS_LIST* pvDlds, DWORD dwPages = BTDS_ALL);
CBtDld_General m_general;
virtual ~CBtDldSheet();
protected:
//{{AFX_MSG(CBtDldSheet)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
#endif