JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
ExView.cpp
Go to the documentation of this file.
1//
2// ExView.cpp : インプリメンテーション ファイル
3//
4
5#include "ExView.h"
6
7
8#ifdef _DEBUG
9#define new DEBUG_NEW
10#undef THIS_FILE
11static char THIS_FILE[] = __FILE__;
12#endif
13
14
15using namespace jbxl;
16using namespace jbxwl;
17
18
20
21
23// CExView 画像データ用
24
25IMPLEMENT_DYNCREATE(CExView, CView)
26
27
29{
30// DEBUG_WARN("CONSTRUCT CExView\n");
31 cmnHead.init();
32 msGraph.init();
33
34 pDoc = NULL; //(CExDocument*)GetDocument();
35 pFrame = NULL;
36 pApp = NULL;
37 anyData = NULL;
38
39 hasViewData = FALSE; // 有効な表示用データをもっているか
40 Title = _T(""); // ウィンドウタイトル
41
42 timerID = -1; // -1 でタイマー未使用.
43 sizeXYRate = 1.0;
44 clientRate = 1.0;
45 sizeFac = 1.0;
46
47 xsize = 0;
48 ysize = 0;
49 zsize = 1;
50
51 origXSize = 0;
52 origYSize = 0;
53 initXSize = 0;
54 initYSize = 0;
55 prevXSize = 0;
56 prevYSize = 0;
57
58 cnstSize = false;
59 cnstXSize = false;
60 cnstYSize = false;
61 cnstXYRate = false;
62 maxXSize = SINTMAX;
63 maxYSize = SINTMAX;
64
65 ctrlMouse = true;
66 doReSize = false;
67 activeWin = false;
68
69 vSBpos = 0;
70 prevSBpos = -1;
71 vSBmax = 0;
72 vSBntch = 3;
73 vSBctrl = true;
74 viewMode = VIEW_ZDIR;
75 colorMode = GRAPH_COLOR_MONO;
76
77 cMax = 0;
78 cMin = 0;
79 vMax = 0;
80 vMin = 0;
81
82 clientRect.bottom = 0;
83 clientRect.top = 0;
84 clientRect.left = 0;
85 clientRect.right = 0;
86}
87
88
89
91{
92 DEBUG_INFO("DESTRUCTOR: CExView\n");
93
94 if (pApp!=NULL) {
95 DEBUG_INFO("Call Application ViewDestructor()\n");
96 pApp->ViewDestructor(this); // 上位アプリケーションに通知
97 }
98
99 // データは対応する Documentのディストラクタで削除
100 cmnHead.mfree();
101 msGraph.mfree();
102
103 viewData.free();
104
105 if (!isNull(pDoc)) pDoc->pView = NULL;
106 if (!isNull(pFrame)) pFrame->pView = NULL;
107 pDoc = NULL;
108 pFrame = NULL;
109}
110
111
112
113BEGIN_MESSAGE_MAP(CExView, CView)
114 //{{AFX_MSG_MAP(CExView)
115 ON_WM_SIZE()
116 ON_WM_VSCROLL()
117 ON_WM_MOUSEWHEEL()
118// ON_WM_TIMER()
119 //}}AFX_MSG_MAP
120 ON_WM_ERASEBKGND()
121 ON_WM_TIMER()
122END_MESSAGE_MAP()
123
124
125
127// CExView 診断
128
129#ifdef _DEBUG
131{
132 CView::AssertValid();
133}
134
135
136void CExView::Dump(CDumpContext& dc) const
137{
138 CView::Dump(dc);
139}
140#endif //_DEBUG
141
142
143
144
146// Window サイズ
147
148//
149// クライアントサイズを指定して,ウィンドを配置する
150//
151// cxsize --- クライアント領域の Xサイズ
152// cysize --- クライアント領域の Yサイズ
153//
154// sizeXYRate は下位クラスで定義されている必要がある.
155//
156POINT CExView::SetWindowSize(int cxs, int cys, BOOL first)
157{
158 POINT pc = {-1, -1};
159
160 if (cxs<0 || cys<0) return pc;
161 pc.x = cxs;
162 pc.y = cys;
163
165 pFrame->SetWindowPos((CWnd*)&wndTop, 0, 0, pt.x, pt.y, SWP_NOMOVE);
167
168 // サイズが合わない場合
169 if (clientRect.right!=pc.x || clientRect.bottom!=pc.y) {
170 if (first) {
171 double srate = (double)clientRect.bottom/(double)clientRect.right;
172 if (sizeXYRate<srate) {
173 pc.x = clientRect.right;
174 pc.y = (int)(pc.x*sizeXYRate+0.5);
175 }
176 else {
177 pc.y = clientRect.bottom;
178 pc.x = (int)(pc.y/sizeXYRate+0.5);
179 }
180 }
181 else {
182 pc.x = prevXSize;
183 pc.y = prevYSize;
184 }
186 pFrame->SetWindowPos((CWnd*)&wndTop, 0, 0, pt.x, pt.y, SWP_NOMOVE);
188 }
189
190 pc.x = prevXSize = clientRect.right;
191 pc.y = prevYSize = clientRect.bottom;
192 clientRate = (double)clientRect.right/(double)origXSize;
193
194 if (first) {
195 initXSize = clientRect.right;
196 initYSize = clientRect.bottom;
197 }
198 return pc;
199}
200
201
202//
203// クライアント領域のサイズからウインドウ領域のサイズを計算する.
204//
206{
208 POINT pc;
209
210 pFrame->GetWindowRect(&frect);
212
213 pc.x = pt.x + (frect.right -frect.left) - (crect.right -crect.left);
214 pc.y = pt.y + (frect.bottom-frect.top) - (crect.bottom-crect.top);
215 return pc;
216}
217
218
219//
220// ウインドウ領域のサイズからクライアント領域のサイズを計算する.
221//
223{
225 POINT pc;
226
227 pFrame->GetWindowRect(&frect);
229
230 pc.x = pt.x - (frect.right -frect.left) + (crect.right -crect.left);
231 pc.y = pt.y - (frect.bottom-frect.top) + (crect.bottom-crect.top);
232 return pc;
233}
234
235
236//
238{
241
242 if (pt.x<minxs) pt.x = minxs;
243 if (pt.y<minys) pt.y = minys;
244
245 if (cnstSize) {
246 pt.x = initXSize;
247 pt.y = initYSize;
248 }
249 else if (cnstXSize || cnstYSize || cnstXYRate) {
250 if (cnstXSize && !cnstYSize) { // Xサイズ固定
251 pt.x = initXSize;
252 pt.y = Min(pt.y, maxYSize);
253 }
254 else if (!cnstXSize && cnstYSize) { // Yサイズ固定
255 pt.x = Min(pt.x, maxXSize);
256 pt.y = initYSize;
257 }
258 else if (cnstXYRate) { // 縦横比固定
260 if (cur==IDC_SIZENS) {
261 pt.y = Min(pt.y, maxYSize);
262 pt.x = (int)(pt.y/sizeXYRate + 0.5);
263 }
264 else {
265 pt.x = Min(pt.x, maxXSize);
266 pt.y = (int)(pt.x*sizeXYRate + 0.5);
267 }
268 }
269 }
270
271 return pt;
272}
273
274
275//
276POINT CExView::ExecWindowReSize(int cxsize, int cysize)
277{
278 POINT pt;
279 pt.x = cxsize;
280 pt.y = cysize;
281
282 if (doReSize) {
284 if (!cnstSize && (cnstXSize || cnstYSize || cnstXYRate)) {
285 pt = SetWindowSize(pt.x, pt.y, FALSE);
286 }
287 }
288
289 doReSize = false;
290 return pt;
291}
292
293
294
295
297// マウス
298
299//
300// クライアント上のマウスカーソルの位置を獲得する.
301// マウスカーソルがクライアントの範囲にない場合は,座標別に負の値を返す.
302//
304{
305 POINT pt;
306 RECT crect;
307
308 if (m_hWnd==NULL) {
309 pt.x = pt.y = -1;
310 return pt;
311 }
312
315 this->GetClientRect(&crect);
316
317 if (crect.right-crect.left < pt.x) pt.x = -pt.x;
318 if (crect.bottom-crect.top < pt.y) pt.y = -pt.y;
319
320 return pt;
321}
322
323
324//
325BOOL CExView::OnMouseWheel(UINT nFlags, short zDelta, CPoint pt)
326{
327 if (vSBmax!=0 && vSBctrl) {
328 int ovsbpos = vSBpos;
329
331 if (vSBpos<0) vSBpos = 0;
332 if (vSBpos>vSBmax) vSBpos = vSBmax;
334
336 OnDraw(NULL);
337 }
338
339 return TRUE;
340}
341
342
343
344
346// CExView ツール
347
348void CExView::SetTitle(LPCTSTR title)
349{
350 this->Title = title;
351 pFrame->Title = title;
352 pFrame->SetTitle(title); // ルート&カレントウィンドウ
353 pFrame->SetWindowText(title); // カレントウィンドウ
354// if (pDoc!=NULL) pDoc->SetTitle(title); // ?
355
356 return;
357}
358
359
360
361
363// CExView メッセージ ハンドラ
364
366{
367 CView::OnInitialUpdate();
368
369 if (pDoc!=NULL) {
372 xsize = cmnHead.xsize;
373 ysize = cmnHead.ysize;
374 zsize = cmnHead.zsize;
375 }
376
378 cnstSize = true;
379 cnstXSize = cnstYSize = cnstXYRate = false;
380 }
381}
382
383
384//
385void CExView::OnDraw(CDC* pDC)
386{
387 if (hasViewData && timerID==-1) {
389 ExecRender();
390 }
391 else if (!hasViewData) DEBUG_ERROR("CExView::OnDraw(): ERROR: 表示可能なデータがありません\n");
392}
393
394
395//
396void CExView::OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView)
397{
398 activeWin = false;
399 ctrlMouse = false;
400 if (bActivate && pActivateView==this) {
401 activeWin = true;
402 ctrlMouse = true;
403 }
404
405 CView::OnActivateView(bActivate, pActivateView, pDeactiveView);
406}
407
408
409//
410void CExView::OnSize(UINT nType, int cx, int cy)
411{
412 CView::OnSize(nType, cx, cy);
413
414 doReSize = true;
416}
417
418
419// リサイズ時のちらつき防止
421{
422 return TRUE;
423}
424
425
426//
427void CExView::OnTimer(UINT_PTR nIDEvent)
428{
429 if (hasViewData) {
431 ExecRender();
432 }
433 else DEBUG_ERROR("CExView::OnTimer(): ERROR: 表示可能なデータがありません\n");
434
435 CView::OnTimer(nIDEvent);
436}
437
438
439//
440void CExView::OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar)
441{
442 if (!activeWin || vSBmax==0) return;
443 if (pScrollBar!=NULL || !vSBctrl) return;
444
445 int ovsbpos = vSBpos;
446
447 switch (nSBCode) {
448 case SB_LINEDOWN:
449 vSBpos += vSBntch;
450 if (vSBpos>vSBmax) vSBpos = vSBmax;
451 break;
452 case SB_LINEUP:
453 vSBpos -= vSBntch;
454 if (vSBpos<0) vSBpos = 0;
455 break;
456 case SB_THUMBPOSITION:
457 vSBpos = nPos;
458 break;
459 case SB_THUMBTRACK:
460 vSBpos = nPos;
461 break;
462 case SB_PAGEDOWN:
463 vSBpos += vSBntch*2;
464 if (vSBpos>vSBmax) vSBpos = vSBmax;
465 break;
466 case SB_PAGEUP:
467 vSBpos -= vSBntch*2;
468 if (vSBpos<0) vSBpos = 0;
469 break;
470 }
472
474 OnDraw(NULL);
475
476 return;
477}
478
static char THIS_FILE[]
Definition ExView.cpp:11
#define VIEW_ZDIR
Definition ExView.h:42
virtual void ViewDestructor(CExView *vw)
Definition ExClass.h:62
ExCmnHead cmnHead
Definition ExDocument.h:53
ExMSGraph< sWord > msGraph
Definition ExDocument.h:52
CString Title
Definition ExFrame.h:37
CExView * pView
Definition ExFrame.h:42
ExCmnHead cmnHead
Definition ExView.h:73
CString Title
Definition ExView.h:83
int prevYSize
Definition ExView.h:99
afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt)
Definition ExView.cpp:325
virtual void OnActivateView(BOOL bActivate, CView *pActivateView, CView *pDeactiveView)
Definition ExView.cpp:396
virtual void OnDraw(CDC *pDC)
Definition ExView.cpp:385
virtual void OnInitialUpdate()
Definition ExView.cpp:365
BOOL hasViewData
Definition ExView.h:81
int prevXSize
Definition ExView.h:98
ExCmnHead viewData
Definition ExView.h:72
int initYSize
Definition ExView.h:97
bool ctrlMouse
Definition ExView.h:125
int initXSize
Definition ExView.h:96
POINT ExecWindowReSize(int xs, int ys)
Definition ExView.cpp:276
POINT GetWindowReSize(POINT pt)
Definition ExView.cpp:237
afx_msg void OnSize(UINT nType, int cx, int cy)
Definition ExView.cpp:410
virtual ~CExView()
Definition ExView.cpp:90
POINT GetWindowSize(POINT pt)
Definition ExView.cpp:205
afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar *pScrollBar)
Definition ExView.cpp:440
CExFrame * pFrame
Definition ExView.h:77
CAppCallBack * pApp
Definition ExView.h:78
afx_msg void OnTimer(UINT_PTR nIDEvent)
Definition ExView.cpp:427
bool cnstSize
Definition ExView.h:101
double sizeXYRate
Definition ExView.h:86
bool cnstXYRate
Definition ExView.h:104
int origXSize
Definition ExView.h:94
RECT clientRect
Definition ExView.h:85
void SetTitle(LPCTSTR title)
Definition ExView.cpp:348
POINT GetClientSize(POINT pt)
Definition ExView.cpp:222
bool activeWin
Definition ExView.h:126
bool doReSize
Definition ExView.h:121
bool cnstXSize
Definition ExView.h:102
CExDocument * pDoc
Definition ExView.h:76
ExMSGraph< sWord > msGraph
Definition ExView.h:74
virtual void AssertValid() const
Definition ExView.cpp:130
POINT GetMousePos()
Definition ExView.cpp:303
virtual void Dump(CDumpContext &dc) const
Definition ExView.cpp:136
virtual void ExecRender()
Definition ExView.h:144
bool cnstYSize
Definition ExView.h:103
POINT SetWindowSize(int xs, int ys, BOOL first=TRUE)
Definition ExView.cpp:156
afx_msg BOOL OnEraseBkgnd(CDC *pDC)
Definition ExView.cpp:420
virtual BOOL SetNewSurface(int ovsbpos=0)
Definition ExView.h:141
double clientRate
Definition ExView.h:87
UINT TimerID
Definition ExView.cpp:19
TCHAR * GetMouseCursorType(void)
Definition WinTools.cpp:749