JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
ExFrame.h
Go to the documentation of this file.
1#pragma once
2
12#include "ExToolBar.h"
13
14//
15namespace jbxwl {
16
17
18class CExDocument;
19class CExView;
20class CExFrame;
21class CExToolBar;
22class CAppCallBack;
23
24
26// CExFrame フレーム
27
28class CExFrame : public CMDIChildWnd
29{
30 DECLARE_DYNCREATE(CExFrame)
31
32protected:
33 CExFrame();
34
35// アトリビュート
36public:
37 CString Title;
38 CString preTitle;
39 int colorMode; // データのカラータイプ(Doc<->View 受け渡し用)
40
44 CMultiDocTemplate* pTempl; // 自分を作り出したテンプレートへのポインタ.
45 void* anyData;
46
48 CScrollBar* hScrollBar;
49 CScrollBar* vScrollBar;
50
51 bool doneErrorMessage; // 既にこのテンプレートの,(致命的な)エラーメッセージの処理は行われている.
52 bool cancelOperation; // オペレータにより,処理がキャンセルされた
53
54 bool reSizeMoving; // ウィンドウはリサイズまたは移動中
55
56// オペレーション
57public:
58 virtual void onLButtonDBLClick() {}
59
60// オーバーライド
61public:
62 //{{AFX_VIRTUAL(CExFrame)
63 virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle=WS_CHILD|WS_VISIBLE|WS_OVERLAPPEDWINDOW|WS_CLIPCHILDREN,
64 const RECT& rect=rectDefault, CMDIFrameWnd* pParentWnd=NULL, CCreateContext* pContext=NULL);
65 //}}AFX_VIRTUAL
66
67// インプリメンテーション
68public:
69 virtual ~CExFrame();
70
71protected:
72 //{{AFX_MSG(CExFrame)
73 //}}AFX_MSG
74 DECLARE_MESSAGE_MAP()
75public:
76
77#ifdef ON_WM_ENTERSIZEMOVE
78 afx_msg void OnEnterSizeMove(); // for VS2008 over
79 afx_msg void OnExitSizeMove();
80#else
81 afx_msg LRESULT OnEnterSizeMove(WPARAM wParam, LPARAM lParam); // for VS2005
82 afx_msg LRESULT OnExitSizeMove(WPARAM wParam, LPARAM lParam);
83#endif
84 afx_msg BOOL OnEraseBkgnd(CDC* pDC);
85 afx_msg void OnSizing(UINT fwSide, LPRECT pRect);
86};
87
88
90
91//{{AFX_INSERT_LOCATION}}
92
93
94} // namespace
CString Title
Definition ExFrame.h:37
CExView * pView
Definition ExFrame.h:42
CScrollBar * hScrollBar
Definition ExFrame.h:48
CScrollBar * vScrollBar
Definition ExFrame.h:49
virtual ~CExFrame()
Definition ExFrame.cpp:50
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
virtual void onLButtonDBLClick()
Definition ExFrame.h:58
bool cancelOperation
Definition ExFrame.h:52
CExToolBar * toolBar
Definition ExFrame.h:47
CString preTitle
Definition ExFrame.h:38
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)
Definition ExFrame.cpp:88
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
bool doneErrorMessage
Definition ExFrame.h:51
afx_msg BOOL OnEraseBkgnd(CDC *pDC)
Definition ExFrame.cpp:130