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

#include <LogWndFrame.h>

Inheritance diagram for CLogWndFrame:
Collaboration diagram for CLogWndFrame:

Public Attributes

CLogWndDocpDoc
 
CLogWndViewpView
 
- Public Attributes inherited from CExTextFrame
CDocument * pDoc
 
CExTextViewpView
 
CAppCallBackpApp
 
CMultiDocTemplate * pTempl
 
CExToolBartoolBar
 
CString Title
 
CString preTitle
 
bool doneErrorMessage
 
bool cancelOperation
 
bool reSizeMoving
 

Protected Member Functions

 CLogWndFrame ()
 
virtual ~CLogWndFrame ()
 
afx_msg int OnCreate (LPCREATESTRUCT lpCreateStruct)
 
afx_msg void OnLogCopy ()
 
afx_msg void OnLogSave ()
 
afx_msg void OnLogClear ()
 
- Protected Member Functions inherited from CExTextFrame
 CExTextFrame ()
 

Additional Inherited Members

- Public Member Functions inherited from CExTextFrame
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 ~CExTextFrame ()
 
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)
 
afx_msg void OnMove (int x, int y)
 

Detailed Description

Definition at line 22 of file LogWndFrame.h.

Constructor & Destructor Documentation

◆ CLogWndFrame()

CLogWndFrame ( )
protected

Definition at line 26 of file LogWndFrame.cpp.

27{
28 //"DEBUG_INFO("CONSTRUCTOR: CLogWndFrame\n");
29
30 pDoc = NULL;
31 pView = NULL;
32 pApp = NULL;
33}
CAppCallBack * pApp
Definition ExTextFrame.h:43
CLogWndView * pView
Definition LogWndFrame.h:31
CLogWndDoc * pDoc
Definition LogWndFrame.h:30

◆ ~CLogWndFrame()

~CLogWndFrame ( )
protectedvirtual

Definition at line 37 of file LogWndFrame.cpp.

38{
39 DEBUG_INFO("DESTRUCTOR: CLogWndFrame: START\n");
40
41 DEBUG_INFO("DESTRUCTOR: CLogWndFrame: END\n");
42}

Member Function Documentation

◆ OnCreate()

int OnCreate ( LPCREATESTRUCT lpCreateStruct)
protected

Definition at line 60 of file LogWndFrame.cpp.

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) ||
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}
CExToolBar * toolBar
Definition ExTextFrame.h:46
BOOL LoadToolBar(UINT id)
Definition ExToolBar.cpp:37
#define IDR_LOG_WND_TOOLBAR
Definition resource.h:12

References IDR_LOG_WND_TOOLBAR.

◆ OnLogClear()

void OnLogClear ( )
protected

Definition at line 137 of file LogWndFrame.cpp.

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}
void clearViewDoc(void)
#define IDS_STR_CNFRM
Definition resource.h:99
#define IDS_STR_ASK_LOG_CLEAR
Definition resource.h:123

References CLogWndView::clearViewDoc(), IDS_STR_ASK_LOG_CLEAR, IDS_STR_CNFRM, and CLogWndFrame::pView.

Here is the call graph for this function:

◆ OnLogCopy()

void OnLogCopy ( )
protected

Definition at line 84 of file LogWndFrame.cpp.

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}
CString getCopyData(void)
char * ts2mbs(LPCTSTR str)
Definition WinTools.h:57

References CLogWndView::getCopyData(), CLogWndFrame::pView, and jbxwl::ts2mbs().

Here is the call graph for this function:

◆ OnLogSave()

void OnLogSave ( )
protected

Definition at line 123 of file LogWndFrame.cpp.

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}
int writeLogFile(void)
CString save_fname
Definition LogWndDoc.h:71
CString easyGetSaveFileName(LPCTSTR title, HWND hWnd)
CMessageBoxDLG * MessageBoxDLG(int ttl, int msg, CWnd *wnd=NULL)
#define IDS_STR_ERROR
Definition resource.h:98
#define IDS_STR_SPECIFY_SAVE_FILE
Definition resource.h:118
#define IDS_STR_ERR_WRITE_FILE
Definition resource.h:93

References CLogWndDoc::easyGetSaveFileName(), IDS_STR_ERR_WRITE_FILE, IDS_STR_ERROR, IDS_STR_SPECIFY_SAVE_FILE, jbxwl::MessageBoxDLG(), CLogWndFrame::pDoc, CLogWndFrame::pView, CLogWndDoc::save_fname, and CLogWndDoc::writeLogFile().

Here is the call graph for this function:

Member Data Documentation

◆ pDoc

CLogWndDoc* pDoc

Definition at line 30 of file LogWndFrame.h.

Referenced by jbxwl::ExecLogWnd(), and CLogWndFrame::OnLogSave().

◆ pView


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