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