-
Notifications
You must be signed in to change notification settings - Fork 5
/
ErrorBar.cpp
234 lines (186 loc) · 7.17 KB
/
ErrorBar.cpp
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/*===========================================================================
*
* File: Errorbar.CPP
* Author: Dave Humphrey ([email protected])
* Created On: 26 November 2011
*
* Implements the dockable error control bar in the main frame.
*
*=========================================================================*/
/* Include Files */
#include "stdafx.h"
#include "resource.h"
#include "errorbar.h"
#include "sredit.h"
/*===========================================================================
*
* Begin Local Definitions
*
*=========================================================================*/
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/*===========================================================================
* End of Local Definitions
*=========================================================================*/
/*===========================================================================
*
* Begin CSrErrorBar Message Map
*
*=========================================================================*/
BEGIN_MESSAGE_MAP(CSrErrorBar, CSizingControlBarG)
ON_WM_INITMENUPOPUP()
ON_WM_CREATE()
ON_WM_CONTEXTMENU()
ON_COMMAND(ID_ERRORBAR_COPY, OnErrorbarCopy)
ON_UPDATE_COMMAND_UI(ID_ERRORBAR_COPY, OnUpdateErrorbarCopy)
ON_COMMAND(ID_ERROR_COPY, OnErrorbarCopy)
END_MESSAGE_MAP()
/*===========================================================================
* End of CSrErrorBar Message Map
*=========================================================================*/
/*===========================================================================
*
* Class CSrErrorBar Constructor
*
*=========================================================================*/
CSrErrorBar::CSrErrorBar() {
m_BoldFormat.cbSize = sizeof(this);
m_BoldFormat.dwMask = CFM_BOLD;
m_BoldFormat.dwEffects = CFE_BOLD;
m_hAccelerator = LoadAccelerators(AfxGetApp()->m_hInstance, MAKEINTRESOURCE(IDR_ERRORBAR_ACCEL));
}
/*===========================================================================
* End of Class CSrErrorBar Constructor
*=========================================================================*/
/*===========================================================================
*
* Class CSrErrorBar Destructor
*
*=========================================================================*/
CSrErrorBar::~CSrErrorBar() {
}
/*===========================================================================
* End of Class CSrErrorBar Destructor
*=========================================================================*/
/*===========================================================================
*
* Class CSrErrorBar Method - void AddText (pString);
*
* Add a line of text to the end of the error log.
*
*=========================================================================*/
void CSrErrorBar::AddText (const TCHAR* pString) {
int Length;
if (pString == NULL) return;
Length = m_wndChild.GetWindowTextLength();
if (Length > 60000) {
m_wndChild.SetSel(0, 10000);
m_wndChild.ReplaceSel(_T(""), FALSE);
Length = m_wndChild.GetWindowTextLength();
}
m_wndChild.SetSel(Length, Length);
m_wndChild.ReplaceSel(pString, FALSE);
Length = m_wndChild.GetWindowTextLength();
m_wndChild.SetSel(Length, Length);
m_wndChild.ReplaceSel(_T("\r\n"), FALSE);
m_wndChild.SetSelectionCharFormat(m_DefaultFormat);
m_wndChild.SetFont(&m_font);
}
/*===========================================================================
* End of Class Method CSrErrorBar::AddText()
*=========================================================================*/
/*===========================================================================
*
* Class CSrErrorBar Method - void AddBoldText (pString);
*
* Add a line of bolded text to the end of the error log.
*
*=========================================================================*/
void CSrErrorBar::AddBoldText (const TCHAR* pString) {
int Length;
if (pString == NULL) return;
Length = m_wndChild.GetWindowTextLength();
if (Length > 60000) {
m_wndChild.SetSel(0, 10000);
m_wndChild.ReplaceSel(_T(""), FALSE);
Length = m_wndChild.GetWindowTextLength();
}
m_wndChild.SetSel(Length, Length);
m_wndChild.ReplaceSel(pString, FALSE);
m_wndChild.SetSel(Length, Length + strlen(pString));
m_wndChild.SetSelectionCharFormat(m_BoldFormat);
Length = m_wndChild.GetWindowTextLength();
m_wndChild.SetSel(Length, Length);
m_wndChild.ReplaceSel(_T("\r\n"), FALSE);
m_wndChild.SetSel(Length, Length+2);
m_wndChild.SetSelectionCharFormat(m_DefaultFormat);
}
/*===========================================================================
* End of Class Method CSrErrorBar::AddBoldText()
*=========================================================================*/
/*===========================================================================
*
* Class CSrErrorBar Event - int OnCreate (lpCreateStruct);
*
*=========================================================================*/
int CSrErrorBar::OnCreate(LPCREATESTRUCT lpCreateStruct) {
if (CSizingControlBarG::OnCreate(lpCreateStruct) == -1) return -1;
SetSCBStyle(GetSCBStyle() | SCBS_SIZECHILD);
if (!m_wndChild.Create(WS_CHILD|WS_VISIBLE|
ES_MULTILINE|ES_WANTRETURN|ES_AUTOHSCROLL|ES_READONLY|WS_VSCROLL,
CRect(0,0,0,0), this, 123)) {
return -1;
}
m_wndChild.ModifyStyleEx(0, WS_EX_CLIENTEDGE);
if (!m_font.CreateStockObject(DEFAULT_GUI_FONT)) {
if (!m_font.CreatePointFont(80, "MS Sans Serif")) {
return -1;
}
}
m_wndChild.SetBackgroundColor(FALSE, RGB(212,208,200));
m_wndChild.GetDefaultCharFormat(m_DefaultFormat);
m_wndChild.SetFont(&m_font);
return 0;
}
/*===========================================================================
* End of Class Event CSrErrorBar::OnCreate()
*=========================================================================*/
void CSrErrorBar::OnContextMenu(CWnd* pWnd, CPoint Point)
{
CMenu Menu;
CMenu* pSubMenu;
int Result;
Result = Menu.LoadMenu(IDR_ERRORBAR_MENU);
if (!Result) return;
pSubMenu = Menu.GetSubMenu(0);
if (pSubMenu == NULL) return;
pSubMenu->TrackPopupMenu(TPM_LEFTALIGN | TPM_RIGHTBUTTON, Point.x, Point.y, this, NULL);
}
void CSrErrorBar::OnErrorbarCopy()
{
m_wndChild.Copy();
}
void CSrErrorBar::OnUpdateErrorbarCopy(CCmdUI *pCmdUI)
{
pCmdUI->Enable(!m_wndChild.GetSelText().IsEmpty());
}
BOOL CSrErrorBar::PreTranslateMessage(MSG* pMsg)
{
if (m_hAccelerator != NULL)
{
if (pMsg->message >= WM_KEYFIRST && pMsg->message <= WM_KEYLAST && m_hAccelerator != NULL)
{
BOOL Result = TranslateAccelerator(m_hWnd, m_hAccelerator, pMsg);
if (Result != 0) return Result;
}
}
return CSizingControlBarG::PreTranslateMessage(pMsg);
}
void CSrErrorBar::OnInitMenuPopup(CMenu* pPopupMenu, UINT nIndex, BOOL bSysMenu)
{
CSizingControlBarG::OnInitMenuPopup(pPopupMenu, nIndex, bSysMenu);
OnInitMenuPopupHelper(this, pPopupMenu, nIndex, bSysMenu);
}