This repository has been archived by the owner on Mar 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLTPInspectors.h
130 lines (99 loc) · 2.82 KB
/
LTPInspectors.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#pragma once
#include "customcontrols.h"
#include "afxwin.h"
#include "NDBViewChildDlg.h"
#include "afxcmn.h"
// HNInspector dialog
class HNInspector : public CNDBViewChildDlg
{
DECLARE_DYNAMIC(HNInspector)
public:
HNInspector(NID nidParent, NID nid, LTPViewer * pLTPViewer, CNDBViewDlg * pNDBViewDlg, CWnd* pParent = NULL);
virtual ~HNInspector();
// Dialog Data
enum { IDD = IDD_HN_INSPECTOR };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
public:
CFileRangeControl m_frc;
public:
CListBox m_pageList;
public:
CListBox m_allocationList;
private:
LTPViewer * m_pLTPViewer;
NID m_nidParent;
NID m_nid;
virtual BOOL OnInitDialog();
afx_msg void OnLbnSelchangeList2();
afx_msg void OnLbnDblclkList2();
afx_msg void OnLbnDblclkList4();
afx_msg void OnLbnSelchangeList4();
};
#pragma once
// BTHInspector dialog
class BTHInspector : public CNDBViewChildDlg
{
DECLARE_DYNAMIC(BTHInspector)
public:
BTHInspector(NID nidParent, NID nid, HID hidRoot, LTPViewer * pLTPViewer, CNDBViewDlg * pNDBViewDlg, CWnd* pParent = NULL); virtual ~BTHInspector();
// Dialog Data
enum { IDD = IDD_BTH_INSPECTOR };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
private:
LTPViewer * m_pLTPViewer;
NID m_nidParent;
NID m_nid;
HID m_hidRoot;
CFileRangeControl m_frc;
CImageList m_il;
CTreeCtrl m_tree;
virtual BOOL OnInitDialog();
afx_msg void OnNMDblclkTree1(NMHDR *pNMHDR, LRESULT *pResult);
};
#pragma once
// IndexRootInspector dialog
class IndexRootInspector : public CNDBViewChildDlg
{
DECLARE_DYNAMIC(IndexRootInspector)
public:
IndexRootInspector(NID nid, LTPViewer * pLTPViewer, CNDBViewDlg * pNDBViewDlg, CWnd* pParent = NULL); // standard constructor
virtual ~IndexRootInspector();
// Dialog Data
enum { IDD = IDD_INDEXROOT };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
private:
LTPViewer * m_pLTPViewer;
NID m_nid;
virtual BOOL OnInitDialog();
CTreeCtrl m_tree;
afx_msg void OnNMDblclkTree1(NMHDR *pNMHDR, LRESULT *pResult);
};
#pragma once
// PCInspector dialog
class PCInspector : public CNDBViewChildDlg
{
DECLARE_DYNAMIC(PCInspector)
public:
PCInspector(NID nidParent, NID nid, LTPViewer * pLTPViewer, CNDBViewDlg * pNDBViewDlg, CWnd* pParent = NULL); // standard constructor
virtual ~PCInspector();
// Dialog Data
enum { IDD = IDD_PC_INSPECTOR };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
NID m_nidParent;
NID m_nid;
LTPViewer * m_pLTPViewer;
DECLARE_MESSAGE_MAP()
public:
CFileRangeControl m_frc;
public:
virtual BOOL OnInitDialog();
public:
CListCtrl m_lc;
};