summaryrefslogtreecommitdiff
path: root/src/DDataStd/DDataStd_TreeBrowser.tcl
blob: e9395996984fdb4f6dbceaa333b47cfe6305ec0a (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
###########################
#                         #
# Version 1.0             #
# by FID                  #
#                         #
###########################
#
# Open         : double-clic or +
# Close        : double-clic or -
# Refresh tree : close top level and re-open
#
# Attributes:
# white     : interoperable
# white + c : non interoperable
# X         : X Reference
# Red       : not yet commited in transaction #0
# 
#

proc __update { args } {
}

global TreeBrowser

proc treebrowser { TreeBrowser } {

    global TREE_WINDOWS
    global TREE_LabelStyle
    global TREE_LabelStyle1
    global TREE_AttributeStyle
    global TREE_AttributeStyle1
    global TREE_AttributeStyle2

    global $TreeBrowser

    package require Tix
    tixPref:InitFontSet:14Point

    set TREE_LabelStyle [tixDisplayStyle imagetext \
	    -font 9x15bold \
	    -background Bisque3 \
	    ]

    set TREE_LabelStyle1 [tixDisplayStyle imagetext \
	    -font 9x15bold \
	    -background Bisque3 \
	    -foreground SeaGreen2 \
	    ]

    set TREE_AttributeStyle [tixDisplayStyle imagetext \
	    -font 9x15 \
	    -background Bisque3 \
	    ]

    set TREE_AttributeStyle1 [tixDisplayStyle imagetext \
	    -font 9x15 \
	    -background Bisque3 \
	    -foreground Green \
	    ]

    set TREE_AttributeStyle2 [tixDisplayStyle imagetext \
	    -font 9x15 \
	    -background Bisque3 \
	    -foreground Red \
	    ]

    set w .$TreeBrowser
    toplevel $w

    set top [frame $w.thu -bd 1 -relief raised -background Bisque3]

    ################
    # Paned Window #
    ################
    set p [tixPanedWindow $top.p -orient horizontal -height 400 -width 700]
    pack $p -expand yes -fill both -padx 4 -pady 4

    TREE:Tree:InitTreePanel $TreeBrowser $w $p
    #TREE:Tree:InitTextPanel $TreeBrowser $w $p

    tixForm $top -left 2 -top 2 -right %99 -bottom %99

    return 
}

###############################################################################
#
#
proc TREE:Tree:InitTreePanel { TreeBrowser w p } {
    global TREE_WINDOWS
    global $TreeBrowser 

    ########
    # Tree #
    ########

    set p1 [$p add pane1 -expand 1 -size 700] ; $p1 config -relief flat 
    set tree  [tixTree $p1.tree \
	    -opencmd  [list TREE:Tree:Open $TreeBrowser $w] \
	    -options { \
	    hlist.separator "^" \
	    hlist.font 9x15bold \
	    hlist.background Bisque3 \
	    hlist.foreground Black \
	} ]
    pack $p1.tree -expand yes -fill both -padx 4 -pady 4

    # -browsecmd TREE:Tree:BrowseCmd
    # Cette option peut etre ajoutee a la commande tixTree,
    # mais elle declanche l'appel a la procedure a chaque clic , 
    # double-clic, voire a chaque appui puis relachement de souris!!!

    # to see different fonts: /usr/openwin/lib/X11/fonts/misc or xlsfonts?
    # 8x13 8x13bold 9x15 9x15bold
    #	    hlist.font 8x13bold
    #	    hlist.gap "15"
    #	    hlist.indent "30"

    set TREE_WINDOWS($w,NAV,tree)   $tree
    set TREE_WINDOWS($w,NAV,hlist)  [$tree subwidget hlist]
    $TREE_WINDOWS($w,NAV,hlist) add ^ \
	    -text $TreeBrowser \
	    -data [list $TreeBrowser Root]
    $TREE_WINDOWS($w,NAV,tree)  setmode ^ open
}

###############################################################################
#
#
proc TREE:Tree:InitTextPanel { TreeBrowser w p } {
    global TREE_WINDOWS
    global $TreeBrowser

    ########
    # Text #
    ########
    set p2 [$p add pane2 -expand 4 -size 400] ; $p2 config -relief flat
    tixScrolledText $p2.st 
    pack $p2.st   -expand yes -fill both -padx 4 -pady 4	
    
    set TREE_WINDOWS($w,NAV,text)   [$p2.st subwidget text]



    $TREE_WINDOWS($w,NAV,text) insert end " Welcome to the QDF browser (Rev #.#)\n"
    $TREE_WINDOWS($w,NAV,text) insert end "--------------------------------------\n\n"
    $TREE_WINDOWS($w,NAV,text) insert end "This browser is an easy to use prototype made with Tix technology. We hope it will be usefull for understanding and debugging QDF.\n"
    $TREE_WINDOWS($w,NAV,text) insert end "\t\t\t\tFID & YAN"
}

###############################################################################
#
#
proc TREE:Tree:BrowseCmd { dir } {
    puts "Hello $dir !"
}
###############################################################################
# Se positionne sur l'entry pere et update les fenetres.
#    
proc FCTREE:Tree:Up { w } {
    global TREE_WINDOWS
    global TREE_GLOBALS
    #puts "TREE:Tree:Up"

    if { [set here [$TREE_WINDOWS($w,NAV,hlist) info anchor]] != {} } {
	if { [set up [$TREE_WINDOWS($w,NAV,hlist) info parent $here]] != {} } {
	    TREE:Tree:ShowUp $w $up
	    set TREE_GLOBALS(CWD) [lindex [$TREE_WINDOWS($w,NAV,hlist) info data $up] 0]
	} 
    } 
    return
}
###############################################################################
# Se positionne sur l'entry up sans update (History) 
#    
proc TREE:Tree:ShowUp { w dir } {
    global TREE_WINDOWS
    #puts "TREE:Tree:ShowUp"

    $TREE_WINDOWS($w,NAV,hlist) anchor clear
    $TREE_WINDOWS($w,NAV,hlist) anchor set $dir
    $TREE_WINDOWS($w,NAV,hlist) selection clear
    $TREE_WINDOWS($w,NAV,hlist) selection set $dir
    $TREE_WINDOWS($w,NAV,hlist) see $dir
    return
}
###############################################################################
#
#
proc TREE:Tree:Open { TreeBrowser w dir} {
    global TREE_WINDOWS
    global $TreeBrowser
    #puts "TREE:Tree:Open"

    if {$dir == "^"} {
	# This is root
	if {[$TREE_WINDOWS($w,NAV,hlist) info children $dir] != {}} {
	    # The root branch already exists in hlist.
	    # Clear all its children to force the tree to be updated.
	    foreach kid [$TREE_WINDOWS($w,NAV,hlist) info children $dir] {
		$TREE_WINDOWS($w,NAV,hlist) delete entry $kid
	    }
	}
    }
    
    if {[$TREE_WINDOWS($w,NAV,hlist) info children $dir] != {}} {
	# The branch exists in hlist.
	foreach kid [$TREE_WINDOWS($w,NAV,hlist) info children $dir] {
	    $TREE_WINDOWS($w,NAV,hlist) show entry $kid
	}
	set data [$TREE_WINDOWS($w,NAV,hlist) info data $dir]
	#set loc  [lindex $data 0]
    } else {
	# The branch is unknown.
	tixBusy $w on
	update
	TREE:Tree:Fill $TreeBrowser $w $dir
	tixBusy $w off
    }
    return
}
###############################################################################
#
#
proc TREE:Tree:Fill { TreeBrowser w  dir } {
    global TREE_WINDOWS
    global TREE_GLOBALS
    global $TreeBrowser
    #puts "TREE:Tree:Fill"
    
    set data [$TREE_WINDOWS($w,NAV,hlist) info data $dir]
    #set loc  [lindex $data 0]
    set type [lindex $data 1]

    #puts "====================="
    #puts "Type $type"
    #puts "Window $w"
    #puts "Loc $loc"
    #puts "Dir $dir"
    #puts "====================="

    switch -glob $type {
	
	Root {
	    TREE:Tree:UpdateRoot $TreeBrowser $w $dir
	}
	
	Node {
	    set lab [lindex $data 0]
	    TREE:Tree:UpdateNode $TreeBrowser $w $dir $lab
	}
	
	terminal {
	    TREE:Tree:terminal $TreeBrowser $w $dir
	}
	
	default {
	    puts "type non reconnu"
	}
    }
    return
}
###############################################################################
# ici dir = ^
#
proc TREE:Tree:UpdateRoot  { TreeBrowser w dir } {
    global TREE_WINDOWS
    global $TreeBrowser
    global TREE_AttributeStyle
    global TREE_AttributeStyle1
    #puts "TREE:Tree:UpdateRoot"

    foreach nodeItem [split [OpenNode $TreeBrowser ""] "\\" ] {

	TREE:Tree:DecodeNodeItem $TreeBrowser $w $dir $nodeItem

    }

    return
}
###############################################################################
# 
#
proc TREE:Tree:UpdateNode  { TreeBrowser w dir lab} {
    global TREE_WINDOWS
    global $TreeBrowser
    global TREE_AttributeStyle
    global TREE_AttributeStyle1
    #puts "TREE:Tree:UpdateNode"

    foreach nodeItem [split [OpenNode $TreeBrowser $lab ] "\\" ] {

	TREE:Tree:DecodeNodeItem $TreeBrowser $w $dir $nodeItem

    }
    return
}
###############################################################################
# item:
# "LabelEntry "Name" DynamicType Executable|Forgotten Failed|Success First|Null [ LabelFather]"
proc TREE:Tree:DecodeNodeItem { TreeBrowser w dir nodeItem} {
    global TREE_WINDOWS
    global $TreeBrowser
    global TREE_AttributeStyle
    global TREE_AttributeStyle1
    global TREE_AttributeStyle2
    #puts "TREE:Tree:DecodeNodeItem"

    set litm {}
    set standardimage  [tix getimage file]
    set forgottenimage [tix getimage maximize]
    set image $standardimage

    # Information first split
    set tmplist [split $nodeItem " "]
    set labentry    [lindex $tmplist 0]
    set name        [lindex $tmplist 1]
    set type        [lindex $tmplist 2]
    #set exec        [lindex $tmplist 3]
    #set state       [lindex $tmplist 4]
    set children    [lindex $tmplist 3]
    set father      [lindex $tmplist 4]
    set first       [lindex $tmplist 5]
    set next        [lindex $tmplist 6]
    set previous    [lindex $tmplist 7]

    #puts "labentry : $labentry"
    #puts "name : $name"
    #puts "type : $type"
    #puts "state : $state"
    #puts "exec : $exec"
    #puts "children : $children"
    #puts "father : $father"
    #puts "first : $first"
    #puts "next : $next"
    #puts "previous : $previous"

    # Label entry , name & Dynamic type.
    set ll [expr [string length $name] -2]
    if {$ll > 0} {
	set textname "$labentry [string range $name 1 $ll] $type"
    } else {
	set textname "$labentry $type"
    }

    set locstyle $TREE_AttributeStyle

    # Executable/Forgotten?
    #if {$exec == "Forgotten"} {
	#set textname "$textname $exec"
	#set locstyle $TREE_AttributeStyle1
	#set image $forgottenimage
    #}

    # Failed/Success analysis.
    #if {$state == "Failed"} {
	#set textname "$textname $state"
	#set locstyle $TREE_AttributeStyle2
    #}

    # Father?
    if {$father != "Null"} {set textname "$textname Father=$father"}
    # First?
    if {$first != "Null"} {set textname "$textname First=$first"}
    # Next?
    if {$next != "Null"} {set textname "$textname Next=$next"}
    # Previous?
    if {$previous != "Null"} {set textname "$textname Previous=$previous"}

    $TREE_WINDOWS($w,NAV,hlist) add ${dir}^${labentry} \
	    -itemtype imagetext \
	    -text $textname \
	    -image $image \
	    -style $locstyle \
	    -data  [list ${labentry} Node]
    if {$children == "First"} {
	$TREE_WINDOWS($w,NAV,tree) setmode ${dir}^${labentry} open
    }
    lappend litm [list $labentry $image]

    return
}
###############################################################################
#
#
proc TREE:Tree:terminal { TreeBrowser w dir } {
    global TREE_WINDOWS
    global $TreeBrowser
    return
}
###############################################################################
# 
#
proc TREE:Tree:DisplayAttribute { TreeBrowser w dir } {
    global TREE_WINDOWS
    global $TreeBrowser

    return
}
###############################################################################
# imprime tout ce qu'il y a dans hli ( Hlist )
#
proc wokDBG { {root {}} } {
    global TREE_GLOBALS
    global TREE_WINDOWS
    set w $TREE_GLOBALS(toplevel)
    set hli $TREE_WINDOWS($w,NAV,hlist)
    foreach c [$hli info children $root] {
	puts "$c : data <[$hli info data $c]>"
	wokDBG $c
    }
    return
}