JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
CLogWndView Class Reference

#include <LogWndView.h>

Inheritance diagram for CLogWndView:
Collaboration diagram for CLogWndView:

Public Member Functions

CLogWndDocGetDocument () const
 
void SetTitle (LPCTSTR title)
 
void lock (void)
 
void unlock (void)
 
virtual BOOL PreCreateWindow (CREATESTRUCT &cs)
 
virtual ~CLogWndView ()
 
virtual void AssertValid () const
 
virtual void Dump (CDumpContext &dc) const
 
void resetScrollSize (void)
 
void setScrollPosition (CDC *pDC, CLogRingBuffer *pBR)
 
void clearViewDoc (void)
 
CString getCopyData (void)
 
BOOL OnScroll (UINT nScrollCode, UINT nPos, BOOL bDoScroll)
 
- Public Member Functions inherited from CExTextView
POINT SetWindowSize (int xs, int ys, BOOL first=TRUE)
 
POINT GetWindowSize (POINT pt)
 
POINT GetClientSize (POINT pt)
 
POINT GetWindowReSize (POINT pt)
 
POINT ExecWindowReSize (int xs, int ys)
 
void SetTitle (LPCTSTR title)
 
virtual POINT GetWindowDisplaySize (POINT pt)
 
virtual ~CExTextView ()
 
afx_msg BOOL OnEraseBkgnd (CDC *pDC)
 

Public Attributes

CLogWndDocpDoc
 
CLogWndFramepFrame
 
CString Title
 
CFont m_ScreenFont
 
int m_FontSizeX
 
int m_FontSizeY
 
int m_ScrollSizeX
 
int m_ScrollSizeY
 
int m_DocLastPos
 
int m_copysy
 
int m_copyey
 
- Public Attributes inherited from CExTextView
CDocument * pDoc
 
CExTextFramepFrame
 
CAppCallBackpApp
 
CString Title
 
RECT clientRect
 
double sizeXYRate
 
double clientRate
 
int xsize
 
int ysize
 
int origXSize
 
int origYSize
 
int initXSize
 
int initYSize
 
int prevXSize
 
int prevYSize
 
bool cnstSize
 
bool cnstXSize
 
bool cnstYSize
 
bool cnstXYRate
 
int maxXSize
 
int maxYSize
 
bool doReSize
 

Protected Member Functions

 CLogWndView ()
 
virtual void OnInitialUpdate ()
 
afx_msg int OnCreate (LPCREATESTRUCT lpcs)
 
afx_msg void OnDestroy (void)
 
afx_msg void OnDraw (CDC *pDC)
 
afx_msg void OnLButtonDown (UINT nFlags, CPoint point)
 
afx_msg void OnLButtonUp (UINT nFlags, CPoint point)
 
afx_msg void OnMouseMove (UINT nFlags, CPoint point)
 
afx_msg BOOL OnEraseBkgnd (CDC *pDC)
 
afx_msg void OnSize (UINT nType, int cx, int cy)
 
- Protected Member Functions inherited from CExTextView
 CExTextView ()
 
virtual void OnActivateView (BOOL bActivate, CScrollView *pActivateView, CScrollView *pDeactiveView)
 
afx_msg void OnSize (UINT nType, int cx, int cy)
 

Protected Attributes

int m_mpress
 
int m_msx
 
int m_msy
 
int m_mex
 
int m_mey
 
int m_dragsx
 
int m_dragsy
 
int m_dragex
 
int m_dragey
 
- Protected Attributes inherited from CExTextView
bool activeWin
 

Private Attributes

BOOL m_locked
 

Detailed Description

Definition at line 18 of file LogWndView.h.

Constructor & Destructor Documentation

◆ CLogWndView()

CLogWndView ( )
protected

Definition at line 22 of file LogWndView.cpp.

23{
24 //DEBUG_INFO("コンストラクタ:IN CLogWndView\n");
25
26 pFrame = NULL;
27 pDoc = NULL;
28 Title = _T("");
29
30 m_FontSizeX = 0;
31 m_FontSizeY = 0;
32 m_DocLastPos = 0;
33
34 m_msx = m_msy = 0;
35 m_mex = m_mey = 0;
36 m_mpress = FALSE;
37 m_dragsx = 0;
38 m_dragsy = 0;
39 m_dragex = 0;
40 m_dragey = 0;
41
42 m_copysy = -1;
43 m_copyey = -1;
44 m_locked = FALSE;
45
46 KanjiCode = CODE_SJIS;
47
48 //DEBUG_INFO("コンストラクタ:OUT CLogWndView\n");
49}
CLogWndDoc * pDoc
Definition LogWndView.h:29
CLogWndFrame * pFrame
Definition LogWndView.h:30

◆ ~CLogWndView()

~CLogWndView ( )
virtual

Definition at line 52 of file LogWndView.cpp.

53{
54 DEBUG_INFO("DESTRUCTOR: CLogWndView: START\n");
55
56 while(m_locked) ::Sleep(10);
57
58 DEBUG_INFO("DESTRUCTOR: CLogWndView: END\n");
59}

References CLogWndView::m_locked.

Member Function Documentation

◆ AssertValid()

void AssertValid ( ) const
virtual

Definition at line 287 of file LogWndView.cpp.

288{
289 CScrollView::AssertValid();
290}

◆ clearViewDoc()

void clearViewDoc ( void )

Definition at line 236 of file LogWndView.cpp.

237{
238 if (pDoc==NULL) pDoc = GetDocument();
239 if (!pDoc || pDoc->ringBuffer==NULL) return;
240 CLogRingBuffer* pRB = pDoc->ringBuffer;
241
242 CSingleLock lock(&(pDoc->criticalKey));
243 lock.Lock();
244 while (!lock.IsLocked()) {
245 Sleep(100);
246 lock.Lock();
247 }
248
251 //if (m_ScrollSizeY>SHRT_MAX) m_ScrollSizeY = SHRT_MAX;
252
253 CSize sizeTotal(m_ScrollSizeX+2, m_ScrollSizeY);
254 CSize sizeLine(m_FontSizeX, m_FontSizeY);
255 CSize sizePage(m_FontSizeX, m_FontSizeY*LINES_PER_PAGE);
256
257 SetScrollSizes(MM_TEXT, sizeTotal, sizePage, sizeLine);
258
259 POINT pt;
260 pt.x = 0;
261 pt.y = 0;
262
263 ScrollToPosition(pt);
264
265 pDoc->clear();
266
267 InvalidateRect(NULL, TRUE);
268
269 lock.Unlock();
270}
#define LINES_PER_PAGE
Definition LogWndView.h:7
#define DISPLAY_MARGIN
Definition LogWndView.h:6
CLogRingBuffer * ringBuffer
Definition LogWndDoc.h:72
CCriticalSection criticalKey
Definition LogWndDoc.h:73
CLogWndDoc * GetDocument() const
void lock(void)
Definition LogWndView.h:35

References CLogWndDoc::clear(), CLogWndDoc::criticalKey, DISPLAY_MARGIN, CLogWndView::GetDocument(), LINES_PER_PAGE, CLogWndView::lock(), CLogWndView::m_FontSizeX, CLogWndView::m_FontSizeY, CLogWndView::m_ScrollSizeX, CLogWndView::m_ScrollSizeY, CLogWndView::pDoc, and CLogWndDoc::ringBuffer.

Referenced by CLogWndFrame::OnLogClear().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Dump()

void Dump ( CDumpContext & dc) const
virtual

Definition at line 294 of file LogWndView.cpp.

295{
296 CScrollView::Dump(dc);
297}

◆ getCopyData()

CString getCopyData ( void )

Definition at line 396 of file LogWndView.cpp.

397{
398 CString ret = _T("");
399
400 if (m_copysy < 0 || m_copysy > m_copyey) return ret;
401
402 CLogWndDoc* pdoc = GetDocument();
403 if (!pdoc || !pdoc->ringBuffer) return ret;
404 CLogRingBuffer* pRB = pdoc->ringBuffer;
405
406 for (int i=m_copysy; i<=m_copyey; i++) {
407 Buffer buf = dup_Buffer(pRB->pBuf[i]);
408 if (pRB->getKindData(i)!=LOG_RB_BINARY_DATA) {
409 if (buf.buf[buf.vldsz-1]!='\n') cat_s2Buffer("\n", &buf);
410 }
411
412 ret = ret + mbs2ts((char*)buf.buf);
413 free_Buffer(&buf);
414 }
415
416 return ret;
417}
CString mbs2ts(char *str)
Definition WinTools.cpp:79

References CLogWndView::GetDocument(), CLogWndView::m_copyey, CLogWndView::m_copysy, jbxwl::mbs2ts(), and CLogWndDoc::ringBuffer.

Referenced by CLogWndFrame::OnLogCopy().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetDocument()

CLogWndDoc * GetDocument ( ) const

Definition at line 301 of file LogWndView.cpp.

302{
303 ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CLogWndDoc)));
304 return (CLogWndDoc*)m_pDocument;
305}

Referenced by CLogWndView::clearViewDoc(), CLogWndView::getCopyData(), CLogWndDoc::GetView(), CLogWndView::OnDraw(), CLogWndView::OnInitialUpdate(), and CLogWndView::resetScrollSize().

Here is the caller graph for this function:

◆ lock()

void lock ( void )
inline

Definition at line 35 of file LogWndView.h.

35{ m_locked = TRUE;}

References CLogWndView::m_locked.

Referenced by CLogWndView::clearViewDoc(), CLogWndDoc::lock(), and CLogWndView::OnDraw().

Here is the caller graph for this function:

◆ OnCreate()

int OnCreate ( LPCREATESTRUCT lpcs)
protected

Definition at line 316 of file LogWndView.cpp.

317{
318 if (CScrollView::OnCreate(lpcs)==-1) return -1;
319
320 CString fname, fsize;
321 fname.LoadString(IDS_STR_FONT_GOTHIC); // MS ゴシック
322 fsize.LoadString(IDS_STR_FONT_SIZE); // 120
323 int sz = ttoi(fsize);
324
325 CClientDC dc(this);
326 m_ScreenFont.CreatePointFont(sz, (LPCTSTR)fname, &dc);
327
328 //
330 return 0;
331}
virtual void OnInitialUpdate()
#define IDS_STR_FONT_GOTHIC
Definition resource.h:122
#define IDS_STR_FONT_SIZE
Definition resource.h:120

References IDS_STR_FONT_GOTHIC, IDS_STR_FONT_SIZE, CLogWndView::m_ScreenFont, and CLogWndView::OnInitialUpdate().

Here is the call graph for this function:

◆ OnDestroy()

void OnDestroy ( void )
protected

Definition at line 334 of file LogWndView.cpp.

335{
336 m_ScreenFont.DeleteObject();
337 CScrollView::OnDestroy();
338}

References CLogWndView::m_ScreenFont.

◆ OnDraw()

void OnDraw ( CDC * pDC)
protectedvirtual

Reimplemented from CExTextView.

Definition at line 98 of file LogWndView.cpp.

99{
100 if (pDoc==NULL) pDoc = GetDocument();
101 if (!pDoc || pDoc->ringBuffer==NULL) return;
102
103 CLogRingBuffer* pRB = pDoc->ringBuffer;
104 if (pRB->getMaxLineY()==0) return;
105
106 CSingleLock lock(&(pDoc->criticalKey));
107 lock.Lock();
108 while (!lock.IsLocked()) {
109 Sleep(100);
110 lock.Lock();
111 }
112
114
115 CFont* pOldFontX = pDC->SelectObject(&m_ScreenFont);
116 CRect rc;
117 pDC->GetClipBox(&rc);
118
119 int nLineBegin = rc.top/m_FontSizeY;
120 int nLineEnd = min((rc.bottom+m_FontSizeY-1)/m_FontSizeY, pRB->getMaxLineY());
121
122 for (int i=nLineBegin; i<nLineEnd; i++) {
123 Buffer buf = pRB->getRingBuffer(i);
124 if (buf.buf==NULL) break;
125
126 if (i>=m_copysy && i<=m_copyey) {
127 pDC->SetBkColor(RGB(200,200,200));
128 }
129 else {
130 pDC->SetBkColor(RGB(255,255,255));
131 }
132
133 if (buf.state==LOG_RB_WARNING) {
134 pDC->SetTextColor(RGB(20,20,200));
135 }
136 else if (buf.state==LOG_RB_ERROR) {
137 pDC->SetTextColor(RGB(200,20,20));
138 }
139 else if (buf.state==LOG_RB_DEBUG) {
140 pDC->SetTextColor(RGB(20,150,20));
141 }
142 else if (buf.state==LOG_RB_INFO) {
143 pDC->SetTextColor(RGB(20,150,150));
144 }
145 else {
146 pDC->SetTextColor(RGB(0,0,0));
147 }
148
149 //if (isText_Buffer(buf)) kanji_convert_Buffer(&buf);
150 CString outtext = mbs2ts((char*)buf.buf);
151 pDC->TextOut(DISPLAY_MARGIN, i*m_FontSizeY+DISPLAY_MARGIN, (LPCTSTR)outtext);
152 free_Buffer(&buf);
153 }
154
155 setScrollPosition(pDC, pRB);
156
157 lock.Unlock();
158
159 pDC->SelectObject(pOldFontX);
160}
void setScrollPosition(CDC *pDC, CLogRingBuffer *pBR)
void resetScrollSize(void)

References CLogWndDoc::criticalKey, DISPLAY_MARGIN, CLogWndView::GetDocument(), CLogWndView::lock(), CLogWndView::m_copyey, CLogWndView::m_copysy, CLogWndView::m_FontSizeY, CLogWndView::m_ScreenFont, jbxwl::mbs2ts(), CLogWndView::pDoc, CLogWndView::resetScrollSize(), CLogWndDoc::ringBuffer, and CLogWndView::setScrollPosition().

Here is the call graph for this function:

◆ OnEraseBkgnd()

BOOL OnEraseBkgnd ( CDC * pDC)
protected

Definition at line 86 of file LogWndView.cpp.

87{
88 return CExTextView::OnEraseBkgnd(pDC);
89}
afx_msg BOOL OnEraseBkgnd(CDC *pDC)

References CExTextView::OnEraseBkgnd().

Here is the call graph for this function:

◆ OnInitialUpdate()

void OnInitialUpdate ( )
protectedvirtual

Reimplemented from CExTextView.

Definition at line 207 of file LogWndView.cpp.

208{
210
211 if (pDoc==NULL) pDoc = GetDocument();
212 if (!pDoc || pDoc->ringBuffer==NULL) return;
213 CLogRingBuffer* pRB = pDoc->ringBuffer;
214
215 CClientDC dc(this);
216 TEXTMETRIC tm;
217 dc.GetTextMetrics(&tm);
218
219 m_FontSizeX = dc.GetTextExtent(CString('0', 1)).cx; // フォントの横サイズ
220 m_FontSizeY = tm.tmHeight + tm.tmExternalLeading; // フォント(含行間)の縦サイズ
221
224 //if (m_ScrollSizeY>SHRT_MAX) m_ScrollSizeY = SHRT_MAX;
225
226 CSize sizeTotal(m_ScrollSizeX+2, m_ScrollSizeY);
227 CSize sizeLine(m_FontSizeX, m_FontSizeY);
228 CSize sizePage(m_FontSizeX, m_FontSizeY*LINES_PER_PAGE);
229
230 SetScrollSizes(MM_TEXT, sizeTotal, sizePage, sizeLine);
231
232 return;
233}
virtual void OnInitialUpdate()

References DISPLAY_MARGIN, CLogWndView::GetDocument(), LINES_PER_PAGE, CLogWndView::m_FontSizeX, CLogWndView::m_FontSizeY, CLogWndView::m_ScrollSizeX, CLogWndView::m_ScrollSizeY, CExTextView::OnInitialUpdate(), CLogWndView::pDoc, and CLogWndDoc::ringBuffer.

Referenced by CLogWndView::OnCreate().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ OnLButtonDown()

void OnLButtonDown ( UINT nFlags,
CPoint point )
protected

Definition at line 345 of file LogWndView.cpp.

346{
347 CPoint scrlpos = GetScrollPosition();
348 m_msx = point.x + scrlpos.x;
349 m_msy = point.y + scrlpos.y;
350
353 m_mpress = TRUE;
354
355 // Window内をクリック
356 CRect rc;
357 GetClientRect(&rc);
358 if (point.x>=rc.left && point.x<=rc.right && point.y>rc.top && point.y<=rc.bottom) {
359 m_copysy = -1;
360 m_copyey = -1;
361 InvalidateRect(NULL, FALSE);
362 }
363
364 CScrollView::OnLButtonDown(nFlags, point);
365}

References CLogWndView::m_copyey, CLogWndView::m_copysy, CLogWndView::m_dragsx, CLogWndView::m_dragsy, CLogWndView::m_FontSizeX, CLogWndView::m_FontSizeY, CLogWndView::m_mpress, CLogWndView::m_msx, and CLogWndView::m_msy.

◆ OnLButtonUp()

void OnLButtonUp ( UINT nFlags,
CPoint point )
protected

Definition at line 368 of file LogWndView.cpp.

369{
370 m_mpress = FALSE;
371
372 CScrollView::OnLButtonUp(nFlags, point);
373}

References CLogWndView::m_mpress.

◆ OnMouseMove()

void OnMouseMove ( UINT nFlags,
CPoint point )
protected

Definition at line 376 of file LogWndView.cpp.

377{
378 if (m_mpress) {
379 CPoint scrlpos = GetScrollPosition();
380 m_mex = point.x + scrlpos.x;
381 m_mey = point.y + scrlpos.y;
384
388 InvalidateRect(NULL, FALSE);
389 }
390 }
391
392 CScrollView::OnMouseMove(nFlags, point);
393}

References CLogWndView::m_copyey, CLogWndView::m_copysy, CLogWndView::m_dragex, CLogWndView::m_dragey, CLogWndView::m_dragsx, CLogWndView::m_dragsy, CLogWndView::m_FontSizeX, CLogWndView::m_FontSizeY, CLogWndView::m_mex, CLogWndView::m_mey, and CLogWndView::m_mpress.

◆ OnScroll()

BOOL OnScroll ( UINT nScrollCode,
UINT nPos,
BOOL bDoScroll )

Definition at line 423 of file LogWndView.cpp.

424{
425 SCROLLINFO info;
426 info.cbSize = sizeof(SCROLLINFO);
427 info.fMask = SIF_TRACKPOS;
428
429 if (LOBYTE(nScrollCode)==SB_THUMBTRACK)
430 {
431 GetScrollInfo(SB_HORZ, &info);
432 nPos = info.nTrackPos;
433 }
434
435 if (HIBYTE(nScrollCode)==SB_THUMBTRACK)
436 {
437 GetScrollInfo(SB_VERT, &info);
438 nPos = info.nTrackPos;
439 }
440
441 return CScrollView::OnScroll(nScrollCode, nPos, bDoScroll);
442}

◆ OnSize()

void OnSize ( UINT nType,
int cx,
int cy )
protected

Definition at line 92 of file LogWndView.cpp.

93{
94 CExTextView::OnSize(nType, cx, cy);
95}
afx_msg void OnSize(UINT nType, int cx, int cy)

References CExTextView::OnSize().

Here is the call graph for this function:

◆ PreCreateWindow()

BOOL PreCreateWindow ( CREATESTRUCT & cs)
virtual

Definition at line 73 of file LogWndView.cpp.

74{
75 CSize sizeTotal(100, 100);
76 CSize sizeLine(m_FontSizeX, m_FontSizeY);
77 CSize sizePage(m_FontSizeX, m_FontSizeY*LINES_PER_PAGE);
78 SetScrollSizes(MM_TEXT, sizeTotal, sizePage, sizeLine);
79
80 BOOL ret = CScrollView::PreCreateWindow(cs);
81 return ret;
82}

References LINES_PER_PAGE.

◆ resetScrollSize()

void resetScrollSize ( void )

Definition at line 181 of file LogWndView.cpp.

182{
183 if (pDoc==NULL) pDoc = GetDocument();
184 if (!pDoc || !pDoc->ringBuffer) return;
185 CLogRingBuffer* pRB = pDoc->ringBuffer;
186 if (pRB->getMaxLineY()==0 || pRB->getMaxLineX()==0) return;
187
188 int scrollSizeX = m_FontSizeX*pRB->getMaxLineX() + DISPLAY_MARGIN;
189 int scrollSizeY = m_FontSizeY*pRB->getMaxLineY() + DISPLAY_MARGIN;
190 //if (scrollSizeY>SHRT_MAX) scrollSizeY = SHRT_MAX;
191
192 if (scrollSizeX!=m_ScrollSizeX || scrollSizeY!=m_ScrollSizeY) {
193 m_ScrollSizeX = scrollSizeX;
194 m_ScrollSizeY = scrollSizeY;
195
196 CSize sizeTotal(m_ScrollSizeX, m_ScrollSizeY);
197 CSize sizeLine(m_FontSizeX, m_FontSizeY);
198 CSize sizePage(m_FontSizeX, m_FontSizeY*LINES_PER_PAGE);
199
200 SetScrollSizes(MM_TEXT, sizeTotal, sizePage, sizeLine);
201 }
202
203 return;
204}

References DISPLAY_MARGIN, CLogWndView::GetDocument(), LINES_PER_PAGE, CLogWndView::m_FontSizeX, CLogWndView::m_FontSizeY, CLogWndView::m_ScrollSizeX, CLogWndView::m_ScrollSizeY, CLogWndView::pDoc, and CLogWndDoc::ringBuffer.

Referenced by CLogWndView::OnDraw().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ setScrollPosition()

void setScrollPosition ( CDC * pDC,
CLogRingBuffer * pBR )

Definition at line 163 of file LogWndView.cpp.

164{
165 int lastPos = pRB->getLastPosition();
166 if (m_DocLastPos==lastPos) return;
167 m_DocLastPos = lastPos;
168
169 CRect rc;
170 GetClientRect(&rc);
171
172 POINT pt;
173 pt.x = 0;
174 pt.y = (lastPos+1)*m_FontSizeY - rc.bottom + rc.top;
175 if (pt.y<0) pt.y = 0;
176
177 ScrollToPosition(pt);
178}

References CLogWndView::m_DocLastPos, and CLogWndView::m_FontSizeY.

Referenced by CLogWndView::OnDraw().

Here is the caller graph for this function:

◆ SetTitle()

void SetTitle ( LPCTSTR title)

Definition at line 273 of file LogWndView.cpp.

274{
275 this->Title = title;
276 pFrame->Title = title;
277 pFrame->SetTitle(title); // ルート&カレントウィンドウ
278 pFrame->SetWindowText(title); // カレントウィンドウ
279 pDoc->SetTitle(title); // ?
280
281 return;
282}

References CLogWndView::pDoc, CLogWndView::pFrame, CExTextFrame::Title, and CLogWndView::Title.

Referenced by jbxwl::ExecLogWnd().

Here is the caller graph for this function:

◆ unlock()

void unlock ( void )
inline

Definition at line 36 of file LogWndView.h.

36{ m_locked = FALSE;}

References CLogWndView::m_locked.

Referenced by CLogWndDoc::unlock(), and CLogWndDoc::~CLogWndDoc().

Here is the caller graph for this function:

Member Data Documentation

◆ m_copyey

◆ m_copysy

◆ m_DocLastPos

int m_DocLastPos

Definition at line 72 of file LogWndView.h.

Referenced by CLogWndView::setScrollPosition().

◆ m_dragex

int m_dragex
protected

Definition at line 62 of file LogWndView.h.

Referenced by CLogWndView::OnMouseMove().

◆ m_dragey

int m_dragey
protected

Definition at line 63 of file LogWndView.h.

Referenced by CLogWndView::OnMouseMove().

◆ m_dragsx

int m_dragsx
protected

Definition at line 60 of file LogWndView.h.

Referenced by CLogWndView::OnLButtonDown(), and CLogWndView::OnMouseMove().

◆ m_dragsy

int m_dragsy
protected

Definition at line 61 of file LogWndView.h.

Referenced by CLogWndView::OnLButtonDown(), and CLogWndView::OnMouseMove().

◆ m_FontSizeX

◆ m_FontSizeY

◆ m_locked

BOOL m_locked
private

Definition at line 25 of file LogWndView.h.

Referenced by CLogWndView::lock(), CLogWndView::unlock(), and CLogWndView::~CLogWndView().

◆ m_mex

int m_mex
protected

Definition at line 58 of file LogWndView.h.

Referenced by CLogWndView::OnMouseMove().

◆ m_mey

int m_mey
protected

Definition at line 59 of file LogWndView.h.

Referenced by CLogWndView::OnMouseMove().

◆ m_mpress

int m_mpress
protected

◆ m_msx

int m_msx
protected

Definition at line 56 of file LogWndView.h.

Referenced by CLogWndView::OnLButtonDown().

◆ m_msy

int m_msy
protected

Definition at line 57 of file LogWndView.h.

Referenced by CLogWndView::OnLButtonDown().

◆ m_ScreenFont

CFont m_ScreenFont

Definition at line 66 of file LogWndView.h.

Referenced by CLogWndView::OnCreate(), CLogWndView::OnDestroy(), and CLogWndView::OnDraw().

◆ m_ScrollSizeX

int m_ScrollSizeX

◆ m_ScrollSizeY

int m_ScrollSizeY

◆ pDoc

◆ pFrame

CLogWndFrame* pFrame

Definition at line 30 of file LogWndView.h.

Referenced by jbxwl::ExecLogWnd(), and CLogWndView::SetTitle().

◆ Title

CString Title

Definition at line 32 of file LogWndView.h.

Referenced by CLogWndView::SetTitle().


The documentation for this class was generated from the following files: