forked from do-/steludio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Help.dfm
96 lines (96 loc) · 2.69 KB
/
Help.dfm
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
object FormHelp: TFormHelp
Left = 360
Top = 245
BorderStyle = bsDialog
Caption = 'Help'
ClientHeight = 574
ClientWidth = 639
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
FormStyle = fsStayOnTop
KeyPreview = True
OldCreateOrder = False
Position = poMainFormCenter
OnKeyDown = FormKeyDown
PixelsPerInch = 96
TextHeight = 13
object Memo: TMemo
Left = 0
Top = 0
Width = 639
Height = 574
Align = alClient
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
Lines.Strings = (
'--- Editor --------------------------------------'
''
'Tab Indent selected'
'Ctrl-> Comment selected'
'Ctrl-< Uncomment selected'
''
'Ctrl-F Find'
'Ctrl-H Replace'
'F3 Find selected/repeat last search'
'Ctrl-[] Find matching bracket'
''
#1057'trl-Alt-S Change settings'
''
''
'--- Navigation ----------------------------------'
''
'F6 Switch between Config.pm/callback subs'
''
'Ctrl-N New screen type'
'Ctrl-B New action'
''
'F8 Choose screen type'
'F9 Choose role'
'F11 Choose action'
''
'Alt-S Switch to Select'
'Alt-G Switch to Get_item'
'Alt-W Switch to draW'
'Alt-M Switch to draw_iteM'
''
'Alt-C Switch to do_Create'
'Alt-U Switch to do_Update'
'Alt-D Switch to do_Delete'
'Alt-A Switch to do_Add'
''
#1057'trl-Alt-C Switch to validate_Create'
#1057'trl-Alt-U Switch to validate_Update'
#1057'trl-Alt-D Switch to validate_Delete'
#1057'trl-Alt-A Switch to validate_Add'
''
'Ctrl-7 Switch to select/do'
'Ctrl-1 Switch to get_item/validate'
'Ctrl-9 Switch to draw'
'Ctrl-3 Switch to draw_item'
''
'--- File ----------------------------------------'
''
'Ctrl-S Save current file'
''
'--- Version Control (TortoiseSVN required) ------'
''
'Ctrl-Alt-Shift-U SVN Update'
'Ctrl-Alt-Shift-C SVN Commit'
''
'--- Help ----------------------------------------'
''
'F1 This screen'
'Esc Close it'
'')
ParentFont = False
ReadOnly = True
TabOrder = 0
end
end