-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDialogEditorView.cpp
493 lines (421 loc) · 12.9 KB
/
DialogEditorView.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
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
// DialogEditorView.cpp : implementation of the CDialogEditorView class
//
#include "stdafx.h"
#include "Tulip.h"
#include "MainFrm.h"
#include "DiagramView.h"
#include "DialogEditorDoc.h"
#include "DialogEditorView.h"
// --- DiagramEditor ---
#include "DialogEditor/StdGrfx.h"
#include "DialogEditor/DialogSettings.h"
#include "DialogEditor/DiagramButton.h"
#include "DialogEditor/DiagramEdit.h"
#include "DialogEditor/DiagramStatic.h"
#include "DialogEditor/DiagramCheckbox.h"
#include "DialogEditor/DiagramRadiobutton.h"
#include "DialogEditor/DiagramCombobox.h"
#include "DialogEditor/DiagramListbox.h"
#include "DialogEditor/DiagramGroupbox.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDialogEditorView
IMPLEMENT_DYNCREATE(CDialogEditorView, CDiagramView)
BEGIN_MESSAGE_MAP(CDialogEditorView, CDiagramView)
//{{AFX_MSG_MAP(CDialogEditorView)
ON_WM_SIZE()
ON_COMMAND(ID_DIALOG_ADD_BUTTON, OnAddButton)
ON_COMMAND(ID_DIALOG_ADD_EDIT, OnAddEdit)
ON_COMMAND(ID_DIALOG_ADD_STATIC, OnAddStatic)
ON_COMMAND(ID_DIALOG_ADD_CHECKBOX, OnAddCheckbox)
ON_COMMAND(ID_DIALOG_ADD_COMBOBOX, OnAddCombobox)
ON_COMMAND(ID_DIALOG_ADD_GROUPBOX, OnAddGroupbox)
ON_COMMAND(ID_DIALOG_ADD_LISTBOX, OnAddListbox)
ON_COMMAND(ID_DIALOG_ADD_RADIOBUTTON, OnAddRadiobutton)
ON_WM_ERASEBKGND()
ON_COMMAND(ID_EXPORT, OnExport)
ON_UPDATE_COMMAND_UI(ID_EXPORT, OnUpdateExport)
ON_COMMAND(ID_EXPORT_EMF, OnExportEmf)
ON_UPDATE_COMMAND_UI(ID_EXPORT_EMF, OnUpdateExport)
ON_COMMAND(ID_EXPORT_HTML, OnExportHtml)
ON_UPDATE_COMMAND_UI(ID_EXPORT_HTML, OnUpdateExport)
ON_UPDATE_COMMAND_UI(ID_DIALOG_ADD_BUTTON, OnUpdateAddButton)
ON_UPDATE_COMMAND_UI(ID_DIALOG_ADD_CHECKBOX, OnUpdateAddCheckbox)
ON_UPDATE_COMMAND_UI(ID_DIALOG_ADD_COMBOBOX, OnUpdateAddCombobox)
ON_UPDATE_COMMAND_UI(ID_DIALOG_ADD_EDIT, OnUpdateAddEdit)
ON_UPDATE_COMMAND_UI(ID_DIALOG_ADD_GROUPBOX, OnUpdateAddGroupbox)
ON_UPDATE_COMMAND_UI(ID_DIALOG_ADD_LISTBOX, OnUpdateAddListbox)
ON_UPDATE_COMMAND_UI(ID_DIALOG_ADD_RADIOBUTTON, OnUpdateAddRadiobutton)
ON_UPDATE_COMMAND_UI(ID_DIALOG_ADD_STATIC, OnUpdateAddStatic)
ON_COMMAND(ID_BUTTON_MULTIDRAW, OnButtonMultidraw)
ON_UPDATE_COMMAND_UI(ID_BUTTON_MULTIDRAW, OnUpdateButtonMultidraw)
//}}AFX_MSG_MAP
// 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)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDialogEditorView construction/destruction
CDialogEditorView::CDialogEditorView()
{
// --- DiagramEditor ---
m_screenResolutionX = 0;
m_drawObject = DRAW_OBJECT_NONE;
m_bitmap = ::LoadBitmap(AfxGetResourceHandle(), MAKEINTRESOURCE(IDB_BITMAP1));
}
CDialogEditorView::~CDialogEditorView()
{
::DeleteObject(m_bitmap);
}
BOOL CDialogEditorView::PreCreateWindow(CREATESTRUCT& cs)
{
return CView::PreCreateWindow(cs);
}
/////////////////////////////////////////////////////////////////////////////
// CDialogEditorView drawing
void CDialogEditorView::OnDraw(CDC* pDC)
{
CDialogEditorDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
// --- DiagramEditor ---
// An example of how to handle print
// and print preview
if (pDC->IsPrinting())
{
// Print zoom is the difference between screen-
// and printer resolution.
double zoom = pDC->GetDeviceCaps(LOGPIXELSX) / m_screenResolutionX;
CRect rect(0, 0,
(int)((double)m_editor.GetVirtualSize().cx * zoom),
(int)((double)m_editor.GetVirtualSize().cy * zoom));
m_editor.Print(pDC, rect, zoom);
}
// If we are not printing, we don't have do do
// anything special, the editor is a child window
// of the view and will be redrawn automatically.
}
void CDialogEditorView::OnDrawIconicThumbnailOrLivePreview(CDC& dc, CRect rect, CSize szRequiredThumbnailSize, BOOL bIsThumbnail, BOOL& bAlphaChannelSet)
{
m_editor.Draw(&dc, rect);
}
/////////////////////////////////////////////////////////////////////////////
// CDialogEditorView printing
BOOL CDialogEditorView::OnPreparePrinting(CPrintInfo* pInfo)
{
return DoPreparePrinting(pInfo);
}
void CDialogEditorView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
}
void CDialogEditorView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
}
/////////////////////////////////////////////////////////////////////////////
// CDialogEditorView diagnostics
#ifdef _DEBUG
void CDialogEditorView::AssertValid() const
{
CView::AssertValid();
}
void CDialogEditorView::Dump(CDumpContext& dc) const
{
CView::Dump(dc);
}
CDialogEditorDoc* CDialogEditorView::GetDocument() // non-debug version is inline
{
ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CDialogEditorDoc)));
return (CDialogEditorDoc*)m_pDocument;
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CDialogEditorView message handlers
void CDialogEditorView::OnInitialUpdate()
{
CView::OnInitialUpdate();
// --- DiagramEditor ---
if (!m_editor.m_hWnd)
{
// Creating the editor window
CDialogEditorDoc* pDoc = GetDocument();
CRect rect;
GetClientRect(rect);
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())
{
m_editor.SetVirtualSize(CSize(300, 200));
m_editor.SetBackgroundColor(::GetSysColor(COLOR_3DFACE));
m_editor.SetGridColor(::GetSysColor(COLOR_3DDKSHADOW));
}
else
{
m_editor.SetVirtualSize(pDoc->GetData()->GetVirtualSize());
m_editor.SetBackgroundColor(pDoc->GetData()->GetColor());
}
m_editor.SetResize(TRUE);
m_editor.SetModified(FALSE);
// We get the screen resolution, which we will use
// for scaling to printer. See also OnDraw.
CClientDC dc(this);
m_screenResolutionX = dc.GetDeviceCaps(LOGPIXELSX);
}
else
{
m_editor.Clear();
}
}
// Called the the view is activated
void CDialogEditorView::OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView)
{
CMainFrame* pMainFrame = ((CMainFrame*)GetTopLevelFrame());
ASSERT_VALID(pMainFrame);
pMainFrame->SetRibbonContextCategory(ID_DIALOGCONTEXT, bActivate);
}
///////////////////////////////////////////////////////////
// Command and update handlers
//
///////////////////////////////////////////////////////////
// Adding controls. The functions creates an object of the
// correct type and call StartDrawingObject on the editor.
//
void CDialogEditorView::OnAddButton()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_BUTTON)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CDiagramButton);
m_drawObject = DRAW_OBJECT_BUTTON;
}
}
void CDialogEditorView::OnAddEdit()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_EDIT)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CDiagramEdit);
m_drawObject = DRAW_OBJECT_EDIT;
}
}
void CDialogEditorView::OnAddStatic()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_STATIC)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CDiagramStatic);
m_drawObject = DRAW_OBJECT_STATIC;
}
}
void CDialogEditorView::OnAddCheckbox()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_CHECKBOX)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CDiagramCheckbox);
m_drawObject = DRAW_OBJECT_CHECKBOX;
}
}
void CDialogEditorView::OnAddCombobox()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_COMBOBOX)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CDiagramCombobox);
m_drawObject = DRAW_OBJECT_COMBOBOX;
}
}
void CDialogEditorView::OnAddGroupbox()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_GROUPBOX)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CDiagramGroupbox);
m_drawObject = DRAW_OBJECT_GROUPBOX;
}
}
void CDialogEditorView::OnAddListbox()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_LISTBOX)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CDiagramListbox);
m_drawObject = DRAW_OBJECT_LISTBOX;
}
}
void CDialogEditorView::OnAddRadiobutton()
{
if (m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_RADIOBUTTON)
{
m_editor.StartDrawingObject(NULL);
m_drawObject = DRAW_OBJECT_NONE;
}
else
{
m_editor.StartDrawingObject(new CDiagramRadiobutton);
m_drawObject = DRAW_OBJECT_RADIOBUTTON;
}
}
void CDialogEditorView::OnUpdateAddButton(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_BUTTON);
}
void CDialogEditorView::OnUpdateAddCheckbox(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_CHECKBOX);
}
void CDialogEditorView::OnUpdateAddCombobox(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_COMBOBOX);
}
void CDialogEditorView::OnUpdateAddEdit(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_EDIT);
}
void CDialogEditorView::OnUpdateAddGroupbox(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_GROUPBOX);
}
void CDialogEditorView::OnUpdateAddListbox(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_LISTBOX);
}
void CDialogEditorView::OnUpdateAddRadiobutton(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_RADIOBUTTON);
}
void CDialogEditorView::OnUpdateAddStatic(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.IsDrawing() && m_drawObject == DRAW_OBJECT_STATIC);
}
///////////////////////////////////////////////////////////
// Grid, margin, multidraw and restraints handling
//
void CDialogEditorView::OnButtonMultidraw()
{
m_editor.SetMultidraw(!m_editor.GetMultidraw());
m_drawObject = DRAW_OBJECT_NONE;
}
void CDialogEditorView::OnUpdateButtonMultidraw(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_editor.GetMultidraw());
}
///////////////////////////////////////////////////////////
// Exporting
//
void CDialogEditorView::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();
CDialogEditorDoc* doc = GetDocument();
CWaitCursor wait;
CString filename = doc->GetTitle();
int found = filename.ReverseFind(_TCHAR('.'));
if (found != -1)
{
filename = filename.Left(found);
}
CFileDialog dlg(FALSE, _T("emf"), filename, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, _T("HTML File (*.html)|*.html;*.htm|Enhanced MetaFile (*.emf)|*.emf|All Files (*.*)|*.*||"));
if (dlg.DoModal() == IDOK)
{
if (dlg.GetFileExt().CompareNoCase(_T("EMF")) == 0)
{
m_editor.ExportEMF(dlg.GetPathName(), true);
}
else
{
doc->ExportHTML(dlg.GetPathName());
}
}
}
void CDialogEditorView::OnExportEmf()
{
// 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();
CDialogEditorDoc* doc = GetDocument();
CWaitCursor wait;
CString filename = doc->GetTitle();
int found = filename.ReverseFind(_TCHAR('.'));
if (found != -1)
{
filename = filename.Left(found);
}
CFileDialog dlg(FALSE, _T("emf"), filename, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, _T("Enhanced MetaFile (*.emf)|*.emf|All Files (*.*)|*.*||"));
if (dlg.DoModal() == IDOK)
{
m_editor.ExportEMF(dlg.GetPathName(), true);
}
}
void CDialogEditorView::OnExportHtml()
{
// 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();
CDialogEditorDoc* doc = GetDocument();
CWaitCursor wait;
CString filename = doc->GetTitle();
int found = filename.ReverseFind(_TCHAR('.'));
if (found != -1)
{
filename = filename.Left(found);
}
CFileDialog dlg(FALSE, _T("html"), filename, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, _T("HTML File (*.html)|*.html;*.htm|All Files (*.*)|*.*||"));
if (dlg.DoModal() == IDOK)
{
doc->ExportHTML(dlg.GetPathName());
}
}
void CDialogEditorView::OnUpdateExport(CCmdUI* pCmdUI)
{
pCmdUI->Enable(m_editor.GetObjectCount() > 0);
}