This repository has been archived by the owner on Jan 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TextEngine52GUI.s
3463 lines (3111 loc) · 70.5 KB
/
TextEngine52GUI.s
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
*
* Source machine generated by GadToolsBox V2.0
* which is (c) Copyright 1991-1993 Jaba Development
*
* GUI Designed by : Nicholas Harvey
*
XREF _GadToolsBase
XREF _IntuitionBase
XREF _GfxBase
XREF _SysBase
XREF _UtilityBase
OpenScreenTagList EQU -612
OpenWindowTagList EQU -606
CloseScreen EQU -66
CloseWindow EQU -72
PrintIText EQU -216
LockPubScreen EQU -510
UnlockPubScreen EQU -516
SetMenuStrip EQU -264
ClearMenuStrip EQU -54
GetVisualInfoA EQU -126
FreeVisualInfo EQU -132
CreateContext EQU -114
CreateGadgetA EQU -30
GT_RefreshWindow EQU -84
FreeGadgets EQU -36
CreateMenusA EQU -48
LayoutMenusA EQU -66
FreeMenus EQU -54
OpenDiskFont EQU -30
CloseFont EQU -78
DrawBevelBoxA EQU -120
FreeClass EQU -714
NewObjectA EQU -636
DisposeObject EQU -642
TextLength EQU -54
CopyMem EQU -624
FindTagItem EQU -30
IntuiTextLength EQU -330
Forbid EQU -132
Permit EQU -138
GD_PPOKButton EQU 0
GD_PPCancelButton EQU 1
GD_PPNLQCheck EQU 2
GD_PPProportionalCheck EQU 3
GD_PPDoubleSpaceCheck EQU 4
GD_PPTopMarginStr EQU 5
GD_PPBottomMarginStr EQU 6
GD_PPPageLengthStr EQU 7
GD_PPLeftMarginStr EQU 8
GD_PPRightMarginStr EQU 9
GD_PPPageWidthStr EQU 10
GD_PPPrintToStr EQU 11
GD_PPNumCopiesStr EQU 12
GD_ColoursTextGad EQU 0
GD_ColoursFieldGad EQU 1
GD_ColoursOKGad EQU 2
GD_ColoursCancelGad EQU 3
GD_FuncKeysOKGad EQU 0
GD_FuncKeysCancelGad EQU 1
GD_FuncKeysF1Gad EQU 2
GD_FuncKeysF2Gad EQU 3
GD_FuncKeysF3Gad EQU 4
GD_FuncKeysF4Gad EQU 5
GD_FuncKeysF5Gad EQU 6
GD_FuncKeysF6Gad EQU 7
GD_FuncKeysF7Gad EQU 8
GD_FuncKeysF8Gad EQU 9
GD_FuncKeysF9Gad EQU 10
GD_FuncKeysF10Gad EQU 11
GD_PrintedPercentageCancel EQU 0
GD_PrintedPercentageNum EQU 1
GD_SpellSuggestionsGad EQU 0
GD_SpellReplaceGad EQU 1
GD_SpellUnknownGad EQU 2
GD_SpellCheckIgnoreGad EQU 3
GD_SpellCheckCancelGad EQU 4
GD_SpellCheckLearnGad EQU 5
GD_SpellCheckReplaceGad EQU 6
GD_FindOKGad EQU 0
GD_FindCancelGad EQU 1
GD_ReplaceStringGad EQU 2
GD_FindStringGad EQU 3
PrinterPrefs_CNT EQU 13
Colours_CNT EQU 4
FunctionKeys_CNT EQU 12
PrintDocument_CNT EQU 2
SpellChecker_CNT EQU 7
FindText_CNT EQU 4
XDEF Scr
XDEF VisualInfo
XDEF PubScreenName
XDEF MainEditWindowWnd
XDEF PrinterPrefsWnd
XDEF ColoursWnd
XDEF FunctionKeysWnd
XDEF PrintDocumentWnd
XDEF SpellCheckerWnd
XDEF FindTextWnd
XDEF PrinterPrefsGList
XDEF ColoursGList
XDEF FunctionKeysGList
XDEF PrintDocumentGList
XDEF SpellCheckerGList
XDEF FindTextGList
XDEF MainEditWindowMenus
XDEF PrinterPrefsGadgets
XDEF ColoursGadgets
XDEF FunctionKeysGadgets
XDEF PrintDocumentGadgets
XDEF SpellCheckerGadgets
XDEF FindTextGadgets
XDEF MainEditWindowLeft
XDEF MainEditWindowTop
XDEF MainEditWindowWidth
XDEF MainEditWindowHeight
XDEF PrinterPrefsLeft
XDEF PrinterPrefsTop
XDEF PrinterPrefsWidth
XDEF PrinterPrefsHeight
XDEF ColoursLeft
XDEF ColoursTop
XDEF ColoursWidth
XDEF ColoursHeight
XDEF FunctionKeysLeft
XDEF FunctionKeysTop
XDEF FunctionKeysWidth
XDEF FunctionKeysHeight
XDEF PrintDocumentLeft
XDEF PrintDocumentTop
XDEF PrintDocumentWidth
XDEF PrintDocumentHeight
XDEF SpellCheckerLeft
XDEF SpellCheckerTop
XDEF SpellCheckerWidth
XDEF SpellCheckerHeight
XDEF FindTextLeft
XDEF FindTextTop
XDEF FindTextWidth
XDEF FindTextHeight
XDEF Font
XDEF Attr
XDEF FontX
XDEF FontY
XDEF OffX
XDEF OffY
Scr:
DC.L 0
VisualInfo:
DC.L 0
PubScreenName:
DC.L WBName
WBName:
DC.B 'Workbench',0
CNOP 0,2
MainEditWindowWnd:
DC.L 0
PrinterPrefsWnd:
DC.L 0
ColoursWnd:
DC.L 0
FunctionKeysWnd:
DC.L 0
PrintDocumentWnd:
DC.L 0
SpellCheckerWnd:
DC.L 0
FindTextWnd:
DC.L 0
PrinterPrefsGList:
DC.L 0
ColoursGList:
DC.L 0
FunctionKeysGList:
DC.L 0
PrintDocumentGList:
DC.L 0
SpellCheckerGList:
DC.L 0
FindTextGList:
DC.L 0
MainEditWindowMenus:
DC.L 0
MTags0:
DC.L $80080032,0,$00000000
MTags1:
DC.L $80080043,1
DC.L $00000000
PrinterPrefsGadgets:
DCB.L 13,0
ColoursGadgets:
DCB.L 4,0
FunctionKeysGadgets:
DCB.L 12,0
PrintDocumentGadgets:
DCB.L 2,0
SpellCheckerGadgets:
DCB.L 7,0
FindTextGadgets:
DCB.L 4,0
BufNewGad:
DC.W 0,0,0,0
DC.L 0,0
DC.W 0
DC.L 0,0,0
TD:
DC.L $00000000
NR:
DC.L $80080034,$00000000,$00000000
IR:
DC.L $80080034,$00000000,$80080033,1,$00000000
MainEditWindowLeft:
DC.W 0
MainEditWindowTop:
DC.W 11
MainEditWindowWidth:
DC.W 632
MainEditWindowHeight:
DC.W 232
PrinterPrefsLeft:
DC.W 30
PrinterPrefsTop:
DC.W 20
PrinterPrefsWidth:
DC.W 444
PrinterPrefsHeight:
DC.W 129
ColoursLeft:
DC.W 30
ColoursTop:
DC.W 20
ColoursWidth:
DC.W 392
ColoursHeight:
DC.W 84
FunctionKeysLeft:
DC.W 30
FunctionKeysTop:
DC.W 20
FunctionKeysWidth:
DC.W 313
FunctionKeysHeight:
DC.W 196
PrintDocumentLeft:
DC.W 30
PrintDocumentTop:
DC.W 20
PrintDocumentWidth:
DC.W 165
PrintDocumentHeight:
DC.W 48
SpellCheckerLeft:
DC.W 30
SpellCheckerTop:
DC.W 20
SpellCheckerWidth:
DC.W 329
SpellCheckerHeight:
DC.W 131
FindTextLeft:
DC.W 30
FindTextTop:
DC.W 20
FindTextWidth:
DC.W 381
FindTextHeight:
DC.W 69
Font:
DC.L 0
FontX:
DC.W 0
FontY:
DC.W 0
OffX:
DC.W 0
OffY:
DC.W 0
Attr:
DC.L 0
DC.W 0
DC.B 0,0
TopazName:
DC.B 'topaz.font',0
CNOP 0,2
MainEditWindowGTypes:
PrinterPrefsGTypes:
DC.W 1
DC.W 1
DC.W 2
DC.W 2
DC.W 2
DC.W 3
DC.W 3
DC.W 3
DC.W 3
DC.W 3
DC.W 3
DC.W 12
DC.W 3
ColoursGTypes:
DC.W 8
DC.W 8
DC.W 1
DC.W 1
FunctionKeysGTypes:
DC.W 1
DC.W 1
DC.W 12
DC.W 12
DC.W 12
DC.W 12
DC.W 12
DC.W 12
DC.W 12
DC.W 12
DC.W 12
DC.W 12
PrintDocumentGTypes:
DC.W 1
DC.W 6
SpellCheckerGTypes:
DC.W 4
DC.W 12
DC.W 13
DC.W 1
DC.W 1
DC.W 1
DC.W 1
FindTextGTypes:
DC.W 1
DC.W 1
DC.W 12
DC.W 12
MainEditWindowNGads:
PrinterPrefsNGads:
DC.W 8,112,65,14
DC.L PPOKButtonText,0
DC.W GD_PPOKButton
DC.L $0010,0,0
DC.W 371,112,65,14
DC.L PPCancelButtonText,0
DC.W GD_PPCancelButton
DC.L $0010,0,0
DC.W 398,45,26,11
DC.L PPNLQCheckText,0
DC.W GD_PPNLQCheck
DC.L $0001,0,0
DC.W 398,58,26,11
DC.L PPProportionalCheckText,0
DC.W GD_PPProportionalCheck
DC.L $0001,0,0
DC.W 398,71,26,11
DC.L PPDoubleSpaceCheckText,0
DC.W GD_PPDoubleSpaceCheck
DC.L $0001,0,0
DC.W 145,10,45,14
DC.L PPTopMarginStrText,0
DC.W GD_PPTopMarginStr
DC.L $0001,0,0
DC.W 145,26,45,14
DC.L PPBottomMarginStrText,0
DC.W GD_PPBottomMarginStr
DC.L $0001,0,0
DC.W 145,42,45,14
DC.L PPPageLengthStrText,0
DC.W GD_PPPageLengthStr
DC.L $0001,0,0
DC.W 145,58,45,14
DC.L PPLeftMarginStrText,0
DC.W GD_PPLeftMarginStr
DC.L $0001,0,0
DC.W 145,74,45,14
DC.L PPRightMarginStrText,0
DC.W GD_PPRightMarginStr
DC.L $0001,0,0
DC.W 145,90,45,14
DC.L PPPageWidthStrText,0
DC.W GD_PPPageWidthStr
DC.L $0001,0,0
DC.W 230,20,189,14
DC.L PPPrintToStrText,0
DC.W GD_PPPrintToStr
DC.L $0004,0,0
DC.W 381,92,45,14
DC.L PPNumCopiesStrText,0
DC.W GD_PPNumCopiesStr
DC.L $0001,0,0
ColoursNGads:
DC.W 21,23,161,33
DC.L ColoursTextGadText,0
DC.W GD_ColoursTextGad
DC.L $0004,0,0
DC.W 211,23,161,33
DC.L ColoursFieldGadText,0
DC.W GD_ColoursFieldGad
DC.L $0004,0,0
DC.W 8,67,65,14
DC.L ColoursOKGadText,0
DC.W GD_ColoursOKGad
DC.L $0010,0,0
DC.W 319,67,65,14
DC.L ColoursCancelGadText,0
DC.W GD_ColoursCancelGad
DC.L $0010,0,0
FunctionKeysNGads:
DC.W 8,179,65,14
DC.L FuncKeysOKGadText,0
DC.W GD_FuncKeysOKGad
DC.L $0010,0,0
DC.W 240,179,65,14
DC.L FuncKeysCancelGadText,0
DC.W GD_FuncKeysCancelGad
DC.L $0010,0,0
DC.W 62,11,229,14
DC.L FuncKeysF1GadText,0
DC.W GD_FuncKeysF1Gad
DC.L $0001,0,0
DC.W 62,27,229,14
DC.L FuncKeysF2GadText,0
DC.W GD_FuncKeysF2Gad
DC.L $0001,0,0
DC.W 62,43,229,14
DC.L FuncKeysF3GadText,0
DC.W GD_FuncKeysF3Gad
DC.L $0001,0,0
DC.W 62,59,229,14
DC.L FuncKeysF4GadText,0
DC.W GD_FuncKeysF4Gad
DC.L $0001,0,0
DC.W 62,75,229,14
DC.L FuncKeysF5GadText,0
DC.W GD_FuncKeysF5Gad
DC.L $0001,0,0
DC.W 62,91,229,14
DC.L FuncKeysF6GadText,0
DC.W GD_FuncKeysF6Gad
DC.L $0001,0,0
DC.W 62,107,229,14
DC.L FuncKeysF7GadText,0
DC.W GD_FuncKeysF7Gad
DC.L $0001,0,0
DC.W 62,123,229,14
DC.L FuncKeysF8GadText,0
DC.W GD_FuncKeysF8Gad
DC.L $0001,0,0
DC.W 62,139,229,14
DC.L FuncKeysF9GadText,0
DC.W GD_FuncKeysF9Gad
DC.L $0001,0,0
DC.W 62,155,229,14
DC.L FuncKeysF10GadText,0
DC.W GD_FuncKeysF10Gad
DC.L $0001,0,0
PrintDocumentNGads:
DC.W 48,31,65,14
DC.L PrintedPercentageCancelText,0
DC.W GD_PrintedPercentageCancel
DC.L $0010,0,0
DC.W 117,10,32,13
DC.L PrintedPercentageNumText,0
DC.W GD_PrintedPercentageNum
DC.L $0001,0,0
SpellCheckerNGads:
DC.W 128,38,184,72
DC.L SpellSuggestionsGadText,0
DC.W GD_SpellSuggestionsGad
DC.L $0001,0,0
DC.W 128,23,184,14
DC.L SpellReplaceGadText,0
DC.W GD_SpellReplaceGad
DC.L $0001,0,0
DC.W 128,10,184,12
DC.L SpellUnknownGadText,0
DC.W GD_SpellUnknownGad
DC.L $0001,0,0
DC.W 8,114,65,14
DC.L SpellCheckIgnoreGadText,0
DC.W GD_SpellCheckIgnoreGad
DC.L $0010,0,0
DC.W 256,114,65,14
DC.L SpellCheckCancelGadText,0
DC.W GD_SpellCheckCancelGad
DC.L $0010,0,0
DC.W 173,114,65,14
DC.L SpellCheckLearnGadText,0
DC.W GD_SpellCheckLearnGad
DC.L $0010,0,0
DC.W 90,114,65,14
DC.L SpellCheckReplaceGadText,0
DC.W GD_SpellCheckReplaceGad
DC.L $0010,0,0
FindTextNGads:
DC.W 8,52,65,14
DC.L FindOKGadText,0
DC.W GD_FindOKGad
DC.L $0010,0,0
DC.W 309,52,65,14
DC.L FindCancelGadText,0
DC.W GD_FindCancelGad
DC.L $0010,0,0
DC.W 133,28,229,14
DC.L ReplaceStringGadText,0
DC.W GD_ReplaceStringGad
DC.L $0001,0,0
DC.W 133,12,229,14
DC.L FindStringGadText,0
DC.W GD_FindStringGad
DC.L $0001,0,0
MainEditWindowGTags:
PrinterPrefsGTags:
DC.L $00000000
DC.L $00000000
DC.L $80080004,1
DC.L $00000000
DC.L $80080004,1
DC.L $00000000
DC.L $80080004,1
DC.L $00000000
DC.L $8008002F,0
DC.L $80080030,3
DC.L $00000000
DC.L $8008002F,0
DC.L $80080030,3
DC.L $00000000
DC.L $8008002F,0
DC.L $80080030,3
DC.L $00000000
DC.L $8008002F,0
DC.L $80080030,3
DC.L $00000000
DC.L $8008002F,0
DC.L $80080030,3
DC.L $00000000
DC.L $8008002F,0
DC.L $80080030,3
DC.L $00000000
DC.L $8008002D,PPPrintToStrString
DC.L $8008002E,256
DC.L $00000000
DC.L $8008002F,0
DC.L $80080030,3
DC.L $00000000
PPPrintToStrString:
DC.B 'PRT:',0
CNOP 0,2
ColoursGTags:
DC.L $80080010,1
DC.L $80080013,10
DC.L $80080011,0
DC.L $80080012,0
DC.L $00000000
DC.L $80080010,1
DC.L $80080013,10
DC.L $80080011,1
DC.L $80080012,0
DC.L $00000000
DC.L $00000000
DC.L $00000000
FunctionKeysGTags:
DC.L $00000000
DC.L $00000000
DC.L $8008002D,FuncKeysF1GadString
DC.L $8008002E,256
DC.L $00000000
DC.L $8008002D,FuncKeysF2GadString
DC.L $8008002E,256
DC.L $00000000
DC.L $8008002D,FuncKeysF3GadString
DC.L $8008002E,256
DC.L $00000000
DC.L $8008002D,FuncKeysF4GadString
DC.L $8008002E,256
DC.L $00000000
DC.L $8008002D,FuncKeysF5GadString
DC.L $8008002E,256
DC.L $00000000
DC.L $8008002D,FuncKeysF6GadString
DC.L $8008002E,256
DC.L $00000000
DC.L $8008002D,FuncKeysF7GadString
DC.L $8008002E,256
DC.L $00000000
DC.L $8008002D,FuncKeysF8GadString
DC.L $8008002E,256
DC.L $00000000
DC.L $8008002D,FuncKeysF9GadString
DC.L $8008002E,256
DC.L $00000000
DC.L $8008002D,FuncKeysF10GadString
DC.L $8008002E,256
DC.L $00000000
FuncKeysF1GadString:
DC.B '1',0
CNOP 0,2
FuncKeysF2GadString:
DC.B '2',0
CNOP 0,2
FuncKeysF3GadString:
DC.B '3',0
CNOP 0,2
FuncKeysF4GadString:
DC.B '4',0
CNOP 0,2
FuncKeysF5GadString:
DC.B '5',0
CNOP 0,2
FuncKeysF6GadString:
DC.B '6',0
CNOP 0,2
FuncKeysF7GadString:
DC.B '7',0
CNOP 0,2
FuncKeysF8GadString:
DC.B '8',0
CNOP 0,2
FuncKeysF9GadString:
DC.B '9',0
CNOP 0,2
FuncKeysF10GadString:
DC.B '0',0
CNOP 0,2
PrintDocumentGTags:
DC.L $00000000
DC.L $8008000D,0
DC.L $00000000
SpellCheckerGTags:
DC.L $80080006,0
DC.L $80080035,0
DC.L $00000000
DC.L $80030024,0
DC.L $8008002D,SpellReplaceGadString
DC.L $8008002E,256
DC.L $00000000
DC.L $8008000B,SpellUnknownGadString
DC.L $80080039,1
DC.L $00000000
DC.L $00000000
DC.L $00000000
DC.L $00000000
DC.L $00000000
SpellReplaceGadString:
DC.B 'R',0
CNOP 0,2
SpellUnknownGadString:
DC.B 'U',0
CNOP 0,2
FindTextGTags:
DC.L $00000000
DC.L $00000000
DC.L $8008002D,ReplaceStringGadString
DC.L $8008002E,256
DC.L $00000000
DC.L $8008002D,FindStringGadString
DC.L $8008002E,256
DC.L $00000000
ReplaceStringGadString:
DC.B '0',0
CNOP 0,2
FindStringGadString:
DC.B '0',0
CNOP 0,2
PPOKButtonText:
DC.B 'OK',0
PPCancelButtonText:
DC.B 'Cancel',0
PPNLQCheckText:
DC.B 'Draft print:',0
PPProportionalCheckText:
DC.B 'Proportional spacing:',0
PPDoubleSpaceCheckText:
DC.B 'Double line spacing:',0
PPTopMarginStrText:
DC.B 'Top margin:',0
PPBottomMarginStrText:
DC.B 'Bottom margin:',0
PPPageLengthStrText:
DC.B 'Page length:',0
PPLeftMarginStrText:
DC.B 'Left margin:',0
PPRightMarginStrText:
DC.B 'Right margin:',0
PPPageWidthStrText:
DC.B 'Page width:',0
PPPrintToStrText:
DC.B 'Print destinaton:',0
PPNumCopiesStrText:
DC.B 'Number of copies:',0
CNOP 0,2
ColoursTextGadText:
DC.B 'Text colour:',0
ColoursFieldGadText:
DC.B 'Field colour:',0
ColoursOKGadText:
DC.B 'OK',0
ColoursCancelGadText:
DC.B 'Cancel',0
CNOP 0,2
FuncKeysOKGadText:
DC.B 'OK',0
FuncKeysCancelGadText:
DC.B 'Cancel',0
FuncKeysF1GadText:
DC.B 'F1:',0
FuncKeysF2GadText:
DC.B 'F2:',0
FuncKeysF3GadText:
DC.B 'F3:',0
FuncKeysF4GadText:
DC.B 'F4:',0
FuncKeysF5GadText:
DC.B 'F5:',0
FuncKeysF6GadText:
DC.B 'F6:',0
FuncKeysF7GadText:
DC.B 'F7:',0
FuncKeysF8GadText:
DC.B 'F8:',0
FuncKeysF9GadText:
DC.B 'F9:',0
FuncKeysF10GadText:
DC.B 'F10:',0
CNOP 0,2
PrintedPercentageCancelText:
DC.B 'Cancel',0
PrintedPercentageNumText:
DC.B '% Printed:',0
CNOP 0,2
SpellSuggestionsGadText:
DC.B 'Suggestions:',0
SpellReplaceGadText:
DC.B 'Replace with:',0
SpellUnknownGadText:
DC.B 'Unknown:',0
SpellCheckIgnoreGadText:
DC.B 'Ignore',0
SpellCheckCancelGadText:
DC.B 'Cancel',0
SpellCheckLearnGadText:
DC.B 'Learn',0
SpellCheckReplaceGadText:
DC.B 'Replace',0
CNOP 0,2
FindOKGadText:
DC.B 'OK',0
FindCancelGadText:
DC.B 'Cancel',0
ReplaceStringGadText:
DC.B 'Replace with:',0
FindStringGadText:
DC.B 'Find:',0
CNOP 0,2
XDEF MainEditWindowWindowTags
MainEditWindowWindowTags:
DC.L $80000093,1
MainEditWindowL:
DC.L $80000064,0
MainEditWindowT:
DC.L $80000065,0
MainEditWindowW:
DC.L $80000066,0
MainEditWindowH:
DC.L $80000067,0
DC.L $8000006A,$0040037E
DC.L $8000006B,$0000123F
DC.L $8000006E,MainEditWindowWTitle
DC.L $8000006F,MainEditWindowSTitle
DC.L $80000072,92
DC.L $80000073,65
DC.L $80000074,640
DC.L $80000075,256
DC.L $00000000
MainEditWindowWTitle:
DC.B 'Untitled',0
CNOP 0,2
MainEditWindowSTitle:
DC.B 'TextEngine V5.2, Copyright © Nicholas Harvey 1991-2010.',0
CNOP 0,2
XDEF PrinterPrefsWindowTags
PrinterPrefsWindowTags:
PrinterPrefsL:
DC.L $80000064,0
PrinterPrefsT:
DC.L $80000065,0
PrinterPrefsW:
DC.L $80000066,0
PrinterPrefsH:
DC.L $80000067,0
DC.L $8000006A,$00000264
DC.L $8000006B,$0000100E
PrinterPrefsWG:
DC.L $8000006C,0
DC.L $8000006E,PrinterPrefsWTitle
DC.L $8000006F,PrinterPrefsSTitle
DC.L $80000090,1
DC.L $00000000
PrinterPrefsWTitle:
DC.B 'Printer preferences',0
CNOP 0,2
PrinterPrefsSTitle:
DC.B 'TextEngine V5.2, Copyright © Nicholas Harvey 1991-2010.',0
CNOP 0,2
XDEF ColoursWindowTags
ColoursWindowTags:
ColoursL:
DC.L $80000064,0
ColoursT:
DC.L $80000065,0
ColoursW:
DC.L $80000066,0
ColoursH:
DC.L $80000067,0
DC.L $8000006A,$00000244
DC.L $8000006B,$0000100E
ColoursWG:
DC.L $8000006C,0
DC.L $8000006E,ColoursWTitle
DC.L $8000006F,ColoursSTitle
DC.L $00000000
ColoursWTitle:
DC.B 'Colours',0
CNOP 0,2
ColoursSTitle:
DC.B 'TextEngine V5.2, Copyright © Nicholas Harvey 1991-2010.',0
CNOP 0,2
XDEF FunctionKeysWindowTags
FunctionKeysWindowTags:
FunctionKeysL:
DC.L $80000064,0
FunctionKeysT:
DC.L $80000065,0
FunctionKeysW:
DC.L $80000066,0
FunctionKeysH:
DC.L $80000067,0
DC.L $8000006A,$00000244
DC.L $8000006B,$0000100E
FunctionKeysWG:
DC.L $8000006C,0
DC.L $8000006E,FunctionKeysWTitle
DC.L $8000006F,FunctionKeysSTitle
DC.L $00000000
FunctionKeysWTitle:
DC.B 'Function keys',0
CNOP 0,2
FunctionKeysSTitle:
DC.B 'TextEngine V5.2, Copyright © Nicholas Harvey 1991-2010.',0
CNOP 0,2
XDEF PrintDocumentWindowTags
PrintDocumentWindowTags:
PrintDocumentL:
DC.L $80000064,0
PrintDocumentT:
DC.L $80000065,0
PrintDocumentW:
DC.L $80000066,0
PrintDocumentH:
DC.L $80000067,0
DC.L $8000006A,$00000244
DC.L $8000006B,$0000100E
PrintDocumentWG:
DC.L $8000006C,0
DC.L $8000006E,PrintDocumentWTitle
DC.L $8000006F,PrintDocumentSTitle
DC.L $00000000
PrintDocumentWTitle:
DC.B 'Printing...',0
CNOP 0,2
PrintDocumentSTitle:
DC.B 'TextEngine V5.2, Copyright © Nicholas Harvey 1991-2010.',0
CNOP 0,2
XDEF SpellCheckerWindowTags
SpellCheckerWindowTags:
SpellCheckerL:
DC.L $80000064,0
SpellCheckerT:
DC.L $80000065,0