JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
DxVScrollView.h
Go to the documentation of this file.
1#pragma once
2
20#include "DxBaseClass.h"
21
22
23//
24namespace jbxwl {
25
26
28// CDxVScrollView ビュー
29
30class CDxVScrollView : public CDxBaseView //public CView
31{
32protected:
35
36// アトリビュート
37public:
38 RECT dispRect; // メモリ上の領域 dispRect = renderRect + vsbpos
39 RECT renderRect; // サーフェイスの有効領域 または 表示領域の大きさ
40 RECT bufferRect; // バックバッファの描画領域
41 int maxClientYSize; // クライアントの最大Yサイズ.メモリを有効利用するために使用.
42
43// オペレーション
44public:
45 virtual void InitObject(void);
46 virtual void ExecRender();
47 virtual BOOL SetNewSurface(int ovsbpos);
48
49// オーバーライド
50public:
51 //{{AFX_VIRTUAL(CDxVScrollView)
52 virtual void OnInitialUpdate();
53 //}}AFX_VIRTUAL
54
55// インプリメンテーション
56protected:
57 virtual ~CDxVScrollView();
58#ifdef _DEBUG
59 virtual void AssertValid() const;
60 virtual void Dump(CDumpContext& dc) const;
61#endif
62
63protected:
64 //{{AFX_MSG(CDxVScrollView)
65 afx_msg void OnSize(UINT nType, int cx, int cy);
67 //}}AFX_MSG
69};
70
71
73
74//{{AFX_INSERT_LOCATION}}
75
76
77} // namespace
afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point)
virtual void OnInitialUpdate()
afx_msg void OnSize(UINT nType, int cx, int cy)
virtual void ExecRender()
virtual void AssertValid() const
virtual void Dump(CDumpContext &dc) const
virtual void InitObject(void)
virtual BOOL SetNewSurface(int ovsbpos)