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
|
/************************************************************/
/* Windows Write, Copyright 1985-1992 Microsoft Corporation */
/************************************************************/
/* This file contains routines that change dialog boxes or the menu for the
ruler. */
#define NOGDICAPMASKS
#define NOVIRTUALKEYCODES
#define NOWINMESSAGES
#define NOWINSTYLES
#define NOCLIPBOARD
#include <windows.h>
#include "mw.h"
#include "menudefs.h"
#include "str.h"
extern HMENU vhMenu;
extern CHAR stBuf[256];
extern int utCur;
SetRulerMenu(fShowRuler)
BOOL fShowRuler;
{
/* This routine puts "Ruler On" into the menu if fShowRuler is true; else,
"Ruler Off" is put into the menu. */
FillStId(stBuf, fShowRuler ? IDSTRShowRuler : IDSTRHideRuler, sizeof(stBuf));
ChangeMenu(vhMenu, imiShowRuler, (LPSTR)&stBuf[1], imiShowRuler, MF_CHANGE);
}
#ifdef RULERALSO
#include "cmddefs.h"
#include "propdefs.h"
#include "rulerdef.h"
#include "dlgdefs.h"
extern HWND vhDlgIndent;
extern int mprmkdxa[];
extern int vdxaTextRuler;
SetIndentText(rmk, dxa)
int rmk; /* ruler mark */
unsigned dxa;
{
/* This routine reflects the changes made on the ruler in the Indentd dialog
box. */
unsigned dxaShow;
int idi;
CHAR sz[cchMaxNum];
CHAR *pch = &sz[0];
/* Get the dialog item number and the measurement. */
switch (rmk)
{
case rmkLMARG:
dxaShow = dxa;
idi = idiParLfIndent;
break;
case rmkINDENT:
dxaShow = dxa - mprmkdxa[rmkLMARG];
idi = idiParFirst;
break;
case rmkRMARG:
dxaShow = vdxaTextRuler - dxa;
idi = idiParRtIndent;
break;
}
CchExpZa(&pch, dxaShow, utCur, cchMaxNum);
SetDlgItemText(vhDlgIndent, idi, (LPSTR)sz);
if (rmk == rmkLMARG)
{
/* If the left indent changes, then we need to update the first line
indent. */
dxaShow = mprmkdxa[rmkINDENT] - dxaShow;
pch = sz;
CchExpZa(&pch, dxaShow, utCur, cchMaxNum);
idi = idiParFirst;
SetDlgItemText(vhDlgIndent, idi, (LPSTR)sz);
}
}
#endif /* RULERALSO */
|