JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
LogWndFrame.cpp
Go to the documentation of this file.
1//
2// LogWndFrame.cpp : インプリメンテーション ファイル
3//
4
5#include "MFCBase.h"
6#include "LogWndFrame.h"
7#include "MessageBoxDLG.h"
8
9
10#ifdef _DEBUG
11#define new DEBUG_NEW
12#undef THIS_FILE
13static char THIS_FILE[] = __FILE__;
14#endif
15
16
17using namespace jbxl;
18using namespace jbxwl;
19
20
22// CLogWndFrame
23
24IMPLEMENT_DYNCREATE(CLogWndFrame, CExTextFrame)
25
27{
28 //"DEBUG_INFO("CONSTRUCTOR: CLogWndFrame\n");
29
30 pDoc = NULL;
31 pView = NULL;
32 pApp = NULL;
33}
34
35
36//
38{
39 DEBUG_INFO("DESTRUCTOR: CLogWndFrame: START\n");
40
41 DEBUG_INFO("DESTRUCTOR: CLogWndFrame: END\n");
42}
43
44
45BEGIN_MESSAGE_MAP(CLogWndFrame, CExTextFrame)
46 //{{AFX_MSG_MAP(CLogWndFrame)
47 ON_COMMAND(ID_LOG_COPY, OnLogCopy)
48 ON_COMMAND(ID_LOG_SAVE, OnLogSave)
49 ON_COMMAND(ID_LOG_CLEAR, OnLogClear)
50 ON_WM_CREATE()
51 //}}AFX_MSG_MAP
52// ON_WM_ERASEBKGND()
53END_MESSAGE_MAP()
54
55
56
58// CLogWndFrame メッセージ ハンドラ
59//
60int CLogWndFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
61{
62 if (CExTextFrame::OnCreate(lpCreateStruct) == -1) return -1;
63
64 // ツールバーの作成
65// toolBar = new CExToolBar(this);
66 toolBar = new CExToolBar();
67 if (!toolBar->CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
68 | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC | WS_CLIPCHILDREN) ||
69 !toolBar->LoadToolBar(IDR_LOG_WND_TOOLBAR))
70 {
71 TRACE0("Failed to create toolbar\n");
72 return -1; // 作成に失敗
73 }
74
75 // TODO: ツール バーをドッキング可能にしない場合は以下の3行を削除してください.
76 toolBar->EnableDocking(CBRS_ALIGN_ANY);
77 EnableDocking(CBRS_ALIGN_ANY);
78 DockControlBar(toolBar);
79
80 return 0;
81}
82
83
85{
86 CString data = pView->getCopyData();
87
88 char* mbstr = ts2mbs((LPCTSTR)data);
89 size_t size = strlen(mbstr);
90 if (size<=0) {
91 ::free(mbstr);
92 return;
93 }
94
95 HGLOBAL hMem = ::GlobalAlloc(GHND, size+1);
96 char* pszptr = (char*)::GlobalLock(hMem);
97 memcpy(pszptr, mbstr, size+1);
98 ::GlobalUnlock(hMem);
99 ::free(mbstr);
100
101 // to Clipboard
102 if (!OpenClipboard()) {
103 ::GlobalFree(hMem);
104 DEBUG_ERROR("CLogWndFrame::OnLogCopy(): ERROR: Clipboad open error!!\n");
105 return;
106 }
107 if (!EmptyClipboard()) {
108 ::GlobalFree(hMem);
109 DEBUG_ERROR("CLogWndFrame::OnLogCopy(): ERROR: Clipboad empty error!!\n");
110 return;
111 }
112 if (!::SetClipboardData(CF_TEXT, hMem)) {
113 ::GlobalFree(hMem);
114 DEBUG_ERROR("CLogWndFrame::OnLogCopy(): ERROR: Clipboad set error!!\n");
115 CloseClipboard();
116 return;
117 }
118 CloseClipboard();
119 return;
120}
121
122
124{
125 if (pDoc->save_fname==_T("")) {
126 CString mesg;
127 mesg.LoadString(IDS_STR_SPECIFY_SAVE_FILE); // 保存用ファイルを指定する
128 pDoc->save_fname = pDoc->easyGetSaveFileName(mesg, pView->m_hWnd);
129 }
130 if (pDoc->save_fname==_T("")) return;
131 int ret = pDoc->writeLogFile();
132
133 if (ret<0) MessageBoxDLG(IDS_STR_ERROR, IDS_STR_ERR_WRITE_FILE, MB_OK, NULL); // ファイルの書き込みに失敗しました
134}
135
136
138{
139 CString mesg, noti;
140 mesg.LoadString(IDS_STR_ASK_LOG_CLEAR); // ログをクリアしますか?
141 noti.LoadString(IDS_STR_CNFRM); // 確認
142 int ret = MessageBox(mesg, noti, MB_YESNO | MB_ICONQUESTION);
143 if (ret==IDYES) pView->clearViewDoc();
144}
145
146
147
149//
150
151CLogWndFrame* jbxwl::ExecLogWnd(CMultiDocTemplate* pDocTempl, LPCTSTR title, CAppCallBack* app)
152{
153 // クラスの取得
154 CLogWndDoc* pdoc = (CLogWndDoc*)pDocTempl->CreateNewDocument();
155 CLogWndFrame* pfrm = (CLogWndFrame*)pDocTempl->CreateNewFrame((CDocument*)pdoc, NULL);
156 CLogWndView* pviw = pdoc->GetView();
157 pfrm->pTempl = pDocTempl;
158
159 if (pdoc==NULL || pfrm==NULL || pviw==NULL) return NULL;
160
161 pdoc->pView = pfrm->pView = pviw;
162 pdoc->pFrame = pviw->pFrame = pfrm;
163 pviw->pDoc = pfrm->pDoc = pdoc;
164 pfrm->pApp = pviw->pApp = app;
165 pfrm->Title = title;
166
167 pfrm->CExTextFrame::pView = (CExTextView*) pviw;
168 pfrm->CExTextFrame::pDoc = (CDocument*) pdoc;
169 pviw->CExTextView::pFrame = (CExTextFrame*)pfrm;
170 pviw->CExTextView::pDoc = (CDocument*) pdoc;
171
172 //
173 pfrm->ShowWindow(SW_SHOW);
174 pfrm->SetFocus();
175 pfrm->pView->SetFocus();
176
177 if (!pfrm->Title.IsEmpty()) {
178 pfrm->pView->SetTitle(pfrm->Title);
179 }
180
181 return pfrm;
182}
static char THIS_FILE[]
CAppCallBack * pApp
Definition ExTextFrame.h:43
CMultiDocTemplate * pTempl
Definition ExTextFrame.h:44
CAppCallBack * pApp
Definition ExTextView.h:36
CLogWndView * pView
Definition LogWndDoc.h:37
int writeLogFile(void)
CLogWndFrame * pFrame
Definition LogWndDoc.h:36
CLogWndView * GetView(void)
CString save_fname
Definition LogWndDoc.h:71
CString easyGetSaveFileName(LPCTSTR title, HWND hWnd)
CLogWndView * pView
Definition LogWndFrame.h:31
CLogWndDoc * pDoc
Definition LogWndFrame.h:30
afx_msg void OnLogClear()
afx_msg void OnLogSave()
afx_msg void OnLogCopy()
CLogWndDoc * pDoc
Definition LogWndView.h:29
CLogWndFrame * pFrame
Definition LogWndView.h:30
void SetTitle(LPCTSTR title)
CString getCopyData(void)
void clearViewDoc(void)
char * ts2mbs(LPCTSTR str)
Definition WinTools.h:57
CMessageBoxDLG * MessageBoxDLG(int ttl, int msg, CWnd *wnd=NULL)
CLogWndFrame * ExecLogWnd(CMultiDocTemplate *pDocTempl, LPCTSTR title, CAppCallBack *app)
#define IDS_STR_CNFRM
Definition resource.h:99
#define IDS_STR_ERROR
Definition resource.h:98
#define IDS_STR_SPECIFY_SAVE_FILE
Definition resource.h:118
#define ID_LOG_SAVE
Definition resource.h:126
#define IDS_STR_ERR_WRITE_FILE
Definition resource.h:93
#define ID_LOG_CLEAR
Definition resource.h:127
#define IDR_LOG_WND_TOOLBAR
Definition resource.h:12
#define IDS_STR_ASK_LOG_CLEAR
Definition resource.h:123
#define ID_LOG_COPY
Definition resource.h:128