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