This file is indexed.

/usr/share/tkgate-1.8.7/scripts/action.tcl is in tkgate-data 1.8.7-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
#   Copyright (C) 1987-2007 by Jeffery P. Hansen
#
#   This program is free software; you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation; either version 2 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program; if not, write to the Free Software
#   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# Last edit by hansen on Sat Jan 27 20:23:57 2007
#

set undo_type undo

#############################################################################
#
# Use this for a basic action.  "name" is the name of the action that will
# appear in the undo/redo listboxes, and "body" is the undoable code to 
# execute.
#
proc action {name body} {
  gat_obBeginFrame $name
  namespace eval :: $body
  gat_obEndFrame
}

#############################################################################
#
# Use this for a action which will be appended to the most recent action.
#
proc continueAction {name body} {
  gat_obAppendFrame $name
  namespace eval :: $body
  gat_obEndFrame
}

#############################################################################
#
# Use this for "transparent" actions.  Transparent actions are those
# for which a frame record is kept and placed in the stack, but which
# are not directly visible to the user.
#
proc transAction {name body} {
  gat_obBeginFrame $name 1
  namespace eval :: $body
  gat_obEndFrame
}

#############################################################################
#
# Use this action for operations for which undo processing will
# be suspended.
#
proc suspendAction {body} {
  set m [gat_obMode]
  gat_obMode 0
  namespace eval :: $body
  gat_obMode $m
}

#############################################################################
#
# Use this action for operations for which undo processing will
# be suspended, and all undo data cleared.
#
proc clearAction {body} {
  set m [gat_obMode]
  gat_obMode 0
  gat_obFlush
  namespace eval :: $body
  gat_obMode $m
}

#############################################################################
#
# Post box for undo/redo selection
#
proc tkg_postURBox {w} {
  cancel_help

  toplevel .undo -cursor arrow

  scan [winfo rootx $w] "%d" X
  scan [winfo pointery .] "%d" Y
  set Y [expr $Y - 10]
  wm geometry .undo +$X+$Y
  wm transient .undo .
  wm overrideredirect .undo 1

  listbox .undo.lb -bd 2 -relief sunken -yscrollcommand ".undo.vb set" -bg white -width 10 -height 5 -selectmode multiple
  scrollbar .undo.vb -command ".undo.lb yview"
  pack .undo.lb .undo.vb -side left -fill both
}

#############################################################################
#
# Called as a result of a mouse button release while the undo/redo listbox
# is active.  Causes the listbox to be deleted and the selected undo/redo
# actions to be executed.
#
proc tkg_finishURBox {} {
  global undo_type

  set n -1

  if { [.undo.lb size] > 0 } {
    set S [.undo.lb curselection]
    foreach j $S {
      if { $j > $n } {set n $j }
    }
  }

  destroy .undo
  if { $n >= 0 } {
    gat_$undo_type [expr $n + 1]
  }
}

#############################################################################
#
# Handles pointer motion within the undo/redo listbox.
#
proc tkg_motionURBox {y} {
  set n [.undo.lb size]
  set i [.undo.lb nearest $y]
  .undo.lb selection set 0 $i
  if { [expr $i + 1] < $n } {
    .undo.lb selection clear [expr $i + 1] end
  }
}

#############################################################################
#
# Waits for the undo/redo listbox to be deleted.
#
proc tkg_waitURBox {} {
  bind .undo <ButtonRelease-1> tkg_finishURBox
  bind .undo.lb <B1-Motion> { tkg_motionURBox %y }
  bind .undo.lb <Leave> {.undo.lb selection clear 0 end }

  tkwait visibility .undo
  .undo.lb selection clear 0 end
  .undo.lb selection set 0
  grab set .undo
  tkwait window .undo
  grab release .undo
}

#############################################################################
#
# Called as a result of hitting the "undo" button.  Causes the list of undo
# actions to be displayed in the listbox.
#
proc tkg_undoSelect {} {
  global undo_type

  set i 0
  set undo_type undo
  tkg_postURBox .tbar.du.back
  foreach u [gat_getUndoList] {
    .undo.lb insert end $u
  }
  tkg_waitURBox
}

#############################################################################
#
# Called as a result of hitting the "redo" button.  Causes the list of redo
# actions to be displayed in the listbox.
#
proc tkg_redoSelect {} {
  global undo_type

  set i 0
  set undo_type redo
  tkg_postURBox .tbar.du.forward
  foreach u [gat_getRedoList] {
    .undo.lb insert end $u
  }
  tkg_waitURBox
}

#############################################################################
#############################################################################
##
## Tkgate actions are defined below here.  All calls from the interface
## go through an action function.
##
#############################################################################
#############################################################################


#############################################################################
#
# Show debugging info about wires.
#
proc act_dumpWires {} {
  gat_dumpWires
}

#############################################################################
#
# Run the internal datat structure verifier.
#
proc act_verify {} {
  gat_verify
}

#############################################################################
#
# Undo last action
#
proc act_undo {} {
  gat_undo
}

#############################################################################
#
# Redo last undone action
#
proc act_redo {} {
  gat_redo
}

#############################################################################
#
# Add an input to the selected gate.
#
proc act_addIn {} {
  action AddIn { gat_addIn }
}

#############################################################################
#
# Add an output to the selected gate.
#
proc act_addOut {} {
  action AddOut { gat_addOut }
}

#############################################################################
#
# Add a tristate port to the selected gate.
#
proc act_addInOut {} {
  action AddInOut { gat_addInOut }
}

#############################################################################
#
# Change the type of a port
#
proc act_editPort {} {
  action EditPort { gat_changePinDir }
}


#############################################################################
#
# Set debugging mode
#
proc act_debugMode {} {
  action Mode { tkg_setMode 12 }
}

#############################################################################
#
# Put tkgate in standard edit mode
#
proc act_editMode {} {
  action Mode { tkg_setMode 1 }
}

#############################################################################
#
# Put tkgate in delete gate mode
#
proc act_deleteMode {} {
  action Mode {tkg_setMode 3 }
}

#############################################################################
#
# Put tkgate in cut wire mode
#
proc act_cutMode {} { 
  action Mode {tkg_setMode 0 }
}

#############################################################################
#
# Put tkgate in invert in/out mode
#
proc act_invertMode {} { 
  action Mode {tkg_setMode 2 }
}

#############################################################################
#
# Put tkgate in set wire size mode
#
proc act_sizeMode {} { 
  action Mode {tkg_setMode 9 }
}

#############################################################################
#
# Set gate rotation to 0 degrees
#
proc act_rot0 {} { 
  set rot 0
  action SetRotation { gat_setrot $rot }
}

#############################################################################
#
# Set gate rotation to 90 degrees
#
proc act_rot90 {} { 
  set rot 1
  action SetRotation { gat_setrot $rot }
}

#############################################################################
#
# Set gate rotation to 180 degrees
#
proc act_rot180 {} { 
  set rot 2
  action SetRotation { gat_setrot $rot }
}

#############################################################################
#
# Set gate rotation to 270 degrees
#
proc act_rot270 {} { 
  set rot 3
  action SetRotation { gat_setrot $rot }
}

#############################################################################
#
# Open the selected module.
#
proc act_openMod {} {
  action Open { if { "%W" != ".scope"} { gat_openBox } else { .scope.main.frame.canvas zoom 1 } }
}

######################################################################
#
# Counter clockwise rotation.
#
# The type of rotation depends on the current edit mode.  If en regular
# edit mode, selected gates are rotated.  If the symbol editor is active
# and we are in port mode, then the selected port is edited.  If the symbol
# editor is active and we are not in port mode, then the bits are rotated. 
#
proc act_rotate {} {
  action Rotate { 
    set mm [gat_getMajorMode]

    switch $mm {
      edit {
	gat_rotate
      }
    }
  }
}

######################################################################
#
# Back rotate gates
#
proc act_backRotate {} {
  action Rotate { 
    set mm [gat_getMajorMode]

    switch $mm {
      edit {
	gat_rotate -1
      }
    }
  }
}

######################################################################
#
# If in simulator mode, step the simulator one "clock cycle".  If in
# edit mode, rotate the selected gates.
#
proc act_simCycleOrRotate {} {
  set mm [gat_getMajorMode]

  if { $mm == "simulate" } {
    tkg_simCycle
  } else {
    act_rotate
  }
}

#############################################################################
#
# Close the current module.
#
proc act_closeMod {} {
  action Close { if { "%W" != ".scope"} { gat_closeBox } else { .scope.main.frame.canvas zoom -1 } }
}

######################################################################
#
# Replicate a gate.
#
proc act_replicate {} {
  action Replicate { gat_replicate } 
}

######################################################################
#
# Delete the selected object.
#
proc act_delete {} {
  action Delete { gat_deleteSelected }
}

######################################################################
#
# Edit the properties of the selected object.
#
proc act_editProps {} {
  action EditProps { gat_editProps }
}

######################################################################
#
# Set/unset a probe on the selected wire.
#
proc act_toggleProbe {} {
  gat_toggleProbe
}

######################################################################
#
# Move to the previous error in the error box.
#
proc act_errBoxUp {} {
  action ErrUp { tkg_errBoxUp } 
}

######################################################################
#
# Move to the next error in the error box.
#
proc act_errBoxDown {} { 
  action ErrDown { tkg_errBoxDown }
}

######################################################################
#
# Align gates horizontally
#
proc act_hAlign {} {
  action HAlign { gat_align 1 }
}

######################################################################
#
# Align gates vertically
#
proc act_vAlign {} {
  action VAlign { gat_align 0 }
}

######################################################################
#
# Clear the current circuit and start editing a new file.
#
proc act_newFile {} {
  clearAction tkg_new
}

######################################################################
#
# Load the specified file
#
proc act_loadFile {} {
  clearAction tkg_load
}

######################################################################
#
# Load modules from a library
#
proc act_loadLibrary {} {
  clearAction tkg_loadLibrary
}

######################################################################
#
# Save the current circuit to the current file
#
proc act_saveFile {} {
  suspendAction tkg_saveCurrent
}

######################################################################
#
# Save the current circuit to a new file.
#
proc act_saveAsFile {} {
  clearAction tkg_save
}

######################################################################
#
# Print the current circuit
#
proc act_print {} {
  suspendAction tkg_printDlg
}

######################################################################
#
# Exit tkgate
#
proc act_exit {} {
  tkg_exit
}

######################################################################
#
# Edit tkgate options
#
proc act_editOptions {} {
  suspendAction tkg_editOptions
}

######################################################################
#
# Copy selected region to cut buffer
#
proc act_copyToBuf {} { 
  action Copy { gat_copyToBuf }
}

######################################################################
#
# Select all gates in the current module
#
proc act_selectAll {} { 
  action SelectAll { gat_selectAll }
}

######################################################################
#
# Edit circuit properties
#
proc act_editCProps {} {
  action EditCProps { tkg_editCircProp }
}

######################################################################
#
# Set an anchor on the selected gate
#
proc act_anchor {} { 
  action Anchor { gat_anchor 1 }
}

######################################################################
#
# Remove an anchor from the current gate.
#
proc act_unAnchor {} {
  action UnAnchor { gat_anchor 0 }
}

######################################################################
#
# Begin critical path analysis mode
#
proc act_cpathAnal {} {
  tkg_cpathAnal
}

######################################################################
#
# Cut the selected objects and place them in the cut buffer
#
proc act_cutToBuf {} {
  action Cut gat_cutToBuf
}

######################################################################
#
# Yank a copy of the cut buffer to the current module
#
proc act_yankFromBuf {} {
  action Yank gat_yankFromBuf
}

######################################################################
#
# Find an object
#
proc act_findObject {} {
  transAction Find { tkg_findObject }
}

######################################################################
#
# Start the simulator
#
proc act_startSimulator {} {
  gat_setMajorMode simulate
}

######################################################################
#
# End the simulator
#
proc act_endSimulator {} {
  gat_setMajorMode edit
}

######################################################################
#
# Put simulator in "run" mode
#
proc act_simRun {} {
  tkg_simRun
}

######################################################################
#
# Put simulator in "stop" mode.
#
proc act_simStop {} {
  tkg_simStop
}

######################################################################
#
# Edit simulator breakpoints
#
proc act_editBreakpoints {} {
  tkg_editBreakpoints
}

######################################################################
#
# Execute a simulation script
#
proc act_doSimScript {} {
  tkg_doSimScript
}

######################################################################
#
# Load a memory file
#
proc act_simLoadMem {} {
  tkg_simLoadMem
}

######################################################################
#
# Dump a memory file.
#
proc act_simDumpMem {} {
  tkg_simDumpMem
}

######################################################################
#
# Print a scope trace
#
proc act_scopePrint {} {
  tkg_scopePrintDlg
}

######################################################################
#
# Step the simulator one epoch
#
proc act_simStep {} {
  tkg_simStep
}

######################################################################
#
# Step the simulator one "clock cycle".
#
proc act_simCycle {} {
  tkg_simCycle
}

######################################################################
#
# Refresh the screen.
#
proc act_refreshScreen {} {
  gat_refreshScreen
}

######################################################################
#
# Create a new module
#
proc act_blockNew {} {
  action NewMod tkg_blockNew
}

######################################################################
#
# Delete a module
#
proc act_blockDelete {} {
  action DeleteMod tkg_blockDelete
}

######################################################################
# 
# Copy a module
#
proc act_blockCopy {} {
  action CopyMod tkg_blockCopy
}

######################################################################
#
# Rename a module
#
proc act_blockRename {} {
  action RenameMod tkg_blockRename
}

######################################################################
#
# Set the interface of the selected module
#
proc act_setBlockDesc {} {
  action SetInterf { gat_setBlockDesc }
}

######################################################################
#
# Edit the module interfaces
#
proc act_editBlockDesc {} {
  action EditInterf gat_editBlockDesc
}

######################################################################
#
# "Claim" a block (make it a non-library block)
#
proc act_blockClaim {} {
  action Claim tkg_blockClaim
}

######################################################################
#
# Zoom in
#
proc act_zoomIn {} {
  action ZoomIn { gat_zoom 1 }
}

######################################################################
#
# Zoom out
#
proc act_zoomOut {} {
  action ZoomOut { gat_zoom -1 }
}

######################################################################
#
# Nudge the selected objects left
#
proc act_nudgeLeft {} {
  action NudgeL { gat_moveGate -1 0 }
}

######################################################################
#
# Nudge the selected objects right
#
proc act_nudgeRight {} {
  action NudgeR { gat_moveGate 1 0 }
}

######################################################################
#
# Nudge the selected objects up
#
proc act_nudgeUp {} {
  action NudgeU { gat_moveGate 0 -1 }
}

######################################################################
#
# Nudge the selected objects down
#
proc act_nudgeDown {} {
  action NudgeD { gat_moveGate 0 1 }
}

######################################################################
#
# Show the about message
#
proc act_showAbout {} {
  showAbout
}

######################################################################
#
# Show the license message
#
proc act_showLicense {} {
  showLicense
}

######################################################################
#
# Show the documentation message
#
proc act_showDocumentation {} {
  showDocumentation
}

######################################################################
#
# Load example circuit 1
#
proc act_loadExample1 {} { global tkgate_exampledir; gat_load $tkgate_exampledir/ex1/combinational.v }

######################################################################
#
# Load example circuit 2
#
proc act_loadExample2 {} { global tkgate_exampledir; gat_load $tkgate_exampledir/ex2/flipflop.v }

######################################################################
#
# Load example circuit 3
#
proc act_loadExample3 {} { global tkgate_exampledir; gat_load $tkgate_exampledir/ex3/counter.v }

######################################################################
#
# Load example circuit 4
#
proc act_loadExample4 {} { global tkgate_exampledir; gat_load $tkgate_exampledir/ex4/trff.v }

######################################################################
#
# Load example circuit 5
#
proc act_loadExample5 {} { global tkgate_exampledir; gat_load $tkgate_exampledir/ex5/menagerie.v }

######################################################################
#
# Load tutorial circuit 1
#
proc act_loadTutorial1 {} { global tkgate_tutorialdir; gat_load $tkgate_tutorialdir/welcome_tut.v }

######################################################################
#
# Load tutorial circuit 2
#
proc act_loadTutorial2 {} { global tkgate_tutorialdir; gat_load $tkgate_tutorialdir/create_tut.v }

######################################################################
#
# Load tutorial circuit 3
#
proc act_loadTutorial3 {} { global tkgate_tutorialdir; gat_load $tkgate_tutorialdir/edit1_tut.v }

######################################################################
#
# Load tutorial circuit 4
#
proc act_loadTutorial4 {} { global tkgate_tutorialdir; gat_load $tkgate_tutorialdir/edit2_tut.v }

######################################################################
#
# Load tutorial circuit 5
#
proc act_loadTutorial5 {} { global tkgate_tutorialdir; gat_load $tkgate_tutorialdir/module_tut.v }

######################################################################
#
# Load tutorial circuit 6
#
proc act_loadTutorial6 {} { global tkgate_tutorialdir; gat_load $tkgate_tutorialdir/sim_tut.v }

######################################################################
#
# Edit wire properties through popup menu
#
proc act_popupWireProps {} { continueAction WireProp gat_popupWireProps }

######################################################################
#
# Add a stub to a wire
#
proc act_popupWireAddStub {} { action AddStub gat_popupWireAddStub }

######################################################################
#
# Change the anchor status of an object
#
proc act_popupAnchor {} { action Anchor { global pop_anchor; gat_anchor $pop_anchor } }

######################################################################
#
# Change the port type of a module port
#
proc act_popupBlockChgPort {} { action ChgPort { gat_popupBlockIo change } }

######################################################################
#
# Add an input port to a module
#
proc act_popupBlockAddIn {} { action AddInPort { gat_popupBlockIo in } }

######################################################################
#
# Add an output port to a module
#
proc act_popupBlockAddOut {} { action AddOutPort { gat_popupBlockIo out } }

######################################################################
#
# Add an in/out port to a module
#
proc act_popupBlockAddInOut {} { action AddTriPort { gat_popupBlockIo inout } }