JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
ExTextFrame.cpp
Go to the documentation of this file.
1//
2// ExTextFrame.cpp : インプリメンテーション ファイル
3//
4
5#include "ExTextFrame.h"
6
7
8using namespace jbxwl;
9
10
12// CExTextFrame
13
14IMPLEMENT_DYNCREATE(CExTextFrame, CMDIChildWnd)
15
17{
18 //DEBUG_INFO("CONSTRUCTOR: CExTextFrame\n");
19
20 pDoc = NULL;
21 pView = NULL;
22 pApp = NULL;
23 pTempl = NULL;
24
25 toolBar = NULL;
26
27 Title = _T("");
28 preTitle = _T("");
29
30 cancelOperation = false;
31 doneErrorMessage = false;
32
33 reSizeMoving = false;
34}
35
36
37//
39{
40 DEBUG_INFO("DESTRUCTOR: CExTextFrame: START\n");
41
42 if (pApp!=NULL) {
43 DEBUG_INFO("Call Application FrameDestructor()\n");
44 pApp->FrameDestructor(this); // 上位アプリケーションに通知
45 }
46
47 if (!isNull(pView)) pView->pFrame = NULL;
48 pView = NULL;
49 pDoc = NULL;
50
51 DEBUG_INFO("DESTRUCTOR: CExTextFrame: END\n");
52}
53
54
55//
56// メッセージマップ
57//
58
59BEGIN_MESSAGE_MAP(CExTextFrame, CMDIChildWnd)
60 //{{AFX_MSG_MAP(CExTextFrame)
61 //}}AFX_MSG_MAP
62
63#ifdef ON_WM_ENTERSIZEMOVE
64 ON_WM_ENTERSIZEMOVE()
65 ON_WM_EXITSIZEMOVE()
66#else
67 ON_MESSAGE(WM_ENTERSIZEMOVE, OnEnterSizeMove)
68 ON_MESSAGE(WM_EXITSIZEMOVE, OnExitSizeMove)
69#endif
70 ON_WM_ERASEBKGND()
71 ON_WM_SIZING()
72 ON_WM_MOVE()
73END_MESSAGE_MAP()
74
75
76
78// CExTextFrame メッセージ ハンドラ
79
80BOOL CExTextFrame::Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CMDIFrameWnd* pParentWnd, CCreateContext* pContext)
81{
82 dwStyle = dwStyle | WS_CLIPCHILDREN;
83 dwStyle = dwStyle & (~WS_MAXIMIZEBOX); // 最大化ボタン禁止
84 return CMDIChildWnd::Create(lpszClassName, lpszWindowName, dwStyle, rect, pParentWnd, pContext);
85}
86
87
88
89#ifdef ON_WM_ENTERSIZEMOVE
90
92{
93 CMDIChildWnd::OnEnterSizeMove();
94 reSizeMoving = true;
95}
96
97
99{
100 CMDIChildWnd::OnExitSizeMove();
101 reSizeMoving = false;
102}
103
104
105#else
106
107
108LRESULT CExTextFrame::OnEnterSizeMove(WPARAM wParam, LPARAM lParam)
109{
110 reSizeMoving = true;
111 return 0;
112}
113
114
115LRESULT CExTextFrame::OnExitSizeMove(WPARAM wParam, LPARAM lParam)
116{
117 reSizeMoving = false;
118 return 0;
119}
120
121#endif
122
123
124
126{
127 // TODO: ここにメッセージ ハンドラ コードを追加するか、既定の処理を呼び出します.
128 return CMDIChildWnd::OnEraseBkgnd(pDC);
129}
130
131
132
133void CExTextFrame::OnSizing(UINT fwSide, LPRECT pRect)
134{
135 POINT pt;
136 pt.x = pRect->right - pRect->left;
137 pt.y = pRect->bottom - pRect->top;
138
139 pt = pView->GetClientSize(pt);
140 pt = pView->GetWindowReSize(pt);
141 pt = pView->GetWindowSize(pt);
142
143 pRect->right = pRect->left + pt.x;
144 pRect->bottom = pRect->top + pt.y;
145 CMDIChildWnd::OnSizing(fwSide, pRect);
146
147 pView->doReSize = true;
148}
149
150
151
152void CExTextFrame::OnMove(int x, int y)
153{
154 CMDIChildWnd::OnMove(x, y);
155
156 // TODO: ここにメッセージ ハンドラー コードを追加します.
157 this->OnPaint();
158}
159
virtual void FrameDestructor(CExFrame *frm)
Definition ExClass.h:61
CAppCallBack * pApp
Definition ExTextFrame.h:43
afx_msg void OnMove(int x, int y)
afx_msg LRESULT OnEnterSizeMove(WPARAM wParam, LPARAM lParam)
CExTextView * pView
Definition ExTextFrame.h:41
afx_msg LRESULT OnExitSizeMove(WPARAM wParam, LPARAM lParam)
afx_msg void OnSizing(UINT fwSide, LPRECT pRect)
afx_msg BOOL OnEraseBkgnd(CDC *pDC)
POINT GetWindowReSize(POINT pt)
CExTextFrame * pFrame
Definition ExTextView.h:35
POINT GetWindowSize(POINT pt)
POINT GetClientSize(POINT pt)