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

#include <ExView.h>

Inheritance diagram for CExView:
Collaboration diagram for CExView:

Public Member Functions

POINT GetMousePos ()
 
virtual int GetMouseButton ()
 
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 BOOL SetNewSurface (int ovsbpos=0)
 
virtual void TimerStart (int tm=40)
 
virtual void TimerStop ()
 
virtual void ExecRender ()
 
virtual void OnInitialUpdate ()
 
virtual void OnDraw (CDC *pDC)
 
virtual ~CExView ()
 
afx_msg BOOL OnEraseBkgnd (CDC *pDC)
 
afx_msg void OnTimer (UINT_PTR nIDEvent)
 

Public Attributes

ExCmnHead viewData
 
ExCmnHead cmnHead
 
ExMSGraph< sWordmsGraph
 
CExDocumentpDoc
 
CExFramepFrame
 
CAppCallBackpApp
 
voidanyData
 
BOOL hasViewData
 
CString Title
 
RECT clientRect
 
double sizeXYRate
 
double clientRate
 
double sizeFac
 
int xsize
 
int ysize
 
int zsize
 
int origXSize
 
int origYSize
 
int initXSize
 
int initYSize
 
int prevXSize
 
int prevYSize
 
bool cnstSize
 
bool cnstXSize
 
bool cnstYSize
 
bool cnstXYRate
 
int maxXSize
 
int maxYSize
 
int vSBpos
 
int prevSBpos
 
int vSBmax
 
int vSBntch
 
bool vSBctrl
 
int viewMode
 
int colorMode
 
int cMax
 
int cMin
 
int vMax
 
int vMin
 
bool doReSize
 

Protected Member Functions

 CExView ()
 
virtual void OnActivateView (BOOL bActivate, CView *pActivateView, CView *pDeactiveView)
 
virtual void AssertValid () const
 
virtual void Dump (CDumpContext &dc) const
 
afx_msg void OnSize (UINT nType, int cx, int cy)
 
afx_msg void OnVScroll (UINT nSBCode, UINT nPos, CScrollBar *pScrollBar)
 
afx_msg BOOL OnMouseWheel (UINT nFlags, short zDelta, CPoint pt)
 

Protected Attributes

int timerID
 
bool ctrlMouse
 
bool activeWin
 

Detailed Description

Definition at line 64 of file ExView.h.

Constructor & Destructor Documentation

◆ CExView()

CExView ( )
protected

Definition at line 28 of file ExView.cpp.

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;
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;
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}
#define VIEW_ZDIR
Definition ExView.h:42
ExCmnHead cmnHead
Definition ExView.h:73
CString Title
Definition ExView.h:83
int prevYSize
Definition ExView.h:99
BOOL hasViewData
Definition ExView.h:81
int prevXSize
Definition ExView.h:98
int initYSize
Definition ExView.h:97
bool ctrlMouse
Definition ExView.h:125
int initXSize
Definition ExView.h:96
int origYSize
Definition ExView.h:95
CExFrame * pFrame
Definition ExView.h:77
CAppCallBack * pApp
Definition ExView.h:78
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
bool activeWin
Definition ExView.h:126
void * anyData
Definition ExView.h:79
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
double sizeFac
Definition ExView.h:88
bool cnstYSize
Definition ExView.h:103
double clientRate
Definition ExView.h:87

References VIEW_ZDIR.

◆ ~CExView()

~CExView ( )
virtual

Definition at line 90 of file ExView.cpp.

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}
virtual void ViewDestructor(CExView *vw)
Definition ExClass.h:62
CExView * pView
Definition ExFrame.h:42
ExCmnHead viewData
Definition ExView.h:72

References CExView::cMin, CExView::cmnHead, CExView::msGraph, CExView::pApp, CExView::pDoc, CExView::pFrame, CExDocument::pView, CExFrame::pView, CExView::viewData, and CAppCallBack::ViewDestructor().

Here is the call graph for this function:

Member Function Documentation

◆ AssertValid()

void AssertValid ( ) const
protectedvirtual

Reimplemented in CDx2DView, CDxDirectView, CDxMGRView, CDxSRenderView, and CDxVScrollView.

Definition at line 130 of file ExView.cpp.

131{
132 CView::AssertValid();
133}

Referenced by CDx2DView::AssertValid(), CDxDirectView::AssertValid(), CDxMGRView::AssertValid(), CDxSRenderView::AssertValid(), and CDxVScrollView::AssertValid().

Here is the caller graph for this function:

◆ Dump()

void Dump ( CDumpContext & dc) const
protectedvirtual

Reimplemented in CDx2DView, CDxDirectView, CDxMGRView, CDxSRenderView, and CDxVScrollView.

Definition at line 136 of file ExView.cpp.

137{
138 CView::Dump(dc);
139}

References CExView::cMin.

Referenced by CDx2DView::Dump(), CDxDirectView::Dump(), CDxMGRView::Dump(), CDxSRenderView::Dump(), and CDxVScrollView::Dump().

Here is the caller graph for this function:

◆ ExecRender()

virtual void ExecRender ( void )
inlinevirtual

◆ ExecWindowReSize()

POINT ExecWindowReSize ( int xs,
int ys )

Definition at line 276 of file ExView.cpp.

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}
POINT GetWindowReSize(POINT pt)
Definition ExView.cpp:237
POINT SetWindowSize(int xs, int ys, BOOL first=TRUE)
Definition ExView.cpp:156

References CExView::cMin, CExView::cnstSize, CExView::cnstXSize, CExView::cnstXYRate, CExView::cnstYSize, CExView::doReSize, CExView::GetWindowReSize(), and CExView::SetWindowSize().

Referenced by CDxVTXBaseView::OnDraw(), CExView::OnDraw(), CDxVTXBaseView::OnTimer(), and CExView::OnTimer().

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

◆ GetClientSize()

POINT GetClientSize ( POINT pt)

Definition at line 222 of file ExView.cpp.

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}

References CExView::cMin, and CExView::pFrame.

Referenced by CExFrame::OnSizing().

Here is the caller graph for this function:

◆ GetMouseButton()

virtual int GetMouseButton ( )
inlinevirtual

Reimplemented in CDxBaseView.

Definition at line 131 of file ExView.h.

131{return 0;} // CDxBaseClassで実装.ここで実装できたら,CDxBaseClassでの実装を削除して virtual をはずす.

◆ GetMousePos()

POINT GetMousePos ( )

Definition at line 303 of file ExView.cpp.

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}

References CExView::cMin.

Referenced by CDxVTXBaseView::ExecRotation().

Here is the caller graph for this function:

◆ GetWindowDisplaySize()

virtual POINT GetWindowDisplaySize ( POINT pt)
inlinevirtual

Reimplemented in CDxBaseView.

Definition at line 140 of file ExView.h.

140{ return pt;} // ウィンドウが画面に収まるように大きさを再計算する

References CExView::cMin.

◆ GetWindowReSize()

POINT GetWindowReSize ( POINT pt)

Definition at line 237 of file ExView.cpp.

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}
TCHAR * GetMouseCursorType(void)
Definition WinTools.cpp:749

References CExView::cMin, CExView::cnstSize, CExView::cnstXSize, CExView::cnstXYRate, CExView::cnstYSize, jbxwl::GetMouseCursorType(), CExView::initXSize, CExView::initYSize, CExView::maxXSize, CExView::maxYSize, and CExView::sizeXYRate.

Referenced by CExView::ExecWindowReSize(), and CExFrame::OnSizing().

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

◆ GetWindowSize()

POINT GetWindowSize ( POINT pt)

Definition at line 205 of file ExView.cpp.

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}

References CExView::cMin, and CExView::pFrame.

Referenced by CExFrame::OnSizing(), and CExView::SetWindowSize().

Here is the caller graph for this function:

◆ OnActivateView()

void OnActivateView ( BOOL bActivate,
CView * pActivateView,
CView * pDeactiveView )
protectedvirtual

Reimplemented in CDxBaseView.

Definition at line 396 of file ExView.cpp.

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}

References CExView::activeWin, CExView::cMin, and CExView::ctrlMouse.

Referenced by CDxBaseView::OnActivateView().

Here is the caller graph for this function:

◆ OnDraw()

void OnDraw ( CDC * pDC)
virtual

Reimplemented in CDx3DDirectView, CDxVTXBaseView, CDxDirectView, and CDxSRenderView.

Definition at line 385 of file ExView.cpp.

386{
387 if (hasViewData && timerID==-1) {
389 ExecRender();
390 }
391 else if (!hasViewData) DEBUG_ERROR("CExView::OnDraw(): ERROR: 表示可能なデータがありません\n");
392}
POINT ExecWindowReSize(int xs, int ys)
Definition ExView.cpp:276
virtual void ExecRender()
Definition ExView.h:144

References CExView::clientRect, CExView::cMin, CExView::ExecRender(), CExView::ExecWindowReSize(), CExView::hasViewData, and CExView::timerID.

Referenced by CExView::OnMouseWheel(), and CExView::OnVScroll().

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

◆ OnEraseBkgnd()

BOOL OnEraseBkgnd ( CDC * pDC)

Definition at line 420 of file ExView.cpp.

421{
422 return TRUE;
423}

References CExView::cMin.

◆ OnInitialUpdate()

void OnInitialUpdate ( void )
virtual

Reimplemented in CDx2DView, CDxDirectView, CDxMGRView, CDxSRenderView, CDxVScrollView, CDx3DDirectView, CDxBaseView, and CDxVTXBaseView.

Definition at line 365 of file ExView.cpp.

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}
ExCmnHead cmnHead
Definition ExDocument.h:53
ExMSGraph< sWord > msGraph
Definition ExDocument.h:52

References CExView::cMin, CExDocument::cmnHead, CExView::cmnHead, CExView::cnstSize, CExView::cnstXSize, CExView::cnstXYRate, CExView::cnstYSize, CExDocument::msGraph, CExView::msGraph, CExView::pDoc, CExView::xsize, CExView::ysize, and CExView::zsize.

Referenced by jbxwl::InitialDocView().

Here is the caller graph for this function:

◆ OnMouseWheel()

BOOL OnMouseWheel ( UINT nFlags,
short zDelta,
CPoint pt )
protected

Definition at line 325 of file ExView.cpp.

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}
virtual void OnDraw(CDC *pDC)
Definition ExView.cpp:385
virtual BOOL SetNewSurface(int ovsbpos=0)
Definition ExView.h:141

References CExView::cMin, CExView::OnDraw(), CExView::SetNewSurface(), CExView::vSBctrl, CExView::vSBmax, CExView::vSBntch, and CExView::vSBpos.

Here is the call graph for this function:

◆ OnSize()

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

Definition at line 410 of file ExView.cpp.

411{
412 CView::OnSize(nType, cx, cy);
413
414 doReSize = true;
416}

References CExView::clientRect, CExView::cMin, CExView::doReSize, and CExView::pFrame.

Referenced by CDxVScrollView::OnSize().

Here is the caller graph for this function:

◆ OnTimer()

void OnTimer ( UINT_PTR nIDEvent)

Definition at line 427 of file ExView.cpp.

428{
429 if (hasViewData) {
431 ExecRender();
432 }
433 else DEBUG_ERROR("CExView::OnTimer(): ERROR: 表示可能なデータがありません\n");
434
435 CView::OnTimer(nIDEvent);
436}

References CExView::clientRect, CExView::cMin, CExView::ExecRender(), CExView::ExecWindowReSize(), and CExView::hasViewData.

Referenced by CDxVTXBaseView::OnTimer().

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

◆ OnVScroll()

void OnVScroll ( UINT nSBCode,
UINT nPos,
CScrollBar * pScrollBar )
protected

Definition at line 440 of file ExView.cpp.

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}

References CExView::activeWin, CExView::cMin, CExView::OnDraw(), CExView::SetNewSurface(), CExView::vSBctrl, CExView::vSBmax, CExView::vSBntch, and CExView::vSBpos.

Here is the call graph for this function:

◆ SetNewSurface()

virtual BOOL SetNewSurface ( int ovsbpos = 0)
inlinevirtual

Reimplemented in CDxVScrollView, CDxDirectView, and CDxMGRView.

Definition at line 141 of file ExView.h.

141{ return TRUE;} // OnVScroll(), OnMouseWheel()の中でサーフェイスを獲得し直す.

References CExView::cMin.

Referenced by CContrastDLG::OnCancel(), CContrastDLG::OnChangeCntCntMax(), CContrastDLG::OnChangeCntCntMin(), CExView::OnMouseWheel(), CContrastDLG::OnOK(), and CExView::OnVScroll().

Here is the caller graph for this function:

◆ SetTitle()

void SetTitle ( LPCTSTR title)

Definition at line 348 of file ExView.cpp.

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}
CString Title
Definition ExFrame.h:37

References CExView::pFrame, CExFrame::Title, and CExView::Title.

Referenced by jbxwl::ExecDocFrmView(), CDx2DView::ExecRender(), CDxMGRView::MakeSetTitle(), CDxSRenderView::OnInitialUpdate(), and CDxVScrollView::OnInitialUpdate().

Here is the caller graph for this function:

◆ SetWindowSize()

POINT SetWindowSize ( int xs,
int ys,
BOOL first = TRUE )

Definition at line 156 of file ExView.cpp.

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}
POINT GetWindowSize(POINT pt)
Definition ExView.cpp:205

References CExView::clientRate, CExView::clientRect, CExView::cMin, CExView::GetWindowSize(), CExView::initXSize, CExView::initYSize, CExView::origXSize, CExView::pFrame, CExView::prevXSize, CExView::prevYSize, and CExView::sizeXYRate.

Referenced by CExView::ExecWindowReSize(), CDx2DView::OnInitialUpdate(), CDxDirectView::OnInitialUpdate(), CDxMGRView::OnInitialUpdate(), CDxSRenderView::OnInitialUpdate(), and CDxVScrollView::OnInitialUpdate().

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

◆ TimerStart()

virtual void TimerStart ( int tm = 40)
inlinevirtual

Definition at line 142 of file ExView.h.

UINT TimerID
Definition ExView.cpp:19

References CExView::cMin, jbxwl::TimerID, and CExView::timerID.

◆ TimerStop()

virtual void TimerStop ( )
inlinevirtual

Definition at line 143 of file ExView.h.

143{ KillTimer(timerID); timerID = -1; }

References CExView::cMin, and CExView::timerID.

Member Data Documentation

◆ activeWin

◆ anyData

void* anyData

Definition at line 79 of file ExView.h.

◆ clientRate

double clientRate

◆ clientRect

◆ cMax

◆ cMin

int cMin

Definition at line 117 of file ExView.h.

Referenced by CContrastDLG::CContrastDLG(), CDxSRenderView::ClearObject(), CDxBaseView::ClearObject(), CExView::Dump(), CDx2DView::Dump(), CDxDirectView::Dump(), CDxMGRView::Dump(), CDxSRenderView::Dump(), CDxVScrollView::Dump(), CDx2DView::ExecRender(), CDxSRenderView::ExecRender(), CDxVScrollView::ExecRender(), CDxDirectView::ExecRender(), CDxMGRView::ExecRender(), CDxVTXBaseView::ExecRotation(), CExView::ExecWindowReSize(), CDxSRenderView::ExMouseWheel(), CExView::GetClientSize(), CDxBaseView::GetMouseButton(), CExView::GetMousePos(), CDxSRenderView::GetValidVoxelNum(), CDxBaseView::GetWindowDisplaySize(), CExView::GetWindowDisplaySize(), CExView::GetWindowReSize(), CExView::GetWindowSize(), CDxBaseView::InitDevice(), CDxSRenderView::InitObject(), CDx2DView::InitObject(), CDxDirectView::InitObject(), CDxMGRView::InitObject(), CDxVScrollView::InitObject(), CDxMGRView::MakeSetTitle(), CDxBaseView::OnActivateView(), CExView::OnActivateView(), CContrastDLG::OnCancel(), CContrastDLG::OnChangeCntCntMin(), CDxVTXBaseView::OnDraw(), CExView::OnDraw(), CExView::OnEraseBkgnd(), CContrastDLG::OnHScroll(), CExView::OnInitialUpdate(), CDx2DView::OnInitialUpdate(), CDxDirectView::OnInitialUpdate(), CDxMGRView::OnInitialUpdate(), CDxSRenderView::OnInitialUpdate(), CDxVScrollView::OnInitialUpdate(), CExView::OnMouseWheel(), CExView::OnSize(), CDxVScrollView::OnSize(), CDxVTXBaseView::OnTimer(), CExView::OnTimer(), CExView::OnVScroll(), CDxSRenderView::PrepareVB(), CDxVTXBaseView::PrepareVB(), CDxVScrollView::SetNewSurface(), CExView::SetNewSurface(), CDxDirectView::SetNewSurface(), CDxMGRView::SetNewSurface(), CDxBaseView::SetParameter(), CDxSRenderView::SetState(), CExView::SetWindowSize(), CDxVTXBaseView::SwitchRotation(), CExView::TimerStart(), CExView::TimerStop(), CDxBaseView::~CDxBaseView(), CDxVTXBaseView::~CDxVTXBaseView(), and CExView::~CExView().

◆ cmnHead

◆ cnstSize

bool cnstSize

◆ cnstXSize

bool cnstXSize

◆ cnstXYRate

bool cnstXYRate

◆ cnstYSize

bool cnstYSize

◆ colorMode

◆ ctrlMouse

bool ctrlMouse
protected

Definition at line 125 of file ExView.h.

Referenced by CDxVTXBaseView::ExecRotation(), and CExView::OnActivateView().

◆ doReSize

◆ hasViewData

◆ initXSize

int initXSize

Definition at line 96 of file ExView.h.

Referenced by CExView::GetWindowReSize(), and CExView::SetWindowSize().

◆ initYSize

int initYSize

Definition at line 97 of file ExView.h.

Referenced by CExView::GetWindowReSize(), and CExView::SetWindowSize().

◆ maxXSize

int maxXSize

Definition at line 105 of file ExView.h.

Referenced by CExView::GetWindowReSize().

◆ maxYSize

int maxYSize

Definition at line 106 of file ExView.h.

Referenced by CExView::GetWindowReSize(), and CvThumbNailDoc::TranslateData().

◆ msGraph

◆ origXSize

◆ origYSize

◆ pApp

◆ pDoc

◆ pFrame

◆ prevSBpos

◆ prevXSize

int prevXSize

Definition at line 98 of file ExView.h.

Referenced by CExView::SetWindowSize().

◆ prevYSize

int prevYSize

Definition at line 99 of file ExView.h.

Referenced by CExView::SetWindowSize().

◆ sizeFac

◆ sizeXYRate

◆ timerID

int timerID
protected

◆ Title

◆ viewData

◆ viewMode

int viewMode

Definition at line 113 of file ExView.h.

Referenced by CDxMGRView::OnInitialUpdate(), and CDxMGRView::SetNewSurface().

◆ vMax

◆ vMin

◆ vSBctrl

bool vSBctrl

Definition at line 112 of file ExView.h.

Referenced by CExView::OnMouseWheel(), and CExView::OnVScroll().

◆ vSBmax

◆ vSBntch

int vSBntch

Definition at line 111 of file ExView.h.

Referenced by CExView::OnMouseWheel(), and CExView::OnVScroll().

◆ vSBpos

◆ xsize

◆ ysize

◆ zsize

int zsize

Definition at line 92 of file ExView.h.

Referenced by CExView::OnInitialUpdate(), and CDxMGRView::OnInitialUpdate().


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