-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChildFrm.cpp
232 lines (185 loc) · 7.06 KB
/
ChildFrm.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
// ChildFrm.cpp : implementation of the CChildFrame class
//
#include "pch.h"
#include "framework.h"
#include "DatabaseExplorer.h"
#include "ChildFrm.h"
//#include "DatabaseExplorerView.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CChildFrame
IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWndExt)
BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWndExt)
ON_WM_CREATE()
ON_WM_DESTROY()
ON_COMMAND(ID_VIEW_QUERY, &CChildFrame::OnViewQuery)
ON_COMMAND(ID_VIEW_MESSAGE, &CChildFrame::OnViewMessage)
ON_COMMAND(ID_VIEW_DATABASE, &CChildFrame::OnViewDatabase)
ON_MESSAGE(WMU_POSTINIT, &CChildFrame::OnPostInit)
ON_MESSAGE(WMU_ISPOPULATEMODE, &CChildFrame::OnIsPopulateMode)
ON_MESSAGE(WMU_SETWORDWRAP, &CChildFrame::OnSetWordWrap)
ON_MESSAGE(WMU_DARKMODE, &CChildFrame::OnDarkMode)
END_MESSAGE_MAP()
// CChildFrame construction/destruction
CChildFrame::CChildFrame() noexcept
{
// TODO: add member initialization code here
}
CChildFrame::~CChildFrame()
{
}
BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying the CREATESTRUCT cs
if(! CMDIChildWndExt::PreCreateWindow(cs))
return FALSE;
return TRUE;
}
// CChildFrame diagnostics
#ifdef _DEBUG
void CChildFrame::AssertValid() const
{
CMDIChildWndExt::AssertValid();
}
void CChildFrame::Dump(CDumpContext& dc) const
{
CMDIChildWndExt::Dump(dc);
}
#endif //_DEBUG
// CChildFrame message handlers
int CChildFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CMDIChildWndExt::OnCreate(lpCreateStruct) == -1)
return -1;
// TODO: Add your specialized creation code here
SetIcon(theApp.LoadIcon(IDR_MAINFRAME), FALSE);
// enable Visual Studio 2005 style docking window behavior
CDockingManager::SetDockingMode(DT_SMART);
// enable Visual Studio 2005 style docking window auto-hide behavior
EnableAutoHidePanes(CBRS_ALIGN_ANY);
CMDIChildWndEx::m_bEnableFloatingBars = TRUE;
CString sTitle(_T("Queries"));
if (! m_pQueryPane->Create(sTitle, this, CSize(300, 200), TRUE, PANEQUERYID,
WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | CBRS_BOTTOM | CBRS_FLOAT_MULTI,
AFX_CBRS_REGULAR_TABS, AFX_NON_CLOSE_DOCKING_PANE_STYLE))
{
TRACE(_T("Failed to create Query window\n"));
return FALSE; // failed to create
}
sTitle.Format(_T("Messages"));
if (! m_pMessagePane->Create(sTitle, this, CSize(700, 200), TRUE, PANEMESSAGEID,
WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | CBRS_BOTTOM | CBRS_FLOAT_MULTI,
AFX_CBRS_REGULAR_TABS, AFX_NON_CLOSE_DOCKING_PANE_STYLE))
{
TRACE(_T("Failed to create Message window\n"));
return FALSE; // failed to create
}
sTitle.Format(_T("Databases"));
if (! m_pDatabasePane->Create(sTitle, this, CSize(250, 250), TRUE, PANEDATABASEID,
WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | CBRS_LEFT | CBRS_FLOAT_MULTI,
AFX_CBRS_REGULAR_TABS, AFX_NON_CLOSE_DOCKING_PANE_STYLE))
{
TRACE(_T("Failed to create Database window\n"));
return FALSE; // failed to create
}
SetDockingWindowIcons(TRUE);
m_pQueryPane->EnableDocking(CBRS_ALIGN_ANY);
m_pMessagePane->EnableDocking(CBRS_ALIGN_ANY);
m_pDatabasePane->EnableDocking(CBRS_ALIGN_ANY);
DockPane(m_pQueryPane.get(), AFX_IDW_DOCKBAR_BOTTOM);
m_pMessagePane->DockToWindow(m_pQueryPane.get(), CBRS_ALIGN_RIGHT);
DockPane(m_pDatabasePane.get(), AFX_IDW_DOCKBAR_RIGHT);
m_dockManager.LoadState(theApp.GetRegSectionPath(_T("ChildFramePane")));
m_dockManager.SetDockState();
// if (! m_pQueryPane->IsPaneVisible())
m_pQueryPane->ShowPane(TRUE, FALSE, FALSE);
// if (! m_pMessagePane->IsPaneVisible())
m_pMessagePane->ShowPane(TRUE, FALSE, FALSE);
// if (! m_pDatabasePane->IsPaneVisible())
m_pDatabasePane->ShowPane(TRUE, FALSE, FALSE);
return 0;
}
void CChildFrame::OnDestroy()
{
if ((nullptr != m_pQueryPane->GetSafeHwnd() && ! m_pQueryPane->IsFloating())
&& (nullptr != m_pMessagePane->GetSafeHwnd() && ! m_pMessagePane->IsFloating())
&& (nullptr != m_pDatabasePane->GetSafeHwnd() && ! m_pDatabasePane->IsFloating()))
m_dockManager.SaveState(theApp.GetRegSectionPath(_T("ChildFramePane")));
CMDIChildWndExt::OnDestroy();
// TODO: Add your message handler code here
}
void CChildFrame::SetDockingWindowIcons(BOOL bHiColorIcons)
{
HICON hBarIcon = (HICON)::LoadImage(::AfxGetResourceHandle(), MAKEINTRESOURCE(IDR_MAINFRAME), IMAGE_ICON, ::GetSystemMetrics(SM_CXSMICON), ::GetSystemMetrics(SM_CYSMICON), 0);
m_pQueryPane->SetIcon(hBarIcon, FALSE);
hBarIcon = (HICON)::LoadImage(::AfxGetResourceHandle(), MAKEINTRESOURCE(IDR_MAINFRAME), IMAGE_ICON, ::GetSystemMetrics(SM_CXSMICON), ::GetSystemMetrics(SM_CYSMICON), 0);
m_pMessagePane->SetIcon(hBarIcon, FALSE);
hBarIcon = (HICON)::LoadImage(::AfxGetResourceHandle(), MAKEINTRESOURCE(IDR_MAINFRAME), IMAGE_ICON, ::GetSystemMetrics(SM_CXSMICON), ::GetSystemMetrics(SM_CYSMICON), 0);
m_pDatabasePane->SetIcon(hBarIcon, FALSE);
}
CString CChildFrame::GetQueryText() const
{
CString sText;
m_pQueryPane->GetRichEditCtrl()->GetWindowText(sText);
return sText;
}
CString CChildFrame::GetMessageText() const
{
CString sText;
m_pQueryPane->GetRichEditCtrl()->GetWindowText(sText);
return sText;
}
void CChildFrame::OnViewQuery()
{
// TODO: Add your command handler code here
m_pQueryPane->ShowPane(TRUE, FALSE, TRUE);
if (m_pQueryPane->IsDocked())
m_pQueryPane->Slide(TRUE);
m_pQueryPane->GetRichEditCtrl()->SetFocus();
}
void CChildFrame::OnViewMessage()
{
// TODO: Add your command handler code here
m_pMessagePane->ShowPane(TRUE, FALSE, TRUE);
if (m_pMessagePane->IsDocked())
m_pMessagePane->Slide(TRUE);
m_pMessagePane->GetRichEditCtrl()->SetFocus();
}
void CChildFrame::OnViewDatabase()
{
// TODO: Add your command handler code here
m_pDatabasePane->ShowPane(TRUE, FALSE, TRUE);
if (m_pDatabasePane->IsDocked())
m_pDatabasePane->Slide(TRUE);
m_pDatabasePane->SetFocus();
}
void CChildFrame::SetMessage(const CString& sMessage, const Color& color)
{
m_pMessagePane->AppendToLogAndScroll(sMessage, static_cast<COLORREF>(color));
}
LRESULT CChildFrame::OnPostInit(WPARAM wParam, LPARAM lParam)
{
if (DoInitDatabase == static_cast<int>(wParam))
GetActiveDocument()->UpdateAllViews(nullptr, CDatabaseExplorerApp::UH_INITDATABASE);
if (DoListTable == static_cast<int>(wParam))
GetActiveDocument()->UpdateAllViews(nullptr,
CDatabaseExplorerApp::UH_LISTTABLE,
reinterpret_cast<CObject*>(&m_pDatabasePane->GetSelection()));
return 1;
}
LRESULT CChildFrame::OnIsPopulateMode(WPARAM wParam, LPARAM lParam)
{
return ::SendMessage(GetActiveView()->GetSafeHwnd(), WMU_ISPOPULATEMODE, 0, 0);
}
LRESULT CChildFrame::OnSetWordWrap(WPARAM wParam, LPARAM lParam)
{
return m_pQueryPane->GetRichEditCtrl()->SetTargetDevice(nullptr, static_cast<long>(wParam));
}
LRESULT CChildFrame::OnDarkMode(WPARAM wParam, LPARAM lParam)
{
m_pQueryPane->SetDarkMode(static_cast<BOOL>(wParam));
m_pMessagePane->SetDarkMode(static_cast<BOOL>(wParam));
m_pDatabasePane->SetDarkMode(static_cast<BOOL>(wParam));
return 1;
}