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

#include <ExTextFrame.h>

Inheritance diagram for CExTextFrame:
Collaboration diagram for CExTextFrame:

Public Member Functions

virtual void onLButtonDBLClick ()
 
virtual BOOL Create (LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle=WS_CHILD|WS_VISIBLE|WS_OVERLAPPEDWINDOW|WS_CLIPCHILDREN, const RECT &rect=rectDefault, CMDIFrameWnd *pParentWnd=NULL, CCreateContext *pContext=NULL)
 
virtual ~CExTextFrame ()
 
afx_msg LRESULT OnEnterSizeMove (WPARAM wParam, LPARAM lParam)
 
afx_msg LRESULT OnExitSizeMove (WPARAM wParam, LPARAM lParam)
 
afx_msg BOOL OnEraseBkgnd (CDC *pDC)
 
afx_msg void OnSizing (UINT fwSide, LPRECT pRect)
 
afx_msg void OnMove (int x, int y)
 

Public Attributes

CDocument * pDoc
 
CExTextViewpView
 
CAppCallBackpApp
 
CMultiDocTemplate * pTempl
 
CExToolBartoolBar
 
CString Title
 
CString preTitle
 
bool doneErrorMessage
 
bool cancelOperation
 
bool reSizeMoving
 

Protected Member Functions

 CExTextFrame ()
 

Detailed Description

Definition at line 30 of file ExTextFrame.h.

Constructor & Destructor Documentation

◆ CExTextFrame()

CExTextFrame ( )
protected

Definition at line 16 of file ExTextFrame.cpp.

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}
CAppCallBack * pApp
Definition ExTextFrame.h:43
CMultiDocTemplate * pTempl
Definition ExTextFrame.h:44
CExToolBar * toolBar
Definition ExTextFrame.h:46
CExTextView * pView
Definition ExTextFrame.h:41

◆ ~CExTextFrame()

~CExTextFrame ( )
virtual

Definition at line 38 of file ExTextFrame.cpp.

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}
virtual void FrameDestructor(CExFrame *frm)
Definition ExClass.h:61
CExTextFrame * pFrame
Definition ExTextView.h:35

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

Here is the call graph for this function:

Member Function Documentation

◆ Create()

BOOL Create ( LPCTSTR lpszClassName,
LPCTSTR lpszWindowName,
DWORD dwStyle = WS_CHILD|WS_VISIBLE|WS_OVERLAPPEDWINDOW|WS_CLIPCHILDREN,
const RECT & rect = rectDefault,
CMDIFrameWnd * pParentWnd = NULL,
CCreateContext * pContext = NULL )
virtual

Definition at line 80 of file ExTextFrame.cpp.

81{
82 dwStyle = dwStyle | WS_CLIPCHILDREN;
83 dwStyle = dwStyle & (~WS_MAXIMIZEBOX); // 最大化ボタン禁止
84 return CMDIChildWnd::Create(lpszClassName, lpszWindowName, dwStyle, rect, pParentWnd, pContext);
85}

◆ OnEnterSizeMove()

LRESULT OnEnterSizeMove ( WPARAM wParam,
LPARAM lParam )

Definition at line 108 of file ExTextFrame.cpp.

109{
110 reSizeMoving = true;
111 return 0;
112}

References CExTextFrame::reSizeMoving.

◆ OnEraseBkgnd()

BOOL OnEraseBkgnd ( CDC * pDC)

Definition at line 125 of file ExTextFrame.cpp.

126{
127 // TODO: ここにメッセージ ハンドラ コードを追加するか、既定の処理を呼び出します.
128 return CMDIChildWnd::OnEraseBkgnd(pDC);
129}

◆ OnExitSizeMove()

LRESULT OnExitSizeMove ( WPARAM wParam,
LPARAM lParam )

Definition at line 115 of file ExTextFrame.cpp.

116{
117 reSizeMoving = false;
118 return 0;
119}

References CExTextFrame::reSizeMoving.

◆ onLButtonDBLClick()

virtual void onLButtonDBLClick ( )
inlinevirtual

Definition at line 58 of file ExTextFrame.h.

58{}

◆ OnMove()

void OnMove ( int x,
int y )

Definition at line 152 of file ExTextFrame.cpp.

153{
154 CMDIChildWnd::OnMove(x, y);
155
156 // TODO: ここにメッセージ ハンドラー コードを追加します.
157 this->OnPaint();
158}

◆ OnSizing()

void OnSizing ( UINT fwSide,
LPRECT pRect )

Definition at line 133 of file ExTextFrame.cpp.

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}
POINT GetWindowReSize(POINT pt)
POINT GetWindowSize(POINT pt)
POINT GetClientSize(POINT pt)

References CExTextView::doReSize, CExTextView::GetClientSize(), CExTextView::GetWindowReSize(), CExTextView::GetWindowSize(), and CExTextFrame::pView.

Here is the call graph for this function:

Member Data Documentation

◆ cancelOperation

bool cancelOperation

Definition at line 52 of file ExTextFrame.h.

◆ doneErrorMessage

bool doneErrorMessage

Definition at line 51 of file ExTextFrame.h.

◆ pApp

CAppCallBack* pApp

Definition at line 43 of file ExTextFrame.h.

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

◆ pDoc

CDocument* pDoc

Definition at line 40 of file ExTextFrame.h.

Referenced by CExTextFrame::~CExTextFrame().

◆ preTitle

CString preTitle

Definition at line 49 of file ExTextFrame.h.

◆ pTempl

CMultiDocTemplate* pTempl

Definition at line 44 of file ExTextFrame.h.

Referenced by jbxwl::ExecLogWnd().

◆ pView

◆ reSizeMoving

bool reSizeMoving

Definition at line 54 of file ExTextFrame.h.

Referenced by CExTextFrame::OnEnterSizeMove(), and CExTextFrame::OnExitSizeMove().

◆ Title

CString Title

Definition at line 48 of file ExTextFrame.h.

Referenced by jbxwl::ExecLogWnd(), CExTextView::SetTitle(), and CLogWndView::SetTitle().

◆ toolBar

CExToolBar* toolBar

Definition at line 46 of file ExTextFrame.h.


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