-
Notifications
You must be signed in to change notification settings - Fork 1
/
DlgImportStatus.h
78 lines (56 loc) · 1.6 KB
/
DlgImportStatus.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*//////////////////////////////////////////////////////////////////////////////
// Name: dlgimportstatus.h
// Purpose: Interfaceof CDlgImportStatus, displays error-messages when import
// (partly) fails
// Author: Ruediger Herrmann
// Copyright: (c) Ruediger Herrmann
//////////////////////////////////////////////////////////////////////////////*/
#if !defined( _DLGIMPORTSTATUS_H_ )
#define _DLGIMPORTSTATUS_H_
#include "resource.h"
#include "import.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CDlgImportStatus : public CDialog
{
public:
CDlgImportStatus(CWnd* pParent = NULL);
//{{AFX_DATA(CDlgImportStatus)
enum { IDD = IDD_IMPORTSTATUS };
CStatic m_ErrorIcon;
CListCtrl m_MessagesList;
//}}AFX_DATA
//{{AFX_VIRTUAL(CDlgImportStatus)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV-Unterstützung
//}}AFX_VIRTUAL
public:
void UpdateColumnWidths();
void SetMessages ( const CImportErrorList& Value );
protected:
//{{AFX_MSG(CDlgImportStatus)
virtual BOOL OnInitDialog();
afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
CImportErrorList m_Messages;
};
#endif /* _DLGIMPORTSTATUS_H_ */
/*
#pragma once
// CDlgImportStatus dialog
class CDlgImportStatus : public CDialog
{
DECLARE_DYNAMIC(CDlgImportStatus)
public:
CDlgImportStatus(CWnd* pParent = NULL); // standard constructor
virtual ~CDlgImportStatus();
// Dialog Data
enum { IDD = IDD_IMPORTSTATUS };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
};
*/