summaryrefslogtreecommitdiff
path: root/app/doc/navigation.but
blob: 66b0cc92b9b6f2947715be9314215e47ffc6c90d (plain)
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
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
\# Notes:
\#
\# The "\u000" command is used to format the output. The command causes a blank line to appear between "bulleted" or "described" items.
\#
\# The "\u00B0" command gives proper format to the degree sign.
\cfg{html-local-head}{<meta name="AppleTitle" content="Navigation" />}

\C{navigation} Navigation

The Main Window includes a title bar along the top that describes the contents of the window, followed by a tool bar that contains user interface buttons. Most of the window's remaining area is used to display the layout.

Most windows can be opened, closed, resized, minimized, and moved around the screen. The close, minimize, and zoom buttons are located on the right side of the title bar. Minimizing a window will close the contents of the window, but store a reference to it in the Task bar. Closing a window will make it disappear completely (so you may be asked to save your changes first). To move a window, click on the title bar and drag the window where you want it. To resize a window, either click the Zoom button 


\H{mainW} \i{Main Window Overview}

\dt Main Window Overview

\u000

\dd \G{png.d/main1.png}

\u000

\dd The size of the main window can be changed by dragging on the resizing borders.

\u000

\dd Minimizing the \e{Main Window} will minimize all \e{XTrackCAD} windows.

\u000

\dt The \f{Main Window} contains (from the top down):

\u000

\dt \e{Title bar}

\dd \G{png.d/title.png}

\u000

\dd Current filename, \e{XTrackCAD} version number, and window manager buttons. An asterisk (*) after the filename indicates that there are unsaved changes.

\u000

\dt \e{Menu Bar}

\dd \G{png.d/menu.png}

\u000

\dd Contains from left to right;

\lcont{

\b File (\K{fileM})

\b Edit (\K{editM})

\b View (\K{viewM})

\b Add (\K{addM})

\b Change (\K{changeM})

\b Draw (\K{cmdDraw})

\b Manage (\K{manageM})

\b Options (\K{optionM})

\b Macro (\K{macroM})

\b Window (\K{windowM}) and;

\b Help (\K{helpM}) menu buttons.

}

\u000

\dt \e{Tool Bar}

\dd \G{png.d/toolbar.png}

\u000

\dd Manipulate track and other objects

\u000

\dt \e{Hot Bar} (\K{cmdHotBar})

\dd \G{png.d/hotbar.png}

\u000

\dd Scrolling list of Turnouts and Structures

\u000

\dt \e{Main Canvas}

\dd \G{png.d/maincanvas.png} 

\u000

\dd Main drawing area with rulers along each side.

\u000

\dd The \f{Main Canvas} is where all tracks and objects are drawn.

\u000

\dd The scale of the \f{Main Canvas} can be changed using the;

\lcont{

\b \f{Zoom} selections (\K{cmdZoom}) under the \f{View} (\K{viewM}) menu

\b \f{Zoom} buttons on the \f{Tool-bar}

\b Mouse Wheel

\b PAGE UP and PAGE DOWN keys.

}

\u000
 
\dd Tracks will be drawn with two lines and ties if you zoom in. When the drawing scale is 1:1 a dashed centerline is also drawn for each track.

\u000

\dd The ARROW keys move the \f{Canvas} left, right, up or down.

\u000

\dt \e{Map Window}

\dd \G{png.d/map.png}

\u000

\dd You can change which portion of the layout is displayed by using the \f{Map Window} (\K{cmdMap}).

\u000

\dt \e{Status Bar}

\dd \G{png.d/statusbar.png}

\u000

\dd  Contains from left to right;

\lcont{

\b Drawing scale of the Main Canvas,

\b X position of the cursor,

\b Y position of the cursor,

\b Status and informational messages

}

\rule


\H{generaloperation} General Operation \I{Dialogs}

Most Windows open with three standard dialog buttons:

\dd \f{Cancel} - Cancels dialog. Layout reverts back to its previous state.

\u000

\dd \f{Help} - Invokes on-line help for current command or dialog.

\u000

\dd \f{OK} - Completes the dialog action. Layout is updated with current changes.

\rule


\S{enterValue} \i{Entering Values}

Lengths and Distances can be entered in a variety of formats;

\dd \e{12ft 4 1/2in, 12' 4.5", 148.500, 1.234m, 123.4cm or 1234mm} are all valid values.

\u000

\dd Pressing the Equal Sign (\c{=}) key after an entry will reformat the value entered to your preferred length format (\K{cmdPref}).

\u000

\dd Pressing the "\c{p}" key after an entry will convert a prototype measurement to a scale measurement by dividing the value entered by the ratio for the current scale.

\u000

\dd Pressing the "\c{s}" key after an entry will convert a scale measurement to a prototype measurement.

\rule

\S{cmdMap} \i{Map Window}

\G{png.d/map.png}

The \e{Map Window} area shows the complete layout at a reduced scale.  A highlighted (reverse video) area shows what portion is visible in the Main Window (\K{mainW}).  The highlighted area can be Left+Dragged (\K{windowTerms}) around the layout to change the origin of the Main Canvas.  The highlighted area changes size as Zoom In (\K{viewM}) and Zoom Out (\K{viewM}) are selected.

You can also Right+Drag (\K{windowTerms}) on the Map window to set the origin and scale of the Main Canvas.

The size of the \e{Map Window} changes when you change the Room Size (see \K{cmdLayout}).  You can also change the Map Scale (\K{cmdDisplay}) on the Display (\K{cmdDisplay}) dialog to change the size of the \e{Map Window}.

If you close the \e{Map Window}, you can reopen it by the \e{Window} menu.

Visibility of the \e{Map Window} can be toggled by pressing \e{Ctrl+Space}

\rule


\H{kbshortcuts} \i{Keyboard Shortcuts} \I{Shortcut Keys}

The term Shortcut key refers to specific key combinations which are used to accomplish an action which otherwise would be accomplished by moving a MOUSE and /or selecting from a Menu. Shortcut keys are often key combinations consisting of the letter key pressed along with the Alt or Ctrl key.

Instead of using the menus or the buttons on the \f{Tool-bar} (\K{mainW}), most \e{XTrackCAD} commands may be invoked through use of Shortcut keys.

\dd The \c{RETURN} key has the same effect as pressing the \f{OK} button on the current dialog.

\u000

\dd The \c{ESCAPE} key cancels the current command.  All selected tracks are unselected.  The \f{Properties} (\K{cmdDescribe}) or \f{Select} (\K{cmdSelect}) command becomes the current command.

\u000

\dd The \c{PAGE UP} and \c{PAGE DOWN} keys will zoom out or zoom in.

\u000

\dd The \c{ARROWS} key will pan the canvas right, left, up and down.

\u000

\dd The \c{DELETE} key invokes the \f{Delete} (\K{cmdDelete}) command.

Several Shortcut key commands are used in conjunction with the mouse. These commands are listed in \K{cmdAcclKeys}.

\rule


\S{cmdAdd} Add Commands

\dt Add Commands

\u000

\dd Create

\lcont{

\b Circle track from

\lcont{

\b center - \e{Ctrl+0}

\b fixed radius circle - \e{Ctrl+8}

\b tangent - \e{Ctrl+9}

}

\b Curve track from

\lcont{

\b center - \e{Ctrl+6}

\b chord - \e{Ctrl+7}

\b endpoint - \e{Ctrl+4}

\b tangent - \e{Ctrl+5}

}

\b Hand laid turnout - \e{Ctrl+Shift+I}

\b Straight track - \e{Ctrl+G}

\b Turntable - \e{Ctrl+Shift+N}

}

\u000

\dd Helix dialog and construction tool - \e{Ctrl+Shift+H}

\u000

\dd Structure dialog - \e{Ctrl+Shift+C}

\u000

\dd Turnout dialog - \e{Ctrl+T}

\u000

\rule


\S{cmdChange} Change Commands

\dt Change Commands

\u000

\dd Connect two sectional tracks - \e{Ctrl+Shift+J}

\u000

\dd Elevation dialog - \e{Ctrl+Shift+E}

\u000

\dd Join two tracks - \e{Ctrl+J}

\u000

\dd Properties dialog - \e{Ctrl+?}

\u000

\dd Modify or extend track - \e{Ctrl+M}

\u000

\dd Move

\lcont{

\b description - \e{Ctrl+Shift+Z}

\b selected object - \e{Ctrl+Shift+M}

\u000

}

\dd Profile dialog - \e{Ctrl+Shift+F}

\u000

\dd Rotate selected object - \e{Ctrl+Shift+R}

\u000

\dd Select tool - \e{Ctrl+E}

\u000

\dd Split flex track - \e{Ctrl+Shift+S}

\u000

\rule


\S{kbshortcutdraw} Draw Commands

\S2{addText} Add Text

Add Text

\dd Add Text to drawing area - \e{Ctrl+Shift+X}

\rule


\S2{cmdDrawCircle} Draw Circles

Draw Circles

\dd Draw circle outline from

\lcont{

\b center to tangent point (Edge) - \e{Ctrl+Shift+0}

\b tangent point (Edge) to center - \e{Ctrl+Shift+9}

}

\u000

\dd Draw circle filled from

\lcont{

\b center to tangent point (Edge) - \e{Ctrl+Alt+0}

\b tangent point (Edge) to center - \e{Ctrl+Alt+9}

}

\rule


\S2{cmdDrawCurve} Draw Curved Lines

Draw Curved Lines

\dd Draw curved lines from;

\lcont{

\b center to endpoint - \e{Ctrl+Shift+6}

\b chord - \e{Ctrl+Shift+7}

\b endpoint in direction of curve - \e{Ctrl+Shift+4}

\b endpoint to center - \e{Ctrl+Shift+5}

}

\rule


\S2{cmdDrawShape} Draw Shapes

Draw Shapes

\dd Draw shape

\lcont{

\b Box outline - \e{Ctrl+Shift+[}

\b Filled Box - \e{Ctrl+Alt+[}

\b Filled Polygon - \e{Ctrl+Alt+2}

\b Poly-line - \e{Ctrl+Shift+2}

}

\rule


\S2{cmdDrawStraight} Draw Straight Objects

Draw Straight Objects

\dd Draw straight object

\lcont{

\b \i{Bench-work} - \e{Ctrl+B}

\b Dimension Line - \e{Ctrl+Shift+D}

\b Straight Line - \e{Ctrl+Shift+1}

\b Table Edge - \e{Ctrl+Shift+)}

}

\rule


\S2{NoteDialog} Note Dialog

Note Dialog

\dd Note dialog (\K{cmdNote}) - \e{Ctrl+Alt+N}

\rule


\S{cmdEdit} Edit Commands

\dt Edit Commands

\u000

\dd Copy select objects to the clipboard - \e{Ctrl+C} or \e{Ctrl+Insert}

\u000

\dd Cut select objects - \e{Ctrl+X} or \e{Shift+Delete}

\u000

\dd Draw selected tracks with

\lcont{

\b thin lines - \e{Ctrl+1}

\b medium lines - \e{Ctrl+2}

\b thick lines - \e{Ctrl+3}

\u000

}

\dd Delete selected object(s) - \e{Delete} or \e{Ctrl+D}

\u000

\dd Deselect all objects - \e{Alt+Shift+A} or \e{Esc}

\u000

\dd Hide selected tracks in a Tunnel - \e{Ctrl+Shift+T}

\u000

\dd Move Selected tracks

\lcont{

\b above others - \e{Ctrl+Shift+B}

\b below others - \e{Ctrl+Shift+W}

\u000

}

\dd Paste from clipboard to layout - \e{Ctrl+V} or \e{Shift+Insert}

\u000

\dd Redo last undone command - \e{Ctrl+R}

\u000

\dd Select all objects - \e{Ctrl+Shift+A}

\u000

\dd Undo last command - \e{Ctrl+Z} or \e{Shift+Backspace}

\rule


\S{cmdFile} File Commands

\dt File Commands

\u000

\dd Create a new layout - \e{Ctrl+N}

\u000

\dd Edit layout description Note (\K{cmdNote}) - \e{Ctrl+Alt+T}

\u000

\dd Export

\lcont{

\b Selected objects to a \e{.xti} file - \e{Ctrl+Alt+X}

\b To Bitmap (\K{cmdOutputbitmap}) - \e{Ctrl+Shift+Q}

\u000

}

\dd Import from a \e{.xti} file - \e{Ctrl+Alt+I}

\u000

\dd Manipulate Parameter Files (\K{cmdPrmfile}) - \e{Ctrl+Alt+S}

\u000

\dd Open layout file - \e{Ctrl+O}

\u000

\dd Print Command (\K{cmdPrint}) - \e{Ctrl+P}

\u000

\dd Save As another file - \e{Ctrl+A}

\u000

\dd Save the current layout - \e{Ctrl+S}

\rule


\S{kbshortcutHotBar} \i{Hot Bar}

\dt Hot Bar

\u000

\dd These actions take effect if the Hot Bar has keyboard focus.

\lcont{

\b Move Hot Bar multiple entries

\lcont{

\b left - \e{Shift+Left Arrow}

\b right - \e{Shift+Right Arrow}

\u000

}

\b Move Hot Bar one entry

\lcont{

\b left - \e{Left Arrow}

\b right - \e{Right Arrow}

\u000

}

\b Pop-up menu of Hot Bar contents - \e{Right-Click}

\u000

\b Set relative position of Hot Bar - \e{1, 2 ... 9, 0}

}


\S{cmdMacro} Macro Commands

\dt Macro Commands

\u000

\dd Play Back a macro file (\K{macroM}) - \e{Ctrl+Alt+B}

\u000

\dd Record a macro file (\K{macroM}) - \e{Ctrl+Alt+R}

\u000

\rule


\S{kbshortcutMainCanvas} \i{Main Drawing Canvas}

\dt Main Drawing Canvas

\u000

\dd These actions take effect if the Main Drawing Canvas has keyboard focus.

\lcont{

\u000

\dd Move Canvas:

\lcont{

\b Down - \e{Down Arrow}

\b Left - \e{Left Arrow}

\b Right - \e{Right Arrow}

\b Up - \e{Up Arrow}

}

\u000

\dd Map Window:

\lcont{ 

\b On / Off - \e{Ctrl+Space}

}
}

\rule

\S{cmdManage} Manage Commands

\dt Manage Commands

\u000

\dd Car Inventory dialog - \e{Ctrl+Alt+V}

\u000

\dd Custom Management dialog (\K{cmdCustmgm}) - \e{Ctrl+Alt+U}

\u000

\dd Generate a Parts List (\K{cmdEnum}) - \e{Ctrl+Alt+L}

\u000

\dd Group objects (\K{cmdGroup}) - \e{Ctrl+Shift+G}

\u000

\dd Layers dialog (\K{cmdLayer}) - \e{Ctrl+Alt+Y}

\u000

\dd Ungroup objects (\K{cmdGroup}) - \e{Ctrl+Shift+U}

\u000

\dd Update Prices (\K{cmdPricelist}) - \e{Ctrl+Alt+Q}

\rule


\S{cmdOption} Option Commands

\dt Options Commands

\u000

\dd Colors dialog (\K{cmdRgbcolor}) - \e{Ctrl+Alt+C}

\u000

\dd Command Options dialog (\K{cmdCmdopt}) - \e{Ctrl+Alt+M}

\u000

\dd Display dialog (\K{cmdDisplay}) - \e{Ctrl+Alt+D}

\u000

\dd Easement Options dialog - \e{Ctrl+Alt+E}

\u000

\dd Font dialog (\K{fontSelW}) - \e{Ctrl+Alt+F}

\u000

\dd Layout dialog (\K{cmdLayout}) - \e{Ctrl+Alt+A}

\u000

\dd Preferences dialog (\K{cmdPref}) - \e{Ctrl+Alt+P}

\u000

\dd Sticky commands dialog (\K{cmdSticky}) - \e{Ctrl+Alt+K}

\rule

\S{cmdView} View Commands

\dt View Commands

\u000

\dd Redraw

\lcont{

\b all - \e{Ctrl+Shift+L}

\b main window - \e{Ctrl+L}

}

\u00

\dd Snap Grid dialog (\K{cmdGrid}) - \e{Ctrl+Alt+G}

\u00

\dd Zoom

\lcont{

\b in - \e{Ctrl++, Page Down}

\b out - \e{Ctrl+-, Page Up}

}

\rule


\H{cmdAcclKeys} \i{Mouse Actions}

\dt \e{XTrackCAD} uses the left and right mouse buttons when manipulating tracks and other objects on the layout.  Their meaning depends on the particular command but in general:

\u00

\dd \e{Left-Click} - selects an object or an endpoint.

\u00

\dd \e{Left+Drag} - modifies an object, such as extending it.

\u00

\dd \e{Right-Click} - displays a pop-up menu of commands.

\u00

\dd \e{Shift+Right-Click} - displays a pop-up menu of command options (for some commands).

\u00

\dd \e{Rotate Wheel} - zooms drawing area in and out.

\u000

\u000

\dt When Moving and Rotating ( Placing Turnouts and Structures, Moving the Print and Snap Grids, ... ):

\u00

\dd \e{(Left+Drag)} - moves the objects or grid.

\u00

\dd \e{(Right+Drag)} - rotates the objects or grid about the pivot point, which is
the point you started the drag operation.

Some commands use the \c{Shift} or \c{Ctrl} key to modify the meaning of button presses.

\rule


\S{mouseBcmd} Context Sensitive Menus

For all commands listed below, a \e{Right-Click} will display a context sensitive pop-up command list menu.  For some commands (noted below), a \e{Shift+Right-Click} will display a context sensitive pop-up command options menu.  The operation of \e{Right-Click} and \e{Shift+Right-Click} can be reversed by an item on the Command Options (\K{cmdCmdopt}) dialog.

The Shortcut key for each command is listed after the command name.


\dt Circle Track Command (\K{cmdCircle})

\dd Drag from

\lcont{

\b center to circle tangent point (Edge) - \e{Ctrl+0}

\b circle tangent point (Edge) to center - \e{Ctrl+9}

}

\dd Position fixed radius circle - \e{Ctrl+8}

\u000


\dt Connect Command (\K{cmdConnect}) - \e{Ctrl+Shift+J}

\dd Remove adjustments starting from an unconnected endpoint - \e{Shift+Left-Click}

\dd Select endpoints to connect - \e{Left-Click}

\u000


\dt Curved Track Commands (\K{cmdCurve})

\dd Drag from 1st endpoint

\lcont{

\b in curve direction - \e{Ctrl+4}

\b to Center - \e{Ctrl+5}

\b to 2nd endpoint (Chord) - \e{Ctrl+7}

}

\dd Drag from Center to 1st endpoint - \e{Ctrl+6}

\u000


\dt Properties Command (\K{cmdDescribe}) - \e{Ctrl+?}

\dd Display property sheet for the object - \e{Left-Click}

\u000


\dt Elevation Command (\K{cmdElev}) - \e{Ctrl+Shift+E}

\dd Choose endpoint - \e{Left-Click}

\dd Move Elevation Marker - \e{Right+Drag}

\dd Split track and choose endpoint - \e{Shift+Left-Click}

\u000


\dt Flip Command (\K{cmdFlip})

\dd Draw Mirror line - \e{Left+Drag}

\u000


\dt Hand-laid Turnout Command (\K{cmdHandLaidTurnout}) - \e{Ctrl+Shift+I}

\dd Define

\lcont{

\b frog position and angle - \e{(1st Left+Drag)}

\b points position - \e{(2nd Left+Drag)}

}

\u000


\dt Helix Track Command (\K{cmdHelix}) - \e{Ctrl+Shift+H}

\dd Position Helix - \e{(Left+Drag)}

\u000


\dt Join Command (\K{cmdJoin}) - \e{Ctrl+J}

\dd Join tracks - \e{(Left+Drag)}

\dd Move selected tracks to join with unselected endpoint - \e{Shift+Left-Click}

\u000


\dt Modify Command (\K{cmdModify}) - \e{Ctrl+M}

\dd Change

\lcont{

\b length or make tangent to curve - \e{Left+Drag}

\b radius - \e{Shift+Left+Drag}

}

\dd Extend track - \e{Right+Drag}

\u000


\dt Move Command (\K{cmdMove}) - \e{Ctrl+Shift+M}

\dd Command Options: how to draw moving objects (\K{cmdAcclKeys}) - \e{Shift+Right-Click}

\dd Move Selected objects - \e{Left+Drag}

\u000


\dt Move Description Command (\K{cmdMoveLabel}) - \e{Ctrl+Shift+Z}

\dd Move Description - \e{Left+Drag}

\dd Toggle Label display for Curved, Helix and Turnout tracks (\K{cmdAcclKeys}). - \e{Shift+Right-Click}

\u000


\dt Note Command (\K{cmdNote}) - \e{Ctrl+Alt+N}

\dd Position Note - \e{Left+Drag}

\u000


\dt Parallel Command (\K{cmdParallel}) - \e{Ctrl+Shift+P}

\dd Position Parallel track relative to selected track - \e{(Left+Drag)}

\u000


\dt Print Command (\K{cmdPrint}) - \e{Ctrl+P}

\dd Command Options: rotate by specified amount (\K{cmdAcclKeys}) - \e{(Shift+Right-Click)}

\dd Move Print grid - \e{Shift+Left+Drag}

\dd Rotate Print grid - \e{Shift+Right+Drag}

\dd Select or unselect pages - \e{Left-Click}

\u000


\dt Profile Command (\K{cmdProfile}) - \e{Ctrl+Shift+F}

\dd Add tracks to path from path end to chosen endpoint - \e{(Left-Click)}

\dd Command Options: change Elevation type - \e{(Shift+Right-Click)} (\K{cmdAcclKeys})

\u000


\dt Rotate Command (\K{cmdRotate}) - \e{Ctrl+Shift+R}

\dd Command Options: how to draw moving objects and rotate by specified amount (\K{cmdAcclKeys}) - \e{Shift+Right-Click}

\dd Rotate Selected objects - \e{Left+Drag}

\lcont{

\b in increments of 15\u00B0 - \e{Ctrl+Left+Drag}

}

\u000


\dt Ruler Command (\K{cmdRuler})

\dd Position Ruler - \e{Left+Drag}

\u000


\dt Select Command (\K{cmdSelect}) - \e{Ctrl+E}

\dd Command Options: how to draw moving objects and rotate by specified amount (\K{cmdAcclKeys}) - \e{Shift+Right-Click}

\dd Move

\lcont{

\b selected objects - \e{Shift+Left+Drag}

\b labels - \e{Ctrl+Left+Drag}

}

\dd Unselect all objects within the highlighted area - \e{Right+Drag}

\dd Rotate selected objects - \e{Shift+Right+Drag}

\lcont{

\b in increments of 15\u00B0 - \e{Ctrl+Shift+Right+Drag}

}

\dd Select (or unselect) the object - \e{Left-Click}

\dd Select all objects

\lcont{

\b connected to object - \e{Shift+Left+Click}

\b within the highlighted area - \e{Left+Drag}

}

\u000


\dt Snap Grid Command (\K{cmdGrid}) - \e{Ctrl+Alt+G}

\dd Command Options: rotate by specified amount (\K{cmdAcclKeys}) - \e{Shift+Right-Click}

\dd Move Snap Grid - \e{Left+Drag}

\dd Rotate Snap Grid - \e{Right+Drag}

\u000


\dt Split Track Command (\K{cmdSplitTrack}) - \e{Ctrl+Shift+S}

\dd As above, plus trim turnouts - \e{Shift+Left-Click}

\dd Change block gaps (\K{cmdAcclKeys}) - \e{Shift+Right-Click}

\dd If at endpoint: disconnect track, otherwise: split track - \e{Left-Click}

\u000


\dt \i{Straight Track} Command (\K{cmdStraight}) - \e{Ctrl+G}

\dd Place 1st and 2nd endpoints - \e{Left+Drag}

\u000


\dt Structure Command (\K{cmdStructure}) - \e{Ctrl+Shift+C}

\dd Command Options: rotate by specified amount (\K{cmdAcclKeys}) - \e{Shift+Right-Click}

\dd Place Structure - \e{Left+Drag}

\dd Rotate - \e{Right+Drag}

\u000


\dt Text Command (\K{cmdText}) - \e{Ctrl+Shift+X}

\dd Command Options: change Font (\K{cmdAcclKeys}) - \e{Shift+Right-Click}

\dd Position text - \e{Left+Drag}

\u000


\dt Train Simulation Command (\K{cmdTrain})

\dd Command Options: uncouple car, flip or remove cars or Trains, set MU Master - \e{Right-Click}

\dd Move a Car or Train - \e{Left+Drag}

\dd Switch a \e{Turnout} or rotate a \e{Turntable} - \e{Shift+Left-Click}

\u000


\dt Turntable Command (\K{cmdTurntable}) - \e{Ctrl+Shift+N}

\dd Position Turntable - \e{Left+Drag}

\u000


\dt Turnout Command (\K{cmdTurnout}) - \e{Ctrl+T}

\dd Choose next Active endpoint when placing Turnouts - \e{Shift+Left-Click}

\dd Command Options: rotate by specified amount (\K{cmdAcclKeys}) - \e{Shift+Right-Click}

\dd Place Turnout - \e{Left+Drag}

\dd Rotate - \e{Right+Drag}

\dd Suppress auto-adjustment positioning when placing Turnouts - \e{Shift+Left+Drag}

\rule