JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
ExTextFrame.h
Go to the documentation of this file.
1#pragma once
2
12#include "ExToolBar.h"
13
14
15//
16namespace jbxwl {
17
18
19class CExDocument;
20class CExTextView;
21class CExTextFrame;
22class CExToolBar;
23class CAppCallBack;
24
25
26
28// CExTextFrame フレーム
29
30class CExTextFrame : public CMDIChildWnd
31{
32 DECLARE_DYNCREATE(CExTextFrame)
33
34protected:
35 CExTextFrame();
36
37// アトリビュート
38public:
39
40 CDocument* pDoc;
42
44 CMultiDocTemplate* pTempl; // 自分を作り出したテンプレートへのポインタ.
45
47
48 CString Title;
49 CString preTitle;
50
51 bool doneErrorMessage; // 既にこのテンプレートの,(致命的な)エラーメッセージの処理は行われている.
52 bool cancelOperation; // オペレータにより,処理がキャンセルされた
53
54 bool reSizeMoving; // ウィンドウはリサイズまたは移動中
55
56// オペレーション
57public:
58 virtual void onLButtonDBLClick() {}
59
60// オーバーライド
61public:
62 //{{AFX_VIRTUAL(CExTextFrame)
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 ~CExTextFrame();
70
71protected:
72 //{{AFX_MSG(CExTextFrame)
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 afx_msg void OnMove(int x, int y);
87};
88
89
91
92//{{AFX_INSERT_LOCATION}}
93
94
95} // namespace
96
CAppCallBack * pApp
Definition ExTextFrame.h:43
CMultiDocTemplate * pTempl
Definition ExTextFrame.h:44
virtual void onLButtonDBLClick()
Definition ExTextFrame.h:58
CExToolBar * toolBar
Definition ExTextFrame.h:46
afx_msg void OnMove(int x, int y)
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)
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)