JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
LogWndView.h
Go to the documentation of this file.
1#pragma once
2
3#include "ExTextView.h"
4
5
6#define DISPLAY_MARGIN 5
7#define LINES_PER_PAGE 30
8
9
10//
11namespace jbxwl {
12
13
14class CLogWndDoc;
15class CLogWndFrame;
16
17
19{
20protected:
22 DECLARE_DYNCREATE(CLogWndView)
23
24private:
26
27public:
28 CLogWndDoc* GetDocument() const;
31
32 CString Title;
33 void SetTitle(LPCTSTR title);
34
35 void lock(void) { m_locked = TRUE;}
36 void unlock(void) { m_locked = FALSE;}
37
38// オーバーライド
39 //{{AFX_VIRTUAL(CLogWndView)
40 virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
41 //}}AFX_VIRTUAL
42
43protected:
44 virtual void OnInitialUpdate();
45
46public:
47 virtual ~CLogWndView();
48
49#ifdef _DEBUG
50 virtual void AssertValid() const;
51 virtual void Dump(CDumpContext& dc) const;
52#endif
53
54protected:
56 int m_msx;
57 int m_msy;
58 int m_mex;
59 int m_mey;
64
65public:
69
73
76
77 void resetScrollSize(void);
78 void setScrollPosition(CDC* pDC, CLogRingBuffer* pBR);
79 void clearViewDoc(void);
80
81 CString getCopyData(void);
82
83 BOOL OnScroll(UINT nScrollCode, UINT nPos, BOOL bDoScroll);
84
85protected:
86 //{{AFX_MSG(CLogWndView)
87 afx_msg int OnCreate(LPCREATESTRUCT lpcs);
88 afx_msg void OnDestroy(void);
89 afx_msg void OnDraw(CDC* pDC);
90 afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
91 afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
92 afx_msg void OnMouseMove(UINT nFlags, CPoint point);
93 afx_msg BOOL OnEraseBkgnd(CDC* pDC);
94 afx_msg void OnSize(UINT nType, int cx, int cy);
95 //}}AFX_MSG
96 DECLARE_MESSAGE_MAP()
97
98public:
99
100};
101
102
103
104#ifndef _DEBUG
105
106inline CLogWndDoc* CLogWndView::GetDocument() const { return reinterpret_cast<CLogWndDoc*>(m_pDocument); }
107
108#endif
109
110} // namespace
afx_msg void OnDestroy(void)
afx_msg void OnDraw(CDC *pDC)
afx_msg void OnMouseMove(UINT nFlags, CPoint point)
virtual void OnInitialUpdate()
BOOL OnScroll(UINT nScrollCode, UINT nPos, BOOL bDoScroll)
CLogWndDoc * pDoc
Definition LogWndView.h:29
afx_msg void OnSize(UINT nType, int cx, int cy)
CLogWndFrame * pFrame
Definition LogWndView.h:30
virtual BOOL PreCreateWindow(CREATESTRUCT &cs)
void SetTitle(LPCTSTR title)
afx_msg int OnCreate(LPCREATESTRUCT lpcs)
void setScrollPosition(CDC *pDC, CLogRingBuffer *pBR)
void unlock(void)
Definition LogWndView.h:36
CString getCopyData(void)
afx_msg void OnLButtonUp(UINT nFlags, CPoint point)
virtual ~CLogWndView()
CLogWndDoc * GetDocument() const
virtual void AssertValid() const
virtual void Dump(CDumpContext &dc) const
afx_msg void OnLButtonDown(UINT nFlags, CPoint point)
void lock(void)
Definition LogWndView.h:35
void clearViewDoc(void)
afx_msg BOOL OnEraseBkgnd(CDC *pDC)
void resetScrollSize(void)