-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathErrorBar.h
75 lines (58 loc) · 2.3 KB
/
ErrorBar.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
/*===========================================================================
*
* File: Errorbar.H
* Author: Dave Humphrey ([email protected])
* Created On: September 10, 2006
*
* Description
*
*=========================================================================*/
#ifndef __ERRORBAR_H
#define __ERRORBAR_H
/*===========================================================================
*
* Begin Required Includes
*
*=========================================================================*/
/*===========================================================================
* End of Required Includes
*=========================================================================*/
/*===========================================================================
*
* Begin Class CSrErrorBar Definition
*
*=========================================================================*/
class CSrErrorBar : public CSizingControlBarCF {
/*---------- Protected Class Members -----------------------*/
protected:
CRichEditCtrl m_wndChild;
CFont m_font;
CHARFORMAT m_BoldFormat;
CHARFORMAT m_DefaultFormat;
HACCEL m_hAccelerator;
/*---------- Public Class Members --------------------------*/
public:
/* Constructor/Destructor */
CSrErrorBar();
virtual ~CSrErrorBar();
/* Add a line of text to the end of the error bar */
void AddText (const TCHAR* pString);
void AddBoldText (const TCHAR* pString);
CRichEditCtrl& GetRichEdit (void) { return m_wndChild; }
protected:
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnUpdateErrorbarCopy(CCmdUI *pCmdUI);
afx_msg void OnErrorbarCopy();
afx_msg void OnContextMenu(CWnd* pWnd, CPoint Point);
virtual BOOL PreTranslateMessage(MSG* pMsg);
afx_msg void OnErrorCopy();
afx_msg void OnInitMenuPopup(CMenu* pPopupMenu, UINT nIndex, BOOL bSysMenu);
DECLARE_MESSAGE_MAP();
};
/*===========================================================================
* End of Class CSrErrorBar Definition
*=========================================================================*/
#endif
/*===========================================================================
* End of File Errorbar.H
*=========================================================================*/