apiTracer.bil 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. // $XConsortium: apiTracer.bil /main/2 1996/11/11 11:56:43 drk $
  2. :bil-version 1 0
  3. :module apiTracer
  4. (
  5. :element tracer
  6. (
  7. :type :dialog
  8. :x 673
  9. :y 233
  10. :width 887
  11. :height 319
  12. :bg-color "white"
  13. :label "tt_trace_control"
  14. :resizable :true
  15. :visible :false
  16. :help-button helpButton
  17. :children (
  18. tracePane
  19. dialog_button_panel
  20. )
  21. )
  22. :element tracePane
  23. (
  24. :type :term-pane
  25. :x 0
  26. :y 0
  27. :border-frame :shadow-in
  28. :num-rows 24
  29. :num-columns 123
  30. :vscrollbar :always
  31. :active :true
  32. :visible :true
  33. :north-attachment (:point 0 0)
  34. :south-attachment (:obj tracer 0)
  35. :east-attachment (:obj tracer 0)
  36. :west-attachment (:point 0 0)
  37. :help-text "tt_trace_control(3)\ntttracefile(4)\n"
  38. )
  39. :element dialog_button_panel
  40. (
  41. :type :container
  42. :container-type :button-panel
  43. :width 887
  44. :height 48
  45. :visible :true
  46. :border-frame :none
  47. :children (
  48. closeButton
  49. cancelButton
  50. helpButton
  51. )
  52. )
  53. :element closeButton
  54. (
  55. :type :button
  56. :button-type :push-button
  57. :label-type :string
  58. :label-alignment :center
  59. :label "Close"
  60. :active :true
  61. :visible :true
  62. :north-attachment (:point 0 5)
  63. :east-attachment (:grid-line 30 0)
  64. :west-attachment (:grid-line 10 0)
  65. )
  66. :element cancelButton
  67. (
  68. :type :button
  69. :button-type :push-button
  70. :label-type :string
  71. :label-alignment :center
  72. :label "Stop"
  73. :active :true
  74. :visible :true
  75. :north-attachment (:point 0 5)
  76. :east-attachment (:grid-line 60 0)
  77. :west-attachment (:grid-line 40 0)
  78. :help-text "tt_trace_control(3)\n"
  79. )
  80. :element helpButton
  81. (
  82. :type :button
  83. :button-type :push-button
  84. :label-type :string
  85. :label-alignment :center
  86. :label "Help"
  87. :active :true
  88. :visible :true
  89. :north-attachment (:point 0 5)
  90. :east-attachment (:grid-line 90 0)
  91. :west-attachment (:grid-line 70 0)
  92. )
  93. :connection
  94. (
  95. :from closeButton
  96. :to tracer
  97. :when :activate
  98. :action-type :builtin
  99. :action :hide
  100. :arg-type :void
  101. )
  102. :connection
  103. (
  104. :from cancelButton
  105. :when :activate
  106. :action-type :call-function
  107. :action stopApiTracing
  108. )
  109. :connection
  110. (
  111. :from helpButton
  112. :when :activate
  113. :action-type :call-function
  114. :action helpApiTracing
  115. )
  116. )