JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
ExClass.h
Go to the documentation of this file.
1#pragma once
2
8#ifdef WIN32
9#pragma warning(disable:4005)
10#pragma warning(disable:4996)
11#endif
12
13#include "ExView.h"
14#include "ExDocument.h"
15#include "ExFrame.h"
16#include "ExTextView.h"
17#include "ExTextFrame.h"
18
19#define MSG_DEFAULT_WINDOW_SIZE 512
20
21#define MSG_DFV_NOT_DISP -1
22#define MSG_DFV_FR_NULL 1
23#define MSG_DFV_CANCEL 2
24#define MSG_DFV_ERR_READ 10
25#define MSG_DFV_UNVISIBLE 11
26#define MSG_DFV_FAIL_VIEW 12
27
28
29//
30namespace jbxwl {
31
32using namespace jbxl;
33
34
35class CExDocument;
36class CExView;
37class CExScrollTextView;
38class CExFrame;
39class CExToolBar;
40
41
43// 上位アプリケーションへのコールバック用
44//
46{
47protected:
49 virtual ~CAppCallBack() {}
50
51public:
52 // 作業用
53 MSGraph<sWord> callMSGraph; // メモリ管理無し
54
55public:
56 virtual CExFrame* TemplateCallBack(CExFrame* pfrm, int mode, LPCTSTR title=NULL) { return NULL;}
57 virtual CMultiDocTemplate* GetMultiDocTemplate(int mode) { return NULL;}
58
59 virtual void DocumentDestructor(CExDocument* doc) {return;}
60
61 virtual void FrameDestructor(CExFrame* frm) {return;}
62 virtual void ViewDestructor (CExView* vw) {return;}
63
64 virtual void FrameDestructor(CExTextFrame* fm) {return;}
65 virtual void ViewDestructor (CExTextView* vw) {return;}
66};
67
68
70//
71int ExecTemplate(CMultiDocTemplate* ptemp, ExMSGraph<sWord>* pmsGraph=NULL, ExCmnHead* pcmnHead=NULL, CExFrame* prntFrm=NULL, int vPoint=0);
72
73CExFrame* CreateDocFrmView(CMultiDocTemplate* pDocTemp, CAppCallBack* papp=NULL);
74
75int ExecDocFrmView(CExFrame* pfrm, LPCTSTR fname=NULL);
76void ExecDocFrmViewError(HWND hwnd, int ret);
77
78// Document, View クラスの前処理 (ファイルをオープンし,表示の準備をする)
79BOOL InitialDocView(CExFrame* pfrm, LPCTSTR fname);
80
81// 各オブジェクト間の関連付け
82bool SetExLink(CExDocument* pdoc, CExFrame* pfrm, CExView* pview, CAppCallBack* papp);
83
84
85//
86#ifdef _UNICODE
87CString EasyGetOpenFileName(LPCWSTR title = NULL, HWND hWnd = NULL);
88CString EasyGetSaveFileName(LPCWSTR title = NULL, LPCWSTR extnt = NULL, HWND hWnd = NULL);
89CString EasyGetSaveFolderName(LPCWSTR folder = _T(""), LPCWSTR title = NULL, HWND hWnd = NULL);
90#else
91CString EasyGetOpenFileName(LPCTSTR title=NULL, HWND hWnd=NULL);
92CString EasyGetSaveFileName(LPCTSTR title=NULL, LPCTSTR extnt=NULL, HWND hWnd=NULL);
93CString EasyGetSaveFolderName(LPCTSTR folder=_T(""), LPCTSTR title=NULL, HWND hWnd=NULL);
94#endif
95
96int CALLBACK EasyGetSaveFolderNameCallBack(HWND hwnd, UINT uMsg, LPARAM lParam, LPARAM lpData);
97
98#define EasyGetOpenFolderName EasyGetSaveFolderName
99
100} // namespace
virtual void FrameDestructor(CExTextFrame *fm)
Definition ExClass.h:64
virtual CMultiDocTemplate * GetMultiDocTemplate(int mode)
Definition ExClass.h:57
virtual void ViewDestructor(CExView *vw)
Definition ExClass.h:62
virtual ~CAppCallBack()
Definition ExClass.h:49
MSGraph< sWord > callMSGraph
Definition ExClass.h:53
virtual void DocumentDestructor(CExDocument *doc)
Definition ExClass.h:59
virtual CExFrame * TemplateCallBack(CExFrame *pfrm, int mode, LPCTSTR title=NULL)
Definition ExClass.h:56
virtual void ViewDestructor(CExTextView *vw)
Definition ExClass.h:65
virtual void FrameDestructor(CExFrame *frm)
Definition ExClass.h:61
CString EasyGetOpenFileName(LPCTSTR title=NULL, HWND hWnd=NULL)
Definition ExClass.cpp:271
int ExecDocFrmView(CExFrame *pfrm, LPCTSTR fname=NULL)
Definition ExClass.cpp:99
CString EasyGetSaveFileName(LPCTSTR title=NULL, LPCTSTR extnt=NULL, HWND hWnd=NULL)
Definition ExClass.cpp:317
BOOL InitialDocView(CExFrame *pfrm, LPCTSTR fname)
Definition ExClass.cpp:73
CExFrame * CreateDocFrmView(CMultiDocTemplate *pDocTemp, CAppCallBack *papp=NULL)
Definition ExClass.cpp:38
int ExecTemplate(CMultiDocTemplate *ptemp, ExMSGraph< sWord > *pmsGraph=NULL, ExCmnHead *pcmnHead=NULL, CExFrame *prntFrm=NULL, int vPoint=0)
Definition ExClass.cpp:187
bool SetExLink(CExDocument *pdoc, CExFrame *pfrm, CExView *pview, CAppCallBack *papp)
Definition ExClass.cpp:18
void ExecDocFrmViewError(HWND hwnd, int ret)
Definition ExClass.cpp:148
int CALLBACK EasyGetSaveFolderNameCallBack(HWND hwnd, UINT uMsg, LPARAM lParam, LPARAM lpData)
Definition ExClass.cpp:387
CString EasyGetSaveFolderName(LPCTSTR folder=_T(""), LPCTSTR title=NULL, HWND hWnd=NULL)
Definition ExClass.cpp:352