-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChildView.h
More file actions
75 lines (63 loc) · 1.46 KB
/
ChildView.h
File metadata and controls
75 lines (63 loc) · 1.46 KB
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
// ChildView.h : interface of the CChildView class
//
#pragma once
#include "TermLog.h"
#define IDC_TERMLOG 1
// CChildView window
class CChildView : public CWnd
{
// Construction
public:
CChildView();
// Attributes
public:
// Operations
public:
// Overrides
protected:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
// Implementation
public:
virtual ~CChildView();
void ConfigInProgress(bool bFlag);
private:
CTermLog *m_pwndTermLog;
CPoint m_ptScreen;
CPoint m_ptMargin;
int CreateTermCtrl();
// Generated message map functions
protected:
afx_msg void OnPaint();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
public:
afx_msg void OnViewOptions();
public:
afx_msg void OnFileLogRawData();
public:
afx_msg void OnViewLogOutput();
public:
afx_msg void OnUpdateViewLogoutput(CCmdUI *pCmdUI);
public:
afx_msg void OnUpdateFileLograwdata(CCmdUI *pCmdUI);
public:
afx_msg void OnUpdateViewShowOutput(CCmdUI *pCmdUI);
public:
afx_msg void OnUpdateViewShowBinary(CCmdUI *pCmdUI);
public:
afx_msg void OnViewShowOutput();
public:
afx_msg void OnViewShowBinary();
public:
afx_msg void OnCopyAll();
afx_msg void OnCopySelected();
afx_msg void OnClearScreen();
afx_msg void OnClearHistory();
afx_msg void OnPaste();
afx_msg void OnSendFile();
afx_msg void OnUpdateCommandCopySelected(CCmdUI *pCmdUI);
afx_msg void OnClose();
afx_msg void OnFileReceivefile();
};