QuakeGod
2022-01-16 326d3e312c74726814c39c9d112faab03c4a167c
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// CDialogEventLog.cpp: 实现文件
//
 
#include "pch.h"
#include "MTerm2.h"
#include "CDialogEventLog.h"
#include "afxdialogex.h"
#include "KLinkDefine.h"
#include "KLink.h"
#include "MTerm2Doc.h"
// CDialogEventLog 对话框
 
IMPLEMENT_DYNAMIC(CDialogEventLog, CDialogEx)
 
CDialogEventLog::CDialogEventLog(CWnd* pParent /*=nullptr*/)
    : CDialogEx(IDD_DIALOG_EVENTLOG, pParent)
{
 
}
 
CDialogEventLog::~CDialogEventLog()
{
}
 
void CDialogEventLog::DoDataExchange(CDataExchange* pDX)
{
    CDialogEx::DoDataExchange(pDX);
    DDX_Control(pDX, IDC_LIST_EVENTLOG, m_list_eventlog);
}
 
 
BEGIN_MESSAGE_MAP(CDialogEventLog, CDialogEx)
    ON_BN_CLICKED(IDC_BUTTON_CLEAR_EVENTLOG, &CDialogEventLog::OnBnClickedButtonClearEventlog)
    ON_BN_CLICKED(IDC_BUTTON_RELOAD, &CDialogEventLog::OnBnClickedButtonReload)
END_MESSAGE_MAP()
 
KLink::stEventLog KEventLogs[20000];
 
// CDialogEventLog 消息处理程序
void CDialogEventLog::OnBnClickedButtonReload()
{
    // TODO: 在此添加控件通知处理程序代码
    GetEventLogStatus();
    UpLoadEventLog();
}
 
void CDialogEventLog::OnBnClickedButtonClearEventlog()
{
    // TODO: 在此添加控件通知处理程序代码
}
 
 
int CDialogEventLog::GetEventLogStatus()
{
    // TODO: 在此处添加实现代码.
    CMDIFrameWnd  *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
    CMDIChildWnd  *pChild = (CMDIChildWnd   *)pFrame->GetActiveFrame();
    CView   *pV = (CView*)pChild->GetActiveView();
    CMTerm2Doc* pDoc = (CMTerm2Doc *)(pV->GetDocument());
 
    int nCount;
    int res = pDoc->MyKLink1.GetEventLogCount(1, &nCount);
    CString s1;
 
    s1.Format(_T("Get EventLogCount Result r=%d  N=%d "), res, nCount);
    SysLog(s1);
    if (res == pDoc->MyKLink1.KL_OK)
    {
        s1.Format(_T("%d"), nCount);
        GetDlgItem(IDC_EDIT_EVENT_COUNT)->SetWindowText(s1);
    }
 
    return 0;
}
 
int CDialogEventLog::UpLoadEventLog()
{
    // TODO: 在此处添加实现代码.
    CMDIFrameWnd  *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
    CMDIChildWnd  *pChild = (CMDIChildWnd   *)pFrame->GetActiveFrame();
    CView   *pV = (CView*)pChild->GetActiveView();
    CMTerm2Doc* pDoc = (CMTerm2Doc *)(pV->GetDocument());
 
    int nCount;
    int res = pDoc->MyKLink1.GetEventLogCount(1, &nCount);
    CString s1;
 
    s1.Format(_T("Get EventLogCount Result r=%d  N=%d "), res, nCount);
    SysLog(s1);
    if (res == pDoc->MyKLink1.KL_OK)
    {
        s1.Format(_T("%d"), nCount);
        GetDlgItem(IDC_EDIT_EVENT_COUNT)->SetWindowText(s1);
    }
    int nStartIndex = 0;
    int nReadCount = 1;
    m_list_eventlog.DeleteAllItems();
    for (int i = 0; i < nCount; i++)
    {
        res = pDoc->MyKLink1.GetEventLog(1, i, nReadCount, &KEventLogs[i]);
        s1.Format(_T(" Get EventLog %d Result r=%d "),i, res);
        s1.AppendFormat(_T("%d %d %d %d %d %d"), KEventLogs[i].Sign1, KEventLogs[i].Seq1, KEventLogs[i].nTime, KEventLogs[i].nType, KEventLogs[i].nParam1, KEventLogs[i].nParam2);
        // SysLog(s1);
        s1.Format(_T("%d"), i);
        m_list_eventlog.InsertItem(i, s1);
        s1.Format(_T("%d"), KEventLogs[i].Seq1);
        m_list_eventlog.SetItemText(i, 1, s1);
 
        s1.Format(_T("%d"), KEventLogs[i].nTime);
        CTime ctime1 = KEventLogs[i].nTime;
        s1 = ctime1.Format(_T("%Y-%m-%d %H:%M:%S"));
 
        m_list_eventlog.SetItemText(i, 2, s1);
        s1.Format(_T("%d"), KEventLogs[i].nType);
        m_list_eventlog.SetItemText(i, 3, s1);
        s1.Format(_T("%d"), KEventLogs[i].nParam1);
        m_list_eventlog.SetItemText(i, 4, s1);
        s1.Format(_T("%d"), KEventLogs[i].nParam2);
        m_list_eventlog.SetItemText(i, 5, s1);
    }
 
    return 0;
}
 
 
BOOL CDialogEventLog::OnInitDialog()
{
    CDialogEx::OnInitDialog();
 
    // TODO:  在此添加额外的初始化
    m_list_eventlog.SetExtendedStyle(LVS_EX_DOUBLEBUFFER | LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES | LVS_EX_ONECLICKACTIVATE | LVS_EX_LABELTIP);
    m_list_eventlog.DeleteAllItems();
    while (m_list_eventlog.DeleteColumn(0));
    m_list_eventlog.InsertColumn(0, _T("NO"), LVCFMT_LEFT, 32, -1);//LVCFMT_LEFT, LVCFMT_RIGHT, or LVCFMT_CENTER
    m_list_eventlog.InsertColumn(1, _T("序列号"), LVCFMT_LEFT, 48, -1);//LVCFMT_LEFT, LVCFMT_RIGHT, or LVCFMT_CENTER
    m_list_eventlog.InsertColumn(2, _T("时间"), LVCFMT_LEFT, 128, -1);//LVCFMT_LEFT, LVCFMT_RIGHT, or LVCFMT_CENTER
    m_list_eventlog.InsertColumn(3, _T("类型"), LVCFMT_LEFT, 64, -1);//LVCFMT_LEFT, LVCFMT_RIGHT, or LVCFMT_CENTER
    m_list_eventlog.InsertColumn(4, _T("数据1"), LVCFMT_LEFT, 128, -1);//LVCFMT_LEFT, LVCFMT_RIGHT, or LVCFMT_CENTER
    m_list_eventlog.InsertColumn(5, _T("数据2"), LVCFMT_LEFT, 128, -1);//LVCFMT_LEFT, LVCFMT_RIGHT, or LVCFMT_CENTER
 
    GetEventLogStatus();
    UpLoadEventLog();
    return TRUE;  // return TRUE unless you set the focus to a control
                  // 异常: OCX 属性页应返回 FALSE
}