-
Notifications
You must be signed in to change notification settings - Fork 0
/
FileView.cpp
274 lines (212 loc) · 7.45 KB
/
FileView.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
#include "StdAfx.h"
#include "Modeler1.h"
#include "MainFrm.h"
#include "FileView.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
/////////////////////////////////////////////////////////////////////////////
// CFileViewBar
CFileViewBar::CFileViewBar()
{
}
CFileViewBar::~CFileViewBar()
{
}
BEGIN_MESSAGE_MAP(CFileViewBar, CDockablePane)
ON_WM_CREATE()
ON_WM_SIZE()
ON_WM_CONTEXTMENU()
ON_COMMAND(ID_PROPERTIES, OnProperties)
ON_COMMAND(ID_SOLUTION_OPEN, OnSolutionOpen)
ON_COMMAND(ID_SOLUTION_OPEN_WITH, OnSolutionOpenWith)
ON_COMMAND(ID_DUMMY_COMPILE, OnDummyCompile)
ON_COMMAND(ID_EDIT_CUT, OnEditCut)
ON_COMMAND(ID_EDIT_COPY, OnEditCopy)
ON_COMMAND(ID_EDIT_CLEAR, OnEditClear)
ON_WM_PAINT()
ON_WM_SETFOCUS()
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CWorkspaceBar message handlers
int CFileViewBar::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CDockablePane::OnCreate(lpCreateStruct) == -1)
return -1;
CRect rectDummy;
rectDummy.SetRectEmpty();
// Create view:
const DWORD dwViewStyle = WS_CHILD | WS_VISIBLE | TVS_HASLINES | TVS_LINESATROOT | TVS_HASBUTTONS;
if (!m_wndFileView.Create(dwViewStyle, rectDummy, this, 4))
{
TRACE0("Failed to create solution explorer\n");
return -1; // fail to create
}
// Load view images:
m_FileViewImages.Create(IDB_FILE_VIEW, 16, 0, RGB(255, 0, 255));
m_wndFileView.SetImageList(&m_FileViewImages, TVSIL_NORMAL);
m_wndToolBar.Create(this, AFX_DEFAULT_TOOLBAR_STYLE, IDR_SOLUTION_EXPLORER);
m_wndToolBar.LoadToolBar(IDR_SOLUTION_EXPLORER, 0, 0, TRUE /* Is locked */);
OnChangeVisualStyle();
m_wndToolBar.SetPaneStyle(m_wndToolBar.GetPaneStyle() | CBRS_TOOLTIPS | CBRS_FLYBY);
m_wndToolBar.SetPaneStyle(m_wndToolBar.GetPaneStyle() & ~(CBRS_GRIPPER | CBRS_SIZE_DYNAMIC | CBRS_BORDER_TOP | CBRS_BORDER_BOTTOM | CBRS_BORDER_LEFT | CBRS_BORDER_RIGHT));
m_wndToolBar.SetOwner(this);
// All commands will be routed via this control , not via the parent frame:
m_wndToolBar.SetRouteCommandsViaFrame(FALSE);
// Fill view context(dummy code, don't seek here something magic :-)):
InitFileView();
AdjustLayout();
return 0;
}
void CFileViewBar::OnSize(UINT nType, int cx, int cy)
{
CDockablePane::OnSize(nType, cx, cy);
AdjustLayout();
}
void CFileViewBar::InitFileView()
{
m_wndFileView.DeleteAllItems();
m_hRoot = m_wndFileView.InsertItem(_T("Solution files"), 0, 0);
m_wndFileView.SetItemState(m_hRoot, TVIS_BOLD, TVIS_BOLD);
m_hSrc = m_wndFileView.InsertItem(_T("Source Files"), 0, 0, m_hRoot);
//m_wndFileView.InsertItem(_T("Hello.cpp"), 1, 1, m_hSrc);
//m_wndFileView.InsertItem(_T("Hello.rc"), 1, 1, m_hSrc);
//m_wndFileView.InsertItem(_T("HelloDoc.cpp"), 1, 1, m_hSrc);
//m_wndFileView.InsertItem(_T("HelloView.cpp"), 1, 1, m_hSrc);
//m_wndFileView.InsertItem(_T("MainFrm.cpp"), 1, 1, m_hSrc);
m_wndFileView.InsertItem(_T("StdAfx.cpp"), 1, 1, m_hSrc);
m_hInc = m_wndFileView.InsertItem(_T("Header Files"), 0, 0, m_hRoot);
//m_wndFileView.InsertItem(_T("Hello.h"), 2, 2, m_hInc);
//m_wndFileView.InsertItem(_T("HelloDoc.h"), 2, 2, m_hInc);
//m_wndFileView.InsertItem(_T("HelloView.h"), 2, 2, m_hInc);
m_wndFileView.InsertItem(_T("resource.h"), 2, 2, m_hInc);
//m_wndFileView.InsertItem(_T("MainFrm.h"), 2, 2, m_hInc);
m_wndFileView.InsertItem(_T("StdAfx.h"), 2, 2, m_hInc);
m_hRes = m_wndFileView.InsertItem(_T("Resource Files"), 0, 0, m_hRoot);
//m_wndFileView.InsertItem(_T("Hello.ico"), 2, 2, m_hRes);
//m_wndFileView.InsertItem(_T("Hello.rc2"), 2, 2, m_hRes);
//m_wndFileView.InsertItem(_T("HelloDoc.ico"), 2, 2, m_hRes);
//m_wndFileView.InsertItem(_T("Toolbar.bmp"), 2, 2, m_hRes);
m_hOthers = m_wndFileView.InsertItem(_T("Others Files"), 0, 0, m_hRoot);
m_wndFileView.Expand(m_hRoot, TVE_EXPAND);
m_wndFileView.Expand(m_hSrc, TVE_EXPAND);
m_wndFileView.Expand(m_hInc, TVE_EXPAND);
}
void CFileViewBar::UpdateFromObject(std::shared_ptr<CElement> pElement)
{
CString str;
HTREEITEM hParent;
if( pElement->m_type == ElementType::type_shapes_infrastructure )
hParent = m_hSrc;
else if( pElement->m_type == ElementType::type_shapes_development )
hParent = m_hSrc;
else
hParent = m_hOthers;
str.Format(_T("%s_%s.cpp"), pElement->m_text.c_str(), pElement->m_name.c_str());
m_wndFileView.InsertItem(str, 1, 1, hParent);
str.Format(_T("%s_%s.h"), pElement->m_text.c_str(), pElement->m_name.c_str());
m_wndFileView.InsertItem(str, 1, 1, m_hInc);
}
void CFileViewBar::OnContextMenu(CWnd* pWnd, CPoint point)
{
CTreeCtrl* pWndTree = (CTreeCtrl*) &m_wndFileView;
ASSERT_VALID(pWndTree);
if (pWnd != pWndTree)
{
CDockablePane::OnContextMenu(pWnd, point);
return;
}
if (point != CPoint(-1, -1))
{
// Select clicked item:
CPoint ptTree = point;
pWndTree->ScreenToClient(&ptTree);
UINT flags = 0;
HTREEITEM hTreeItem = pWndTree->HitTest(ptTree, &flags);
if (hTreeItem != NULL)
{
pWndTree->SelectItem(hTreeItem);
}
}
pWndTree->SetFocus();
theApp.GetContextMenuManager()->ShowPopupMenu(IDR_POPUP_SOLUTION, point.x, point.y, this, TRUE);
}
void CFileViewBar::AdjustLayout()
{
if (GetSafeHwnd() == NULL)
{
return;
}
CRect rectClient;
GetClientRect(rectClient);
int cyTlb = m_wndToolBar.CalcFixedLayout(FALSE, TRUE).cy;
m_wndToolBar.SetWindowPos(NULL, rectClient.left, rectClient.top, rectClient.Width(), cyTlb, SWP_NOACTIVATE | SWP_NOZORDER);
m_wndFileView.SetWindowPos(NULL, rectClient.left + 1, rectClient.top + cyTlb + 1, rectClient.Width() - 2, rectClient.Height() - cyTlb - 2, SWP_NOACTIVATE | SWP_NOZORDER);
}
void CFileViewBar::OnProperties()
{
AfxMessageBox(_T("Properties..."));
}
void CFileViewBar::OnSolutionOpen()
{
// TODO: Add your command handler code here
}
void CFileViewBar::OnSolutionOpenWith()
{
// TODO: Add your command handler code here
}
void CFileViewBar::OnDummyCompile()
{
// TODO: Add your command handler code here
}
void CFileViewBar::OnEditCut()
{
// TODO: Add your command handler code here
}
void CFileViewBar::OnEditCopy()
{
// TODO: Add your command handler code here
}
void CFileViewBar::OnEditClear()
{
// TODO: Add your command handler code here
}
void CFileViewBar::OnPaint()
{
CPaintDC dc(this); // device context for painting
CRect rectTree;
m_wndFileView.GetWindowRect(rectTree);
ScreenToClient(rectTree);
rectTree.InflateRect(1, 1);
dc.Draw3dRect(rectTree, ::GetSysColor(COLOR_3DSHADOW), ::GetSysColor(COLOR_3DSHADOW));
}
void CFileViewBar::OnSetFocus(CWnd* pOldWnd)
{
CDockablePane::OnSetFocus(pOldWnd);
m_wndFileView.SetFocus();
}
void CFileViewBar::OnChangeVisualStyle()
{
/*
m_wndToolBar.CleanUpLockedImages();
m_wndToolBar.LoadBitmap(theApp.m_bHiColorIcons ? IDB_SOLUTION_EXPLORER_24 : IDR_SOLUTION_EXPLORER, 0, 0, TRUE);
m_FileViewImages.DeleteImageList();
UINT uiBmpId = theApp.m_bHiColorIcons ? IDB_FILE_VIEW24 : IDB_FILE_VIEW;
CBitmap bmp;
if (!bmp.LoadBitmap(uiBmpId))
{
TRACE(_T("Can't load bitmap: %x\n"), uiBmpId);
ASSERT(FALSE);
return;
}
BITMAP bmpObj;
bmp.GetBitmap(&bmpObj);
UINT nFlags = ILC_MASK;
nFlags |= (theApp.m_bHiColorIcons) ? ILC_COLOR24 : ILC_COLOR4;
m_FileViewImages.Create(16, bmpObj.bmHeight, nFlags, 0, 0);
m_FileViewImages.Add(&bmp, RGB(255, 0, 255));
m_wndFileView.SetImageList(&m_FileViewImages, TVSIL_NORMAL);
*/
}