-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDRAWDOC.CPP
More file actions
420 lines (338 loc) · 11.1 KB
/
DRAWDOC.CPP
File metadata and controls
420 lines (338 loc) · 11.1 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
419
420
// drawdoc.cpp : implementation of the CDrawDoc class//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1993 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and Microsoft
// QuickHelp and/or WinHelp documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.
#include "stdafx.h"
#include "train.h"
#include "basevw.h"
#include "pagevw.h"
#include "pageserv.h"
#include "drawdoc.h"
//#include "pagevw.h"
#include "tabvw.h"
#include "drawobj.h"
#include "mconnect.h"
#include "dataelem.h"
#include "tabobj.h"
#include "node.h"
#include "cntritem.h"
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDrawDoc
IMPLEMENT_DYNCREATE(CDrawDoc, COleDocument)
BEGIN_MESSAGE_MAP(CDrawDoc, COleDocument)
//{{AFX_MSG_MAP(CDrawDoc)
ON_COMMAND(ID_VIEW_PAPERCOLOR, OnViewPaperColor)
//}}AFX_MSG_MAP
// Enable default OLE container implementation
ON_UPDATE_COMMAND_UI(ID_EDIT_PASTE, COleDocument::OnUpdatePasteMenu)
ON_UPDATE_COMMAND_UI(ID_EDIT_PASTE_LINK, COleDocument::OnUpdatePasteLinkMenu)
ON_UPDATE_COMMAND_UI(ID_OLE_EDIT_LINKS, COleDocument::OnUpdateEditLinksMenu)
ON_COMMAND(ID_OLE_EDIT_LINKS, COleDocument::OnEditLinks)
ON_UPDATE_COMMAND_UI(ID_OLE_VERB_FIRST, COleDocument::OnUpdateObjectVerbMenu)
ON_UPDATE_COMMAND_UI(ID_OLE_EDIT_CONVERT, COleDocument::OnUpdateObjectVerbMenu)
ON_COMMAND(ID_OLE_EDIT_CONVERT, COleDocument::OnEditConvert)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDrawDoc construction/destruction
CDrawDoc::CDrawDoc()
{
m_nMapMode = MM_ANISOTROPIC;
m_paperColor = RGB(255, 255, 255);
ComputePageSize();
::GetObject(GetStockObject(SYSTEM_FONT), sizeof(LOGFONT), &m_LogfontStandart);
m_PageServer.SetDoc(this);
}
CDrawDoc::~CDrawDoc()
{
// Löst Verbindungen, wenn welche vorhanden sind
m_PageServer.KillAnyConnectedObjects();
// Löscht alle Daten
m_PageServer.DeleteContents();
if (!m_deletedobjects.IsEmpty()) m_deletedobjects.RemoveAll();
}
BOOL CDrawDoc::OnSaveDocument(const char* pszPathName)
{
// Upon saving the document, tell the application object
// to save the path name in the private INI file.
if (!COleDocument::OnSaveDocument(pszPathName))
return FALSE;
UpdateIniFileWithDocPath(pszPathName);
return TRUE;
}
BOOL CDrawDoc::OnOpenDocument(const char* pszPathName)
{
// Upon opening the document, tell the application object
// to save the path name in the private INI file.
if (!COleDocument::OnOpenDocument(pszPathName))
return FALSE;
UpdateIniFileWithDocPath(pszPathName);
return TRUE;
}
BOOL CDrawDoc::OnNewDocument()
{
if (!COleDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
void CDrawDoc::ErrorMessage(LPCSTR msg)
{
POSITION pos = GetFirstViewPosition();
while (pos != NULL)
{
CBaseView* pView = (CBaseView*)GetNextView(pos);
if (pView->m_bActive)
pView->MessageBox(msg);
}
}
/////////////////////////////////////////////////////////////////////////////
// CDrawDoc serialization
void CDrawDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
ar << m_paperColor;
concount.Serialize(ar);
ar.Write(&m_LogfontStandart, sizeof(m_LogfontStandart));
ar.Write(&m_ActualKunden, sizeof(m_ActualKunden));
}
else
{
ar >> m_paperColor;
concount.Serialize(ar);
ar.Read(&m_LogfontStandart, sizeof(m_LogfontStandart));
ar.Read(&m_ActualKunden, sizeof(m_ActualKunden));
}
//m_PageServer.KillAnyConnectedObjects();
m_PageServer.Serialize(ar);
// By calling the base class COleDocument, we enable serialization
// of the container document's COleClientItem objects automatically.
COleDocument::Serialize(ar);
}
/////////////////////////////////////////////////////////////////////////////
// CDrawDoc implementation
void CDrawDoc::Draw(CDC* pDC, CBaseView* pView)
{
ASSERT_VALID(pView);
//CObList* list = pView->GetPage();
CObList* list = pView->GetPage();
ASSERT_VALID(list);
if (!list->IsKindOf(RUNTIME_CLASS(CObList)))
{
AfxMessageBox("Keine Liste!");
if (list->IsKindOf(RUNTIME_CLASS(CPageServerElem)))
{
AfxMessageBox("Object ist PageServerElem!");
}
}
POSITION pos = list->GetHeadPosition();
while (pos != NULL)
{
CDrawObj* pObj = (CDrawObj*)list->GetNext(pos);
// Bevor das Objekt gezeichnet wird, testen, ob es die View kennt !!!
// (in aktuellem Pfad!!)
if (pObj->FindView(pView) == NULL) pObj->SetView(pView);
// Hier wird entschieden, ob sich das Objekt in einem Client zeichnen soll
// z.B. in ein Tabellen - Element
if (pObj->IsDrawInClient())
pObj->DrawInClient(pDC);
else
pObj->Draw(pDC);
if (pView->m_bActive && !pDC->IsPrinting() && pView->IsSelected(pObj))
pObj->DrawTracker(pDC, CDrawObj::selected);
}
}
void CDrawDoc::AddHead(CDrawObj* pObj, CBaseView* pView)
{
pView->GetPage()->AddHead(pObj);
pObj->SetDoc(this);
pObj->SetView(pView);
SetModifiedFlag();
}
void CDrawDoc::Add(CDrawObj* pObj, CBaseView* pView)
{
pView->GetPage()->AddTail(pObj);
pObj->SetDoc(this);
pObj->SetView(pView);
SetModifiedFlag();
}
void CDrawDoc::Add(CDrawObj* pObj, CObList* pView)
{
POSITION pos = pView->GetHeadPosition();
while (pos != NULL) ((CBaseView*) pView->GetNext(pos))->GetPage()->AddTail(pObj);
pObj->SetDoc(this);
pObj->AddViewList(pView);
SetModifiedFlag();
}
void CDrawDoc::Remove(CDrawObj* pObj, CBaseView* pView)
{
//CBaseView* pView = (CBaseView*) pObj->GetViewList()->GetHead();
// Find and remove from document
POSITION pos = pView->GetPage()->Find(pObj);
if (pos != NULL)
{
m_deletedobjects.AddHead((CDrawObj*)pView->GetPage()->GetAt(pos));
pView->GetPage()->RemoveAt(pos);
}
// set document modified flag
SetModifiedFlag();
// call remove for each view so that the view can remove from m_selection
pos = GetFirstViewPosition();
while (pos != NULL)
((CBaseView*)GetNextView(pos))->Remove(pObj);
}
CBaseView* CDrawDoc::FindView(CString Name)
{
return NULL;
}
CDrawObj* CDrawDoc::FindObject(WORD number)
{
// Funktion muß sich voll auf Pageserver beziehen.
// Am besten mit einer Funktion:
return (CDrawObj*) GetPageServer()->FindObject(number);
}
// point is in logical coordinates
CDrawObj* CDrawDoc::ObjectAt(const CPoint& point, CBaseView* pView)
{
CRect rect(point, CSize(1, 1));
POSITION pos = pView->GetPage()->GetTailPosition();
while (pos != NULL)
{
CDrawObj* pObj = (CDrawObj*)pView->GetPage()->GetPrev(pos);
if (pObj->Intersects(rect))
return pObj;
}
return NULL;
}
void CDrawDoc::ComputePageSize()
{
CPrintDialog dlg(FALSE);
VERIFY(AfxGetApp()->GetPrinterDeviceDefaults(&dlg.m_pd));
// GetPrinterDC returns a HDC so attach it
CDC dc;
HDC hDC= dlg.CreatePrinterDC();
ASSERT(hDC != NULL);
dc.Attach(hDC);
// Get the size of the page in loenglish
CSize new_size(MulDiv(dc.GetDeviceCaps(HORZSIZE),1000,254),
MulDiv(dc.GetDeviceCaps(VERTSIZE),1000,254));
// if size changed then iterate over views and reset
if (new_size != m_size)
{
m_size = new_size;
POSITION pos = GetFirstViewPosition();
while (pos != NULL)
((CBaseView*)GetNextView(pos))->SetPageSize(m_size);
}
}
void CDrawDoc::OnViewPaperColor()
{
CColorDialog dlg;
if (dlg.DoModal() != IDOK)
return;
m_paperColor = dlg.GetColor();
SetModifiedFlag();
UpdateAllViews(NULL);
}
void CDrawDoc::UpdateIniFileWithDocPath(const char* pszPathName)
{
theApp.UpdateIniFileWithDocPath(pszPathName);
}
void CDrawDoc::MakeChangesRegardingMe(CPageView* pView)
{
CPageServer* pServer = pView->GetPageServer(); // Teil für View
if (pServer != NULL)
{
// Vorerst kann sich nur die Seite ändern
int p = pServer->GetPageNumber();
char cp[20];
itoa(p, cp, 10);
CString s = CString("/") + CString(cp);
pView->SetActualPage(s);
}
else
{
AfxMessageBox("PageServer nach Änderung nicht mehr gefunden!");
}
CString pfad = pServer->GetPfad();
}
void CDrawDoc::AddNewPage(CPageView* pView)
{
CPageServer* pServer = pView->GetPageServer();
CPageServer* pTargetServer = pServer->FindPfad(pView->GetActualPfad());
if (pTargetServer != NULL)
{
pTargetServer->SetDirFlag(FALSE);
pTargetServer->AddPage();
}
else
{
AfxMessageBox("AddNewPage mißglückt!");
}
}
BOOL CDrawDoc::IsAnyPageLeft(CPageView* pView)
{
return pView->GetPageServer()->IsAnyPageLeft();
}
void CDrawDoc::DeletePage(CPageView* pView)
{
pView->GetPageServer()->DeletePage();
}
BOOL CDrawDoc::ExsistAnyPage(CPageView* pView)
{
return pView->GetPageServer()->ExsistAnyPage();
}
void CDrawDoc::GetNextPage(CPageView* pView)
{
pView->GetPageServer()->GetNextPage();
}
BOOL CDrawDoc::IsNextPageAvailable(CPageView* pView)
{
return pView->GetPageServer()->IsNextPageAvailable();
}
void CDrawDoc::GetPrevPage(CPageView* pView)
{
pView->GetPageServer()->GetPrevPage();
}
BOOL CDrawDoc::IsPrevPageAvailable(CPageView* pView)
{
return pView->GetPageServer()->IsPrevPageAvailable();
}
void CDrawDoc::GetFirstPage(CPageView* pView)
{
pView->GetPageServer()->GetFirstPage();
}
void CDrawDoc::GetLastPage(CPageView* pView)
{
pView->GetPageServer()->GetLastPage();
}
void CDrawDoc::SelectFahrplan(CDrawObj* pObj)
{
//m_tabellen.AddHead(pObj);
//m_pActiveFahrplan = pObj;
}
/////////////////////////////////////////////////////////////////////////////
// CDrawDoc diagnostics
#ifdef _DEBUG
void CDrawDoc::AssertValid() const
{
COleDocument::AssertValid();
}
void CDrawDoc::Dump(CDumpContext& dc) const
{
COleDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CDrawDoc commands