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

#include <ExTextView.h>

Inheritance diagram for CExTextView:
Collaboration diagram for CExTextView:

Public Member Functions

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 void OnInitialUpdate ()
 
virtual void OnDraw (CDC *pDC)
 
virtual ~CExTextView ()
 
afx_msg BOOL OnEraseBkgnd (CDC *pDC)
 

Public Attributes

CDocument * pDoc
 
CExTextFramepFrame
 
CAppCallBackpApp
 
CString Title
 
RECT clientRect
 
double sizeXYRate
 
double clientRate
 
int xsize
 
int ysize
 
int origXSize
 
int origYSize
 
int initXSize
 
int initYSize
 
int prevXSize
 
int prevYSize
 
bool cnstSize
 
bool cnstXSize
 
bool cnstYSize
 
bool cnstXYRate
 
int maxXSize
 
int maxYSize
 
bool doReSize
 

Protected Member Functions

 CExTextView ()
 
virtual void OnActivateView (BOOL bActivate, CScrollView *pActivateView, CScrollView *pDeactiveView)
 
afx_msg void OnSize (UINT nType, int cx, int cy)
 

Protected Attributes

bool activeWin
 

Detailed Description

Definition at line 25 of file ExTextView.h.

Constructor & Destructor Documentation

◆ CExTextView()

CExTextView ( )
protected

Definition at line 19 of file ExTextView.cpp.

20{
21 pDoc = NULL; //(CExDocument*)GetDocument();
22 pFrame = NULL;
23 pApp = NULL;
24
25 Title = _T(""); // ウィンドウタイトル
26
27 sizeXYRate = 1.0;
28 clientRate = 1.0;
29
30 xsize = 0;
31 ysize = 0;
32
33 origXSize = 0;
34 origYSize = 0;
35 initXSize = 0;
36 initYSize = 0;
37 prevXSize = 0;
38 prevYSize = 0;
39
40 cnstSize = false;
41 cnstXSize = false;
42 cnstYSize = false;
43 cnstXYRate = false;
44 maxXSize = SINTMAX;
45 maxYSize = SINTMAX;
46
47 doReSize = false;
48 activeWin = false;
49
50 clientRect.bottom = 0;
51 clientRect.top = 0;
52 clientRect.left = 0;
53 clientRect.right = 0;
54}
CExTextFrame * pFrame
Definition ExTextView.h:35
CAppCallBack * pApp
Definition ExTextView.h:36
CDocument * pDoc
Definition ExTextView.h:34

◆ ~CExTextView()

~CExTextView ( )
virtual

Definition at line 58 of file ExTextView.cpp.

59{
60 DEBUG_INFO("DESTRUCTOR: CExTextView: START\n");
61
62 if (pApp!=NULL) {
63 DEBUG_INFO("Call Application ViewDestructor()\n");
64 pApp->ViewDestructor(this); // 上位アプリケーションに通知
65 }
66
67 if (!isNull(pFrame)) pFrame->pView = NULL;
68 pDoc = NULL;
69 pFrame = NULL;
70
71 DEBUG_INFO("DESTRUCTOR: CExTextView: END\n");
72}
virtual void ViewDestructor(CExView *vw)
Definition ExClass.h:62
CExTextView * pView
Definition ExTextFrame.h:41

References CExTextView::pApp, CExTextView::pDoc, CExTextView::pFrame, CExTextFrame::pView, and CAppCallBack::ViewDestructor().

Here is the call graph for this function:

Member Function Documentation

◆ ExecWindowReSize()

POINT ExecWindowReSize ( int xs,
int ys )

Definition at line 217 of file ExTextView.cpp.

218{
219 POINT pt;
220 pt.x = cxsize;
221 pt.y = cysize;
222
223 if (doReSize) {
224 pt = GetWindowReSize(pt);
225 if (!cnstSize && (cnstXSize || cnstYSize || cnstXYRate)) {
226 pt = SetWindowSize(pt.x, pt.y, FALSE);
227 }
228 }
229
230 doReSize = false;
231 return pt;
232}
POINT GetWindowReSize(POINT pt)
POINT SetWindowSize(int xs, int ys, BOOL first=TRUE)

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

Referenced by CExTextView::OnDraw().

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

◆ GetClientSize()

POINT GetClientSize ( POINT pt)

Definition at line 162 of file ExTextView.cpp.

163{
164 RECT frect, crect;
165 POINT pc;
166
167 pFrame->GetWindowRect(&frect);
168 GetClientRect(&crect);
169
170 pc.x = pt.x - (frect.right -frect.left) + (crect.right -crect.left);
171 pc.y = pt.y - (frect.bottom-frect.top) + (crect.bottom-crect.top);
172 return pc;
173}

References CExTextView::pFrame.

Referenced by CExTextFrame::OnSizing().

Here is the caller graph for this function:

◆ GetWindowDisplaySize()

virtual POINT GetWindowDisplaySize ( POINT pt)
inlinevirtual

Definition at line 75 of file ExTextView.h.

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

◆ GetWindowReSize()

POINT GetWindowReSize ( POINT pt)

Definition at line 177 of file ExTextView.cpp.

178{
179 int minxs = GetSystemMetrics(SM_CXMINTRACK);
180 int minys = GetSystemMetrics(SM_CYMINTRACK);
181
182 if (pt.x<minxs) pt.x = minxs;
183 if (pt.y<minys) pt.y = minys;
184
185
186 if (cnstSize) {
187 pt.x = initXSize;
188 pt.y = initYSize;
189 }
190 else if (cnstXSize || cnstYSize || cnstXYRate) {
191 if (cnstXSize && !cnstYSize) { // Xサイズ固定
192 pt.x = initXSize;
193 pt.y = Min(pt.y, maxYSize);
194 }
195 else if (!cnstXSize && cnstYSize) { // Yサイズ固定
196 pt.x = Min(pt.x, maxXSize);
197 pt.y = initYSize;
198 }
199 else if (cnstXYRate) { // 縦横比固定
200 TCHAR* cur = GetMouseCursorType();
201 if (cur==IDC_SIZENS) {
202 pt.y = Min(pt.y, maxYSize);
203 pt.x = (int)(pt.y/sizeXYRate + 0.5);
204 }
205 else {
206 pt.x = Min(pt.x, maxXSize);
207 pt.y = (int)(pt.x*sizeXYRate + 0.5);
208 }
209 }
210 }
211
212 return pt;
213}
TCHAR * GetMouseCursorType(void)
Definition WinTools.cpp:749

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

Referenced by CExTextView::ExecWindowReSize(), and CExTextFrame::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 145 of file ExTextView.cpp.

146{
147 RECT frect, crect;
148 POINT pc;
149
150 pFrame->GetWindowRect(&frect);
151 GetClientRect(&crect);
152
153 pc.x = pt.x + (frect.right -frect.left) - (crect.right -crect.left);
154 pc.y = pt.y + (frect.bottom-frect.top) - (crect.bottom-crect.top);
155 return pc;
156}

References CExTextView::pFrame.

Referenced by CExTextFrame::OnSizing().

Here is the caller graph for this function:

◆ OnActivateView()

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

Definition at line 276 of file ExTextView.cpp.

277{
278 activeWin = false;
279 if (bActivate && pActivateView==this) {
280 activeWin = true;
281 }
282
283 CScrollView::OnActivateView(bActivate, pActivateView, pDeactiveView);
284}

References CExTextView::activeWin.

◆ OnDraw()

void OnDraw ( CDC * pDC)
virtual

Reimplemented in CLogWndView.

Definition at line 269 of file ExTextView.cpp.

270{
272}
POINT ExecWindowReSize(int xs, int ys)

References CExTextView::clientRect, and CExTextView::ExecWindowReSize().

Here is the call graph for this function:

◆ OnEraseBkgnd()

BOOL OnEraseBkgnd ( CDC * pDC)

Definition at line 298 of file ExTextView.cpp.

299{
300 return CScrollView::OnEraseBkgnd(pDC);
301}

Referenced by CLogWndView::OnEraseBkgnd().

Here is the caller graph for this function:

◆ OnInitialUpdate()

void OnInitialUpdate ( )
virtual

Reimplemented in CLogWndView.

Definition at line 257 of file ExTextView.cpp.

258{
259 CScrollView::OnInitialUpdate();
260
262 cnstSize = true;
263 cnstXSize = cnstYSize = cnstXYRate = false;
264 }
265}

References CExTextView::cnstSize, CExTextView::cnstXSize, CExTextView::cnstXYRate, and CExTextView::cnstYSize.

Referenced by CLogWndView::OnInitialUpdate().

Here is the caller graph for this function:

◆ OnSize()

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

Definition at line 288 of file ExTextView.cpp.

289{
290 CScrollView::OnSize(nType, cx, cy);
291
292 doReSize = true;
293 if (pFrame!=NULL) GetClientRect(&clientRect);
294}

References CExTextView::clientRect, CExTextView::doReSize, and CExTextView::pFrame.

Referenced by CLogWndView::OnSize().

Here is the caller graph for this function:

◆ SetTitle()

void SetTitle ( LPCTSTR title)

Definition at line 240 of file ExTextView.cpp.

241{
242 this->Title = title;
243 pFrame->Title = title;
244 pFrame->SetTitle(title); // ルート&カレントウィンドウ
245 pFrame->SetWindowText(title); // カレントウィンドウ
246 pDoc->SetTitle(title); // ?
247
248 return;
249}

References CExTextView::pDoc, CExTextView::pFrame, CExTextFrame::Title, and CExTextView::Title.

◆ SetWindowSize()

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

Definition at line 96 of file ExTextView.cpp.

97{
98 POINT pc = {-1, -1};
99
100 if (cxs<0 || cys<0) return pc;
101 pc.x = cxs;
102 pc.y = cys;
103
104 POINT pt = GetWindowSize(pc);
105 pFrame->SetWindowPos((CWnd*)&wndTop, 0, 0, pt.x, pt.y, SWP_NOMOVE);
106 GetClientRect(&clientRect);
107
108 // サイズが合わない場合
109 if (clientRect.right!=pc.x || clientRect.bottom!=pc.y) {
110 if (first) {
111 double srate = (double)clientRect.bottom/(double)clientRect.right;
112 if (sizeXYRate<srate) {
113 pc.x = clientRect.right;
114 pc.y = (int)(pc.x*sizeXYRate+0.5);
115 }
116 else {
117 pc.y = clientRect.bottom;
118 pc.x = (int)(pc.y/sizeXYRate+0.5);
119 }
120 }
121 else {
122 pc.x = prevXSize;
123 pc.y = prevYSize;
124 }
125 pt = GetWindowSize(pc);
126 pFrame->SetWindowPos((CWnd*)&wndTop, 0, 0, pt.x, pt.y, SWP_NOMOVE);
127 GetClientRect(&clientRect);
128 }
129
130 pc.x = prevXSize = clientRect.right;
131 pc.y = prevYSize = clientRect.bottom;
132 clientRate = (double)clientRect.right/(double)origXSize;
133
134 if (first) {
135 initXSize = clientRect.right;
136 initYSize = clientRect.bottom;
137 }
138 return pc;
139}
POINT GetWindowSize(POINT pt)

Referenced by CExTextView::ExecWindowReSize().

Here is the caller graph for this function:

Member Data Documentation

◆ activeWin

bool activeWin
protected

Definition at line 64 of file ExTextView.h.

Referenced by CExTextView::OnActivateView().

◆ clientRate

double clientRate

Definition at line 42 of file ExTextView.h.

◆ clientRect

RECT clientRect

Definition at line 40 of file ExTextView.h.

Referenced by CExTextView::OnDraw(), and CExTextView::OnSize().

◆ cnstSize

◆ cnstXSize

bool cnstXSize

◆ cnstXYRate

bool cnstXYRate

◆ cnstYSize

bool cnstYSize

◆ doReSize

bool doReSize

◆ initXSize

int initXSize

Definition at line 49 of file ExTextView.h.

Referenced by CExTextView::GetWindowReSize().

◆ initYSize

int initYSize

Definition at line 50 of file ExTextView.h.

Referenced by CExTextView::GetWindowReSize().

◆ maxXSize

int maxXSize

Definition at line 58 of file ExTextView.h.

Referenced by CExTextView::GetWindowReSize().

◆ maxYSize

int maxYSize

Definition at line 59 of file ExTextView.h.

Referenced by CExTextView::GetWindowReSize().

◆ origXSize

int origXSize

Definition at line 47 of file ExTextView.h.

◆ origYSize

int origYSize

Definition at line 48 of file ExTextView.h.

◆ pApp

CAppCallBack* pApp

Definition at line 36 of file ExTextView.h.

Referenced by jbxwl::ExecLogWnd(), and CExTextView::~CExTextView().

◆ pDoc

CDocument* pDoc

Definition at line 34 of file ExTextView.h.

Referenced by CExTextView::SetTitle(), and CExTextView::~CExTextView().

◆ pFrame

◆ prevXSize

int prevXSize

Definition at line 51 of file ExTextView.h.

◆ prevYSize

int prevYSize

Definition at line 52 of file ExTextView.h.

◆ sizeXYRate

double sizeXYRate

Definition at line 41 of file ExTextView.h.

Referenced by CExTextView::GetWindowReSize().

◆ Title

CString Title

Definition at line 38 of file ExTextView.h.

Referenced by CExTextView::SetTitle().

◆ xsize

int xsize

Definition at line 44 of file ExTextView.h.

◆ ysize

int ysize

Definition at line 45 of file ExTextView.h.


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