-
Notifications
You must be signed in to change notification settings - Fork 1
/
DlgNewImportDescr.h
84 lines (61 loc) · 2.21 KB
/
DlgNewImportDescr.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
79
80
81
82
83
84
/*//////////////////////////////////////////////////////////////////////////////
// Name: dlgwewimportdescr.h
// Purpose: Interface of CDlgNewImportDescr, asks user for name of new import
// description
// Author: Ruediger Herrmann
// Copyright: (c) Ruediger Herrmann
//////////////////////////////////////////////////////////////////////////////*/
#if !defined(AFX_NEWIMPORTDESCR_H__91DA9871_E7D7_4A65_BD83_F769C94F1991__INCLUDED_)
#define AFX_NEWIMPORTDESCR_H__91DA9871_E7D7_4A65_BD83_F769C94F1991__INCLUDED_
#include "resource.h"
#include "ImportParams.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CDlgNewImportDescr : public CDialog {
public:
CDlgNewImportDescr ( CWnd* pParent = NULL );
inline void SetCurrentImportParams ( CImportParams* Value ) { m_CurrentImportParams = Value; };
inline void SetImportDescrList ( CImportParamsList* const Value ) { m_ImportDescrList = Value; };
inline BOOL GetCopyExisting() const { return m_CopyExisting; }
//{{AFX_DATA(CDlgNewImportDescr)
enum { IDD = IDD_NEWIMPORTDESCR };
CButton m_CopyExistingCheckBox;
CString m_Name;
BOOL m_CopyExisting;
//}}AFX_DATA
//{{AFX_VIRTUAL(CDlgNewImportDescr)
public:
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV-Unterstützung
//}}AFX_VIRTUAL
protected:
//{{AFX_MSG(CDlgNewImportDescr)
afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
CImportParamsList* m_ImportDescrList;
CImportParams* m_CurrentImportParams;
void BuildDefaultName();
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ fügt unmittelbar vor der vorhergehenden Zeile zusätzliche Deklarationen ein.
#endif // AFX_NEWIMPORTDESCR_H__91DA9871_E7D7_4A65_BD83_F769C94F1991__INCLUDED_
/*
#pragma once
// CDlgNewImportDescr dialog
class CDlgNewImportDescr : public CDialog
{
DECLARE_DYNAMIC(CDlgNewImportDescr)
public:
CDlgNewImportDescr(CWnd* pParent = NULL); // standard constructor
virtual ~CDlgNewImportDescr();
// Dialog Data
enum { IDD = IDD_NEWIMPORTDESCR };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
};
*/