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

#include <ExFrame.h>

Inheritance diagram for CExFrame:
Collaboration diagram for CExFrame:

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 ~CExFrame ()
 
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)
 

Public Attributes

CString Title
 
CString preTitle
 
int colorMode
 
CExDocumentpDoc
 
CExViewpView
 
CAppCallBackpApp
 
CMultiDocTemplate * pTempl
 
void * anyData
 
CExToolBartoolBar
 
CScrollBar * hScrollBar
 
CScrollBar * vScrollBar
 
bool doneErrorMessage
 
bool cancelOperation
 
bool reSizeMoving
 

Protected Member Functions

 CExFrame ()
 

Detailed Description

Definition at line 28 of file ExFrame.h.

Constructor & Destructor Documentation

◆ CExFrame()

CExFrame ( )
protected

Definition at line 24 of file ExFrame.cpp.

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}
CString Title
Definition ExFrame.h:37
CExView * pView
Definition ExFrame.h:42
CScrollBar * hScrollBar
Definition ExFrame.h:48
CScrollBar * vScrollBar
Definition ExFrame.h:49
bool reSizeMoving
Definition ExFrame.h:54
CAppCallBack * pApp
Definition ExFrame.h:43
void * anyData
Definition ExFrame.h:45
CMultiDocTemplate * pTempl
Definition ExFrame.h:44
CExDocument * pDoc
Definition ExFrame.h:41
bool cancelOperation
Definition ExFrame.h:52
CExToolBar * toolBar
Definition ExFrame.h:47
CString preTitle
Definition ExFrame.h:38
bool doneErrorMessage
Definition ExFrame.h:51

◆ ~CExFrame()

~CExFrame ( )
virtual

Definition at line 50 of file ExFrame.cpp.

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}
virtual void FrameDestructor(CExFrame *frm)
Definition ExClass.h:61
CExFrame * pFrame
Definition ExDocument.h:56
CExFrame * pFrame
Definition ExView.h:77

References CAppCallBack::FrameDestructor(), CExFrame::pApp, CExFrame::pDoc, CExDocument::pFrame, CExView::pFrame, and CExFrame::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 88 of file ExFrame.cpp.

89{
90 dwStyle = dwStyle | WS_CLIPCHILDREN;
91 //dwStyle = dwStyle & (~WS_MAXIMIZEBOX); // 最大化ボタン禁止
92 return CMDIChildWnd::Create(lpszClassName, lpszWindowName, dwStyle, rect, pParentWnd, pContext);
93}

◆ OnEnterSizeMove()

LRESULT OnEnterSizeMove ( WPARAM wParam,
LPARAM lParam )

Definition at line 113 of file ExFrame.cpp.

114{
115 reSizeMoving = true;
116 return 0;
117}

References CExFrame::reSizeMoving.

◆ OnEraseBkgnd()

BOOL OnEraseBkgnd ( CDC * pDC)

Definition at line 130 of file ExFrame.cpp.

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

◆ OnExitSizeMove()

LRESULT OnExitSizeMove ( WPARAM wParam,
LPARAM lParam )

Definition at line 120 of file ExFrame.cpp.

121{
122 reSizeMoving = false;
123 return 0;
124}

References CExFrame::reSizeMoving.

◆ onLButtonDBLClick()

virtual void onLButtonDBLClick ( )
inlinevirtual

Reimplemented in CvThumbNailFrame.

Definition at line 58 of file ExFrame.h.

58{}

Referenced by CDxVScrollView::OnLButtonDblClk().

Here is the caller graph for this function:

◆ OnSizing()

void OnSizing ( UINT fwSide,
LPRECT pRect )

Definition at line 138 of file ExFrame.cpp.

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}
POINT GetWindowReSize(POINT pt)
Definition ExView.cpp:237
POINT GetWindowSize(POINT pt)
Definition ExView.cpp:205
POINT GetClientSize(POINT pt)
Definition ExView.cpp:222
bool doReSize
Definition ExView.h:121

References CExView::doReSize, CExView::GetClientSize(), CExView::GetWindowReSize(), CExView::GetWindowSize(), and CExFrame::pView.

Here is the call graph for this function:

Member Data Documentation

◆ anyData

void* anyData

Definition at line 45 of file ExFrame.h.

◆ cancelOperation

bool cancelOperation

◆ colorMode

int colorMode

Definition at line 39 of file ExFrame.h.

Referenced by jbxwl::ExecTemplate(), and CvThumbNailFrame::onLButtonDBLClick().

◆ doneErrorMessage

◆ hScrollBar

CScrollBar* hScrollBar

Definition at line 48 of file ExFrame.h.

◆ pApp

CAppCallBack* pApp

Definition at line 43 of file ExFrame.h.

Referenced by jbxwl::SetExLink(), and CExFrame::~CExFrame().

◆ pDoc

◆ preTitle

CString preTitle

Definition at line 38 of file ExFrame.h.

Referenced by jbxwl::ExecDocFrmView().

◆ pTempl

CMultiDocTemplate* pTempl

Definition at line 44 of file ExFrame.h.

Referenced by jbxwl::CreateDocFrmView().

◆ pView

◆ reSizeMoving

bool reSizeMoving

Definition at line 54 of file ExFrame.h.

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

◆ Title

CString Title

Definition at line 37 of file ExFrame.h.

Referenced by jbxwl::ExecDocFrmView(), and CExView::SetTitle().

◆ toolBar

CExToolBar* toolBar

Definition at line 47 of file ExFrame.h.

◆ vScrollBar

CScrollBar* vScrollBar

Definition at line 49 of file ExFrame.h.


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