forked from ddehilster/visualtext3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOutputBarList.h
43 lines (32 loc) · 1.05 KB
/
OutputBarList.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
/*******************************************************************************
Copyright (c) 1999-2010 by Text Analysis International, Inc.
All rights reserved.
*******************************************************************************/
#pragma once
// COutputBarList
enum DEBUG_TYPE {
DEBUG_NOOP = 0,
DEBUG_ERROR,
DEBUG_FIND,
DEBUG_PASS_LINE,
DEBUG_RULE,
};
class COutputBarList : public CListCtrl
{
DECLARE_DYNAMIC(COutputBarList)
public:
COutputBarList();
virtual ~COutputBarList();
protected:
DECLARE_MESSAGE_MAP()
private:
void FindInFindTab();
void FindInAnalyzerTab();
DEBUG_TYPE GetSelectedFile(CString &fileStr, CString &findStr, CString &fileOriginStr, int &intVal, int &intVal2);
DEBUG_TYPE GetSelectedFile1(CString &fileStr, CString &findStr, CString &fileOriginStr, int &intVal1, int &intVal2);
private:
afx_msg void OnNMDblclk(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
afx_msg void OnFindmenuClear();
afx_msg void OnFindmenuOpen();
};