JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
ExTextView.h
Go to the documentation of this file.
1#pragma once
2
3#include "MFCBase.h"
4
9//
10namespace jbxwl {
11
12using namespace jbxl;
13
14
15class CExDocument;
16class CExTextView;
17class CExTextFrame;
18class CAppCallBack;
19
20
21
23// CExTextView ビュー
24
25class CExTextView : public CScrollView
26{
27protected:
28 CExTextView(); // 動的生成に使用されるプロテクト コンストラクタ
29 DECLARE_DYNCREATE(CExTextView)
30
31// アトリビュート
32public:
33
34 CDocument* pDoc;
37
38 CString Title;
39
40 RECT clientRect; // クライアント領域
41 double sizeXYRate; // クライアント領域のサイズ(全体)の縦横比率 (Y/X).下位クラスで定義する必要がある.
42 double clientRate; // クライアント領域の倍率(X方向を基準にする)
43
44 int xsize; //
45 int ysize; //
46
47 int origXSize; // 本来の画像を表示した場合の Xサイズ.下位クラスで定義する必要がある.
48 int origYSize; // 本来の画像を表示した場合の Yサイズ.下位クラスで定義する必要がある.
49 int initXSize; // 最初に表示された時のクライアント領域の Xサイズ
50 int initYSize; // 最初に表示された時のクライアント領域の Yサイズ
51 int prevXSize; // 直前のクライアント領域の Xサイズ
52 int prevYSize; // 直前のクライアント領域の Yサイズ
53
54 bool cnstSize; // ウィンドウサイズ固定か?
55 bool cnstXSize; // ウィンドウのXサイズ固定か?
56 bool cnstYSize; // ウィンドウのYサイズ固定か?
57 bool cnstXYRate; // ウィンドウは sizeXYRate依存
58 int maxXSize; // ウィンドウの最大Xサイズ
59 int maxYSize; // ウィンドウの最大Yサイズ
60
61 bool doReSize; // ウィンドウのリサイズ許可
62
63protected:
64 bool activeWin; // ウィンドウはアクティブか?
65
66// オペレーション
67public:
68 POINT SetWindowSize(int xs, int ys, BOOL first=TRUE); // クライアントサイズを指定して,ウィンドを配置する.
69 POINT GetWindowSize(POINT pt); // クライアントサイズから,ウィンドウサイズを得る.
70 POINT GetClientSize(POINT pt); // ウィンドウサイズから,クライアントサイズを得る.
71 POINT GetWindowReSize(POINT pt); // ウィンドウのサイズを条件に合わせて再計算する
72 POINT ExecWindowReSize(int xs, int ys); // ウィンドウを条件に合わせてリサイズする
73 void SetTitle(LPCTSTR title);
74
75 virtual POINT GetWindowDisplaySize(POINT pt) { return pt;} // ウィンドウが画面に収まるように大きさを再計算する
76
77 // オーバーライド
78
79 //{{AFX_VIRTUAL(CExTextView)
80public:
81 virtual void OnInitialUpdate();
82 virtual void OnDraw(CDC* pDC);
83
84protected:
85 virtual void OnActivateView(BOOL bActivate, CScrollView* pActivateView, CScrollView* pDeactiveView);
86 //}}AFX_VIRTUAL
87
88// インプリメンテーション
89public:
90 virtual ~CExTextView();
91
92protected:
93 //{{AFX_MSG(CExTextView)
94 afx_msg void OnSize(UINT nType, int cx, int cy);
95 //}}AFX_MSG
96 DECLARE_MESSAGE_MAP()
97public:
98 afx_msg BOOL OnEraseBkgnd(CDC* pDC);
99};
100
101
102
104
105//{{AFX_INSERT_LOCATION}}
106
107
108} // namespace
virtual void OnActivateView(BOOL bActivate, CScrollView *pActivateView, CScrollView *pDeactiveView)
virtual void OnDraw(CDC *pDC)
virtual void OnInitialUpdate()
POINT ExecWindowReSize(int xs, int ys)
POINT GetWindowReSize(POINT pt)
virtual ~CExTextView()
CExTextFrame * pFrame
Definition ExTextView.h:35
afx_msg void OnSize(UINT nType, int cx, int cy)
POINT GetWindowSize(POINT pt)
CAppCallBack * pApp
Definition ExTextView.h:36
void SetTitle(LPCTSTR title)
virtual POINT GetWindowDisplaySize(POINT pt)
Definition ExTextView.h:75
POINT GetClientSize(POINT pt)
CDocument * pDoc
Definition ExTextView.h:34
POINT SetWindowSize(int xs, int ys, BOOL first=TRUE)
afx_msg BOOL OnEraseBkgnd(CDC *pDC)