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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
|
/************************************************************/
/* Windows Write, Copyright 1985-1992 Microsoft Corporation */
/************************************************************/
#define NOGDICAPMASKS
#define NOVIRTUALKEYCODES
#define NOWINSTYLES
#define NOSYSMETRICS
#define NOICON
#define NOKEYSTATE
#define NOSYSCOMMANDS
#define NOSHOWWINDOW
#define NOATOM
#define NOGDI
#define NOFONT
#define NOBRUSH
#define NOCLIPBOARD
#define NOCOLOR
#define NOCREATESTRUCT
#define NODRAWTEXT
#define NOMB
#define NOMEMMGR
#define NOMETAFILE
#define NOMINMAX
#define NOOPENFILE
#define NOPEN
#define NOREGION
#define NOSCROLL
#define NOSOUND
#define NOTEXTMETRIC
#define NOWH
#define NOWINOFFSETS
#define NOWNDCLASS
#define NOCOMM
#include <windows.h>
#include "mw.h"
#include "dlgdefs.h"
#include "cmddefs.h"
#include "propdefs.h"
#include "docdefs.h"
#include "str.h"
#include "printdef.h"
extern HCURSOR vhcArrow;
extern int vfCursorVisible;
extern int utCur; /* current conversion unit */
BOOL far PASCAL DialogTabs(hDlg, message, wParam, lParam)
HWND hDlg;
unsigned message;
WORD wParam;
LONG lParam;
{
/* This routine handles input to the Tabs dialog box. */
extern struct DOD (**hpdocdod)[];
extern int docCur;
extern int vdocParaCache;
extern HWND vhWndMsgBoxParent;
extern int ferror;
struct TBD (**hgtbd)[];
int idi;
switch (message)
{
case WM_INITDIALOG:
/* Disable modeless dialog boxes. */
EnableOtherModeless(FALSE);
/* Set up the fields for each of the tabs. */
hgtbd = (**hpdocdod)[docCur].hgtbd;
if (hgtbd != NULL)
{
struct TBD *ptbd;
unsigned dxa;
CHAR szT[cchMaxNum];
CHAR *pch;
for (ptbd = &(**hgtbd)[0], idi = idiTabPos0; (dxa = ptbd->dxa) != 0;
ptbd++, idi++)
{
pch = &szT[0];
CchExpZa(&pch, dxa, utCur, cchMaxNum);
SetDlgItemText(hDlg, idi, (LPSTR)szT);
CheckDlgButton(hDlg, idi + (idiTabDec0 - idiTabPos0), ptbd->jc
== (jcTabDecimal - jcTabMin));
}
}
break;
case WM_SETVISIBLE:
if (wParam)
EndLongOp(vhcArrow);
return(FALSE);
case WM_ACTIVATE:
if (wParam)
{
vhWndMsgBoxParent = hDlg;
}
if (vfCursorVisible)
ShowCursor(wParam);
return(FALSE); /* so that we leave the activate message to
the dialog manager to take care of setting the focus correctly */
case WM_COMMAND:
switch (wParam)
{
struct TBD rgtbd[itbdMax];
struct TBD *ptbdLast;
case idiOk:
/* Sort the new tab descriptors. */
bltc(rgtbd, 0, itbdMax * cwTBD);
ptbdLast = &rgtbd[itbdMax - 1];
for (idi = idiTabPos0; idi <= idiTabPos11; idi++)
{
unsigned dxa;
unsigned dxaTab;
struct TBD *ptbd;
/* If an invalid position was entered, then punt. */
if (!FPdxaPosBIt(&dxa, hDlg, idi))
{
ferror = FALSE;
return (TRUE);
}
/* Ignore blank tabs or tabs at zero. */
if (dxa == valNil || dxa == 0)
{
continue;
}
for (ptbd = &rgtbd[0]; (dxaTab = ptbd->dxa) != 0; ptbd++)
{
/* If there is already a tab at this position, then ignore
the new tab. */
if (dxa == dxaTab)
{
goto GetNextTab;
}
/* If the new tab position is smaller than the current tab,
then make room for the new tab. */
if (dxa < dxaTab)
{
bltbyte(ptbd, ptbd + 1, (unsigned)ptbdLast - (unsigned)ptbd);
break;
}
}
/* Put the tab into rgtbd. */
ptbd->dxa = dxa;
ptbd->jc = (IsDlgButtonChecked(hDlg, idi + (idiTabDec0 -
idiTabPos0)) ? jcTabDecimal : jcTabLeft) - jcTabMin;
GetNextTab:;
}
/* Set up the undo stuff. */
SetUndo(uacFormatTabs, docCur, cp0, cp0, docNil, cpNil, cpNil, 0);
/* Ensure that this document has a tab-stop table. */
if ((hgtbd = (**hpdocdod)[docCur].hgtbd) == NULL)
{
if (FNoHeap(hgtbd = (struct TBD (**)[])HAllocate(itbdMax *
cwTBD)))
{
goto DestroyDlg;
}
(**hpdocdod)[docCur].hgtbd = hgtbd;
}
blt(rgtbd, &(**hgtbd)[0], itbdMax * cwTBD);
/* Changing the tabs makes everything dirty. */
(**hpdocdod)[docCur].fDirty = TRUE;
vdocParaCache = docNil;
TrashAllWws();
case idiCancel:
DestroyDlg:
/* Destroy the tabs dialog box and enable any existing modeless
dialog boxes.*/
OurEndDialog(hDlg, NULL);
break;
case idiTabClearAll:
/* Clear all of the tabs. */
for (idi = idiTabPos0; idi <= idiTabPos11; idi++)
{
SetDlgItemText(hDlg, idi, (LPSTR)"");
CheckDlgButton(hDlg, idi + (idiTabDec0 - idiTabPos0), FALSE);
}
break;
case idiTabDec0:
case idiTabDec1:
case idiTabDec2:
case idiTabDec3:
case idiTabDec4:
case idiTabDec5:
case idiTabDec6:
case idiTabDec7:
case idiTabDec8:
case idiTabDec9:
case idiTabDec10:
case idiTabDec11:
CheckDlgButton(hDlg, wParam, !IsDlgButtonChecked(hDlg, wParam));
break;
default:
return(FALSE);
}
break;
case WM_CLOSE:
goto DestroyDlg;
default:
return(FALSE);
}
return(TRUE);
}
/* end of DialogTabs */
BOOL far PASCAL DialogDivision(hDlg, message, wParam, lParam)
HWND hDlg;
unsigned message;
WORD wParam;
LONG lParam;
{
/* This routine handles input to the Division dialog box. */
extern struct DOD (**hpdocdod)[];
extern int docCur;
extern struct SEP vsepNormal;
extern int vdocSectCache;
extern BOOL vfPrinterValid;
extern int dxaPrOffset;
extern int dyaPrOffset;
extern int dxaPrPage;
extern int dyaPrPage;
extern HWND vhWndMsgBoxParent;
extern typeCP cpMinDocument;
extern int ferror;
struct SEP **hsep = (**hpdocdod)[docCur].hsep;
register struct SEP *psep;
CHAR szT[cchMaxNum];
CHAR *pch = &szT[0];
#ifdef KINTL /* Kanji/International version */
static int iRBDown;
static int utInit;
#endif
switch (message)
{
case WM_INITDIALOG:
#ifdef KINTL /* Kanji/International version */
/* base initial setting on value in utCur */
utInit = utCur; /* for testing at ok */
if (utCur == utCm)
iRBDown = idiDivCm;
else
iRBDown = idiDivInch;
CheckDlgButton(hDlg, iRBDown, TRUE);
#endif
EnableOtherModeless(FALSE);
/* Get a pointer to the section properties. */
psep = (hsep == NULL) ? &vsepNormal : *hsep;
/* Initialize the starting page number. */
if (psep->pgnStart != pgnNil)
{
szT[ncvtu(psep->pgnStart, &pch)] = '\0';
SetDlgItemText(hDlg, idiDivPNStart, (LPSTR)szT);
pch = &szT[0];
}
else
{
SetDlgItemText(hDlg, idiDivPNStart, (LPSTR)"1");
}
SelectIdiText(hDlg, idiDivPNStart);
/* Initialize the margins. */
#ifdef DMARGINS
CommSzNum("Left Twips: ", psep->xaLeft);
CommSzNum("Right Twips: ", psep->xaMac - psep->dxaText - psep->xaLeft);
CommSzNum("Top Twips: ", psep->yaTop);
CommSzNum("Bottom Twips: ", psep->yaMac - psep->dyaText - psep->yaTop);
#endif /* DEBUG */
#ifdef KOREA
if (vfPrinterValid)
CchExpZa(&pch, imax(psep->xaLeft, dxaPrOffset), utCur,cchMaxNum);
else
CchExpZa(&pch, psep->xaLeft, utCur, cchMaxNum);
#else
CchExpZa(&pch, psep->xaLeft, utCur, cchMaxNum);
#endif
SetDlgItemText(hDlg, idiDivLMarg, (LPSTR)szT);
pch = &szT[0];
#ifdef KOREA /* 90.12.29 sangl */
if ( vfPrinterValid )
CchExpZa (&pch, imax(psep->xaMac - psep->dxaText - psep->xaLeft,
vsepNormal.xaMac - dxaPrOffset - dxaPrPage), utCur, cchMaxNum);
else
CchExpZa(&pch, psep->xaMac - psep->dxaText - psep->xaLeft, utCur,
cchMaxNum);
#else
CchExpZa(&pch, psep->xaMac - psep->dxaText - psep->xaLeft, utCur,
cchMaxNum);
#endif
SetDlgItemText(hDlg, idiDivRMarg, (LPSTR)szT);
pch = &szT[0];
#ifdef KOREA /* 90.12.29 sangl */
if (vfPrinterValid)
CchExpZa(&pch, imax( psep->yaTop, dyaPrOffset), utCur, cchMaxNum);
else
CchExpZa(&pch, psep->yaTop, utCur, cchMaxNum);
#else
CchExpZa(&pch, psep->yaTop, utCur, cchMaxNum);
#endif
SetDlgItemText(hDlg, idiDivTMarg, (LPSTR)szT);
pch = &szT[0];
#ifdef KOREA /* 90.12.29 sangl */
if (vfPrinterValid)
CchExpZa(&pch, imax(psep->yaMac - psep->dyaText - psep->yaTop,
vsepNormal.yaMac - dyaPrOffset - dyaPrPage), utCur, cchMaxNum);
else
CchExpZa(&pch, psep->yaMac - psep->dyaText - psep->yaTop, utCur,
cchMaxNum);
#else
CchExpZa(&pch, psep->yaMac - psep->dyaText - psep->yaTop, utCur,
cchMaxNum);
#endif
SetDlgItemText(hDlg, idiDivBMarg, (LPSTR)szT);
break;
case WM_SETVISIBLE:
if (wParam)
EndLongOp(vhcArrow);
return(FALSE);
case WM_ACTIVATE:
if (wParam)
{
vhWndMsgBoxParent = hDlg;
}
if (vfCursorVisible)
ShowCursor(wParam);
return(FALSE); /* so that we leave the activate message to
the dialog manager to take care of setting the focus correctly */
case WM_COMMAND:
switch (wParam)
{
int pgn;
int iza;
int za[4];
int zaMin[4];
int dza;
int *pza;
int dxaMax;
int dyaMax;
case idiOk:
/* Is the page number valid? */
if (!WPwFromItW3Id(&pgn, hDlg, idiDivPNStart, pgnMin, pgnMax,
wNormal, IDPMTNPI))
{
ferror = FALSE; /* minor error, stay in dialog */
break;
}
/* Determine the minimum margins of the page. */
if (vfPrinterValid)
{
zaMin[0] = dxaPrOffset;
zaMin[1] = imax(0, vsepNormal.xaMac - dxaPrOffset - dxaPrPage);
zaMin[2] = dyaPrOffset;
zaMin[3] = imax(0, vsepNormal.yaMac - dyaPrOffset - dyaPrPage);
}
else
{
zaMin[0] = zaMin[1] = zaMin[2] = zaMin[3] = 0;
}
/* Are the margins valid? */
for (iza = 0; iza < 4; iza++)
{
/* Is the margin a positive measurement? */
if (!FPdxaPosIt(&za[iza], hDlg, iza + idiDivLMarg
))
{
ferror = FALSE; /* minor error, stay in dialog */
return (TRUE);
}
/* Is it less than the minimum? */
if (FUserZaLessThanZa(za[iza], zaMin[iza]))
{
ErrorBadMargins(hDlg, zaMin[0], zaMin[1], zaMin[2],
zaMin[3]);
SelectIdiText(hDlg, iza + idiDivLMarg);
SetFocus(GetDlgItem(hDlg, iza + idiDivLMarg));
return (TRUE);
}
}
#ifdef DMARGINS
CommSzNum("New Left Twips: ", za[0]);
CommSzNum("New Right Twips: ", za[1]);
CommSzNum("New Top Twips: ", za[2]);
CommSzNum("New Bottom Twips: ", za[3]);
#endif /* DEBUG */
/* Ensure that this document has a valid section property
descriptor. */
if (hsep == NULL)
{
if (FNoHeap(hsep = (struct SEP **)HAllocate(cwSEP)))
{
goto DestroyDlg;
}
blt(&vsepNormal, *hsep, cwSEP);
(**hpdocdod)[docCur].hsep = hsep;
}
psep = *hsep;
/* Are the combined margins longer or wider than the page? */
pza = &za[0];
dxaMax = psep->xaMac - dxaMinUseful;
dyaMax = psep->yaMac - dyaMinUseful;
if ((dza = *pza) > dxaMax || (dza += *(++pza)) > dxaMax ||
(dza = *(++pza)) > dyaMax || (dza += *(++pza)) > dyaMax)
{
Error(IDPMTMTL);
ferror = FALSE; /* minor error, stay in dialog */
SelectIdiText(hDlg, (int)(idiDivLMarg + (pza - &za[0])));
SetFocus(GetDlgItem(hDlg, (int)(idiDivLMarg + (pza - &za[0]))));
return (FALSE);
}
/* If the margins have changed, then set the new values. */
if (psep->pgnStart != pgn || psep->xaLeft != za[0] || psep->dxaText
!= psep->xaMac - za[0] - za[1] || psep->yaTop != za[2] ||
psep->dyaText != psep->yaMac - za[2] - za[3])
{
/* Set up the undo stuff. */
SetUndo(uacFormatSection, docCur, cp0, cp0, docNil, cpNil,
cpNil, 0);
/* Reset psep in case some heap movement has taken place. */
psep = *hsep;
if (psep->pgnStart != pgn)
{
/* Renumber the page table. */
extern int docMode;
register struct PGTB **hpgtb = (**hpdocdod)[docCur].hpgtb;
register struct PGD *ppgd;
int ipgd;
int cpgdMac;
/* Initialize page table if it does not already exist. */
if (hpgtb == NULL)
{
if (FNoHeap(hpgtb =
(struct PGTB **)HAllocate(cwPgtbBase + cpgdChunk *
cwPGD)))
{
NoUndo();
return(TRUE);
}
(**hpgtb).cpgdMax = cpgdChunk;
(**hpgtb).cpgd = 1;
(**hpgtb).rgpgd[0].cpMin = cpMinDocument;
/* Reset psep because of heap movement. */
psep = *hsep;
}
/* Save the starting page number in the section properties.
*/
psep->pgnStart = pgn;
/* Update the page table with the new starting page number.
*/
for (ipgd = 0, cpgdMac = (**hpgtb).cpgd, ppgd =
&((**hpgtb).rgpgd[0]) ; ipgd < cpgdMac; ipgd++, ppgd++)
{
ppgd->pgn = pgn++;
}
/* Force the page info window to be repainted. */
docMode = docNil;
}
/* Set the new section properties. */
psep->dxaText = psep->xaMac - (psep->xaLeft = za[0]) - za[1];
psep->dyaText = psep->yaMac - (psep->yaTop = za[2]) - za[3];
/* Invalidate the section cache. */
vdocSectCache = docNil;
TrashAllWws();
/* Mark the document as dirty. */
(**hpdocdod)[docCur].fDirty = TRUE;
}
#ifdef KINTL /* Kanji/International version */
/* redraw ruler if visible and units changed */
if (utInit != utCur) {
ReframeRuler();
}
#endif
goto DestroyDlg;
case idiCancel:
#ifdef KINTL /* International version */
utCur = utInit; /* restore units at actual cancel */
#endif /* KINTL */
DestroyDlg:
OurEndDialog(hDlg, TRUE);
break;
#ifdef KINTL /* International version */
{
int margin;
/* Maximum number of characters in the edit control */
#define cchMaxEditText 64
case idiDivInch:
utCur = utInch;
goto SetUnits;
case idiDivCm:
utCur = utCm;
/* measurment button fall into this code */
SetUnits:
/* set up buttons appropriately */
#ifdef INTL
CheckRadioButton(hDlg, idiDivInch, idiDivCm, wParam);
#else /* KANJI */
CheckRadioButton(hDlg, idiDivInch, idiDivCch, wParam);
#endif
if (wParam != iRBDown) {
/* reevaluate margin values based on new units */
iRBDown = wParam;
/* want most recently entered value from screen into
twips, then convert using current unit scale */
szT[0] = GetDlgItemText(hDlg, idiDivLMarg,
(LPSTR) &szT[1], cchMaxNum);
if (FZaFromSs (&margin, szT+1, *szT, utCur))
{
pch = &szT[0];
CchExpZa(&pch, margin, utCur, cchMaxNum);
SetDlgItemText(hDlg, idiDivLMarg, (LPSTR)szT);
}
szT[0] = GetDlgItemText(hDlg, idiDivRMarg,
(LPSTR) &szT[1], cchMaxNum);
if (FZaFromSs (&margin, szT+1, *szT, utCur))
{
pch = &szT[0];
CchExpZa(&pch, margin, utCur, cchMaxNum);
SetDlgItemText(hDlg, idiDivRMarg, (LPSTR)szT);
}
szT[0] = GetDlgItemText(hDlg, idiDivTMarg,
(LPSTR) &szT[1], cchMaxNum);
if (FZaFromSs (&margin, szT+1, *szT, utCur))
{
pch = &szT[0];
CchExpZa(&pch, margin, utCur, cchMaxNum);
SetDlgItemText(hDlg, idiDivTMarg, (LPSTR)szT);
}
szT[0] = GetDlgItemText(hDlg, idiDivBMarg,
(LPSTR) &szT[1], cchMaxNum);
if (FZaFromSs (&margin, szT+1, *szT, utCur))
{
pch = &szT[0];
CchExpZa(&pch, margin, utCur, cchMaxNum);
SetDlgItemText(hDlg, idiDivBMarg, (LPSTR)szT);
}
}
break;
}
#endif /* KINTL */
default:
return (FALSE);
}
break;
default:
return (FALSE);
}
return (TRUE);
} /* end of DialogDivision */
|