-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNetView.cpp
More file actions
418 lines (353 loc) · 10.7 KB
/
Copy pathNetView.cpp
File metadata and controls
418 lines (353 loc) · 10.7 KB
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
// This MFC Samples source code demonstrates using MFC Microsoft Office Fluent User Interface
// (the "Fluent UI") and is provided only as referential material to supplement the
// Microsoft Foundation Classes Reference and related electronic documentation
// included with the MFC C++ library software.
// License terms to copy, use or distribute the Fluent UI are available separately.
// To learn more about our Fluent UI licensing program, please visit
// https://go.microsoft.com/fwlink/?LinkId=238214.
//
// Copyright (C) Microsoft Corporation
// All rights reserved.
// NetView.cpp : implementation of the CNetView class
//
#include "stdafx.h"
// SHARED_HANDLERS can be defined in an ATL project implementing preview, thumbnail
// and search filter handlers and allows sharing of document code with that project.
#ifndef SHARED_HANDLERS
#include "Tulip.h"
#endif
#include "MainFrm.h"
#include "DiagramView.h"
#include "NetDoc.h"
#include "NetView.h"
#include "DialogEditor/DialogSettings.h"
#include "NetworkEditor/NetworkSymbol.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CNetView
IMPLEMENT_DYNCREATE(CNetView, CDiagramView)
BEGIN_MESSAGE_MAP(CNetView, CDiagramView)
ON_WM_SIZE()
ON_WM_ERASEBKGND()
ON_COMMAND(ID_EXPORT, OnExport)
ON_UPDATE_COMMAND_UI(ID_EXPORT, OnUpdateExport)
ON_COMMAND(ID_EXPORT_EMF, OnExport)
ON_UPDATE_COMMAND_UI(ID_EXPORT_EMF, OnUpdateExport)
ON_COMMAND(ID_BUTTON_LINK, OnButtonLink)
ON_UPDATE_COMMAND_UI(ID_BUTTON_LINK, OnUpdateLink)
// Custom to the document type
ON_COMMAND(ID_NET_BUTTON_ADD_CLIENT, OnButtonAddClient)
ON_UPDATE_COMMAND_UI(ID_NET_BUTTON_ADD_CLIENT, OnUpdateButtonAddClient)
ON_COMMAND(ID_NET_BUTTON_ADD_HUB, OnButtonAddHub)
ON_UPDATE_COMMAND_UI(ID_NET_BUTTON_ADD_HUB, OnUpdateButtonAddHub)
ON_COMMAND(ID_NET_BUTTON_ADD_INTERNET, OnButtonAddInternet)
ON_UPDATE_COMMAND_UI(ID_NET_BUTTON_ADD_INTERNET, OnUpdateButtonAddInternet)
ON_COMMAND(ID_NET_BUTTON_ADD_MODEM, OnButtonAddModem)
ON_UPDATE_COMMAND_UI(ID_NET_BUTTON_ADD_MODEM, OnUpdateButtonAddModem)
ON_COMMAND(ID_NET_BUTTON_ADD_PRINTER, OnButtonAddPrinter)
ON_UPDATE_COMMAND_UI(ID_NET_BUTTON_ADD_PRINTER, OnUpdateButtonAddPrinter)
ON_COMMAND(ID_NET_BUTTON_ADD_SERVER, OnButtonAddServer)
ON_UPDATE_COMMAND_UI(ID_NET_BUTTON_ADD_SERVER, OnUpdateButtonAddServer)
// Standard printing commands
ON_COMMAND(ID_FILE_PRINT, &CView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_DIRECT, &CView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_PREVIEW, &CView::OnFilePrintPreview)
ON_WM_CONTEXTMENU()
ON_WM_RBUTTONUP()
END_MESSAGE_MAP()
// CNetView construction/destruction
CNetView::CNetView()
{
m_screenResolutionX = 0;
m_onlyh = FALSE;
}
CNetView::~CNetView()
{
}
BOOL CNetView::PreCreateWindow(CREATESTRUCT& cs)
{
return CView::PreCreateWindow(cs);
}
// CNetView drawing
void CNetView::OnDraw(CDC* pDC)
{
CNetDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
if (!pDoc)
return;
if (pDC->IsPrinting())
{
COLORREF col = m_editor.GetBackgroundColor();
// Print zoom is the difference between screen-
// and printer resolution.
double zoom = pDC->GetDeviceCaps(LOGPIXELSX) / m_screenResolutionX;
CRect rect(0, 0,
round(static_cast<double>(m_editor.GetVirtualSize().cx) * zoom),
round(static_cast<double>(m_editor.GetVirtualSize().cy) * zoom));
m_editor.SetRedraw(FALSE);
m_editor.SetBackgroundColor(RGB(255, 255, 255));
m_editor.Print(pDC, rect, zoom);
m_editor.SetBackgroundColor(col);
m_editor.SetRedraw(TRUE);
}
}
void CNetView::OnDrawIconicThumbnailOrLivePreview(CDC& dc, CRect rect, CSize szRequiredThumbnailSize, BOOL bIsThumbnail, BOOL& bAlphaChannelSet)
{
m_editor.Draw(&dc, rect);
}
// CNetView printing
BOOL CNetView::OnPreparePrinting(CPrintInfo* pInfo)
{
// default preparation
return DoPreparePrinting(pInfo);
}
void CNetView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
}
void CNetView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
}
// CNetView diagnostics
#ifdef _DEBUG
// Asserts the object validity.
void CNetView::AssertValid() const
{
CView::AssertValid();
}
// Dumps the object state
void CNetView::Dump(CDumpContext& dc) const
{
CView::Dump(dc);
}
//Gets a casted pointer to the attached document.
CNetDoc* CNetView::GetDocument() const // non-debug version is inline
{
ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CNetDoc)));
return (CNetDoc*)m_pDocument;
}
#endif //_DEBUG
// Called when a view is created.
void CNetView::OnInitialUpdate()
{
CView::OnInitialUpdate();
if (!m_editor.m_hWnd)
{
// Creating the editor window
CNetDoc* pDoc = GetDocument();
CRect rect;
GetClientRect(rect);
pDoc->GetData()->SetClipboardHandler(&theApp.m_netClip);
m_editor.Create(WS_CHILD | WS_VISIBLE, rect, this, pDoc->GetData());
// Pass the editor to the base class
SetEditor(&m_editor);
// Only set the size if one wasn't pre-specified
if (!pDoc->GetData()->IsModified())
{
// We get the screen resolution, which we will use
// for scaling to printer. See also OnDraw.
CClientDC dc(this);
m_screenResolutionX = dc.GetDeviceCaps(LOGPIXELSX);
// Setting up the virtual screen size
// We want this to represent a single paper
// from the default printer.
CPrintDialog printer(TRUE, PD_RETURNDC);
printer.GetDefaults();
HDC hdc = printer.GetPrinterDC();
if (hdc)
{
double zoom = GetDeviceCaps(hdc, LOGPIXELSX) / m_screenResolutionX;
int horzSize = ::GetDeviceCaps(hdc, PHYSICALWIDTH);
int vertSize = ::GetDeviceCaps(hdc, PHYSICALHEIGHT);
m_editor.SetVirtualSize(CSize(round(static_cast<double>(horzSize) / zoom), round(static_cast<double>(vertSize) / zoom)));
m_editor.SetBackgroundColor(RGB(230, 230, 230));
int leftMarg = ::GetDeviceCaps(hdc, PHYSICALOFFSETX);
int topMarg = ::GetDeviceCaps(hdc, PHYSICALOFFSETY);
int horzPrintable = ::GetDeviceCaps(hdc, HORZRES);
int vertPrintable = ::GetDeviceCaps(hdc, VERTRES);
int rightMarg = horzSize - (horzPrintable + leftMarg);
int bottomMarg = vertSize - (vertPrintable + topMarg);
m_editor.SetMargins(round(static_cast<double>(leftMarg) / zoom), round(static_cast<double>(topMarg) / zoom), round(static_cast<double>(rightMarg) / zoom), round(static_cast<double>(bottomMarg) / zoom));
::DeleteDC(hdc);
}
else
{
// No default printer installed
m_editor.SetVirtualSize(CSize(8 * m_screenResolutionX, 11 * m_screenResolutionX));
m_editor.SetBackgroundColor(RGB(230, 230, 230));
}
}
else
{
m_editor.SetVirtualSize(pDoc->GetData()->GetVirtualSize());
m_editor.SetBackgroundColor(pDoc->GetData()->GetColor());
}
m_editor.SetScrollWheelMode(WHEEL_SCROLL);
m_editor.SetResize(TRUE);
m_editor.SetModified(FALSE);
}
else
{
m_editor.Clear();
}
}
// Called the the view is activated
void CNetView::OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView)
{
CMainFrame* pMainFrame = ((CMainFrame*)GetTopLevelFrame());
ASSERT_VALID(pMainFrame);
pMainFrame->SetRibbonContextCategory(ID_NETCONTEXT, bActivate);
}
// CNetView button and menu handlers
void CNetView::OnButtonLink()
{
if (m_editor.IsLinked())
{
m_editor.OnUnlink();
}
else
{
m_editor.OnLink();
}
}
void CNetView::OnButtonAddClient()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_CLIENT)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CNetworkSymbol(IDB_NET_BITMAP_SYMBOL_CLIENT));
m_drawObject = DRAW_OBJECT_CLIENT;
}
}
void CNetView::OnButtonAddHub()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_HUB)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CNetworkSymbol(IDB_NET_BITMAP_SYMBOL_HUB));
m_drawObject = DRAW_OBJECT_HUB;
}
}
void CNetView::OnButtonAddInternet()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_INTERNET)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CNetworkSymbol(IDB_NET_BITMAP_SYMBOL_INTERNET));
m_drawObject = DRAW_OBJECT_INTERNET;
}
}
void CNetView::OnButtonAddModem()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_MODEM)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CNetworkSymbol(IDB_NET_BITMAP_SYMBOL_ADSL));
m_drawObject = DRAW_OBJECT_MODEM;
}
}
void CNetView::OnButtonAddPrinter()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_PRINTER)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CNetworkSymbol(IDB_NET_BITMAP_SYMBOL_PRINTER));
m_drawObject = DRAW_OBJECT_PRINTER;
}
}
void CNetView::OnButtonAddServer()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_SERVER)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CNetworkSymbol(IDB_NET_BITMAP_SYMBOL_SERVER));
m_drawObject = DRAW_OBJECT_SERVER;
}
}
void CNetView::OnUpdateButtonAddClient(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_CLIENT);
}
void CNetView::OnUpdateButtonAddHub(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_HUB);
}
void CNetView::OnUpdateButtonAddInternet(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_INTERNET);
}
void CNetView::OnUpdateButtonAddModem(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_MODEM);
}
void CNetView::OnUpdateButtonAddPrinter(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_PRINTER);
}
void CNetView::OnUpdateButtonAddServer(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_SERVER);
}
// Displays the Export dialog and exports the editor contents to the desired format.
void CNetView::OnExport()
{
// We save the current modified-state of
// the editor. The export mechanism
// modifies the data (although in a harmless
// way) and we want to reset the state
// after the operation - to avoid save
// questions when no conscious changes have
// been made.
BOOL modified = m_editor.IsModified();
CNetDoc* doc = GetDocument();
CWaitCursor wait;
CString title = doc->GetTitle();
int found = title.ReverseFind(_TCHAR('.'));
if (found != -1)
{
title = title.Left(found);
}
m_editor.ExportEMF(title);
m_editor.SetModified(modified);
}
void CNetView::OnUpdateExport(CCmdUI* pCmdUI)
{
pCmdUI->Enable(m_editor.GetObjectCount() > 0);
}
// CNetView update handlers
void CNetView::OnUpdateLink(CCmdUI* pCmdUI)
{
pCmdUI->Enable(m_editor.GetSelectCount() == 2);
if (m_editor.IsLinked())
{
pCmdUI->SetText(_T("Unlink"));
}
else
{
pCmdUI->SetText(_T("Link"));
}
}