File: form.tcl

package info (click to toggle)
blt 2.5.3%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 24,864 kB
  • sloc: ansic: 133,724; tcl: 17,680; sh: 2,722; makefile: 799; cpp: 370
file content (1060 lines) | stat: -rwxr-xr-x 36,471 bytes parent folder | download | duplicates (11)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
#!../src/bltwish

package require BLT
# --------------------------------------------------------------------------
# Starting with Tcl 8.x, the BLT commands are stored in their own 
# namespace called "blt".  The idea is to prevent name clashes with
# Tcl commands and variables from other packages, such as a "table"
# command in two different packages.  
#
# You can access the BLT commands in a couple of ways.  You can prefix
# all the BLT commands with the namespace qualifier "blt::"
#  
#    blt::graph .g
#    blt::table . .g -resize both
# 
# or you can import all the command into the global namespace.
#
#    namespace import blt::*
#    graph .g
#    table . .g -resize both
#
# --------------------------------------------------------------------------
if { $tcl_version >= 8.0 } {
    namespace import blt::*
    namespace import -force blt::tile::*
}
#source scripts/demo.tcl

option add *takeFocus 0

set file1 ../demos/images/chalk.gif
set file2 ../demos/images/tan_paper.gif
image create photo texture1 -file $file1
image create photo texture2 -file $file2
option add *Frame.Tile texture1
option add *Toplevel.Tile texture1
option add *Label.Tile texture1
option add *Scrollbar.tile texture1
#option add *Scrollbar.activeTile texture2
option add *Button.tile texture1
#option add *Button.activeTile texture2
option add *HighlightThickness 0
option add *Entry.highlightThickness 2

#
# Initialization of global variables and Tk resource database
#
#
# Resources available
#
# Tk.normalBgColor: 
# Tk.normalFgColor: 
# Tk.focusHighlightColor: 
# Tk.statusFont: 
# Tk.titleFont: 
# Tk.headingFont: 
# Tk.subheadingFont:
# Tk.entryFont:
# Tk.textFont:
#

#debug 50
bitmap define attlogo { { 60 30 } {
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x7e, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0xf8, 0x03,
    0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0x83, 0xf9, 0x87, 0x7f, 0x00,
    0x00, 0x00, 0x00, 0x80, 0xf9, 0x87, 0x7f, 0x00, 0x40, 0x00, 0xf0, 0xc7,
    0xc3, 0x38, 0x0c, 0x00, 0xc0, 0xff, 0xff, 0xc7, 0xc3, 0x7c, 0x0c, 0x00,
    0x00, 0x00, 0x00, 0x40, 0xc2, 0x6c, 0x0c, 0x00, 0x40, 0x00, 0xf8, 0x67,
    0xc6, 0x9c, 0x0d, 0x00, 0xc0, 0xff, 0xff, 0xe7, 0xc7, 0xf8, 0x0d, 0x00,
    0x00, 0x00, 0x00, 0xe0, 0xc7, 0xec, 0x0c, 0x00, 0x80, 0x01, 0xfe, 0x33,
    0xcc, 0xfc, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x33, 0xcc, 0xb8, 0x0d, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x0f, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
}

bitmap define globe_00 { { 32 32 } {
    00 40 02 00 00 1c 3c 00 00 01 fe 00 80 80 fe 03 60 00 ff 07 10 c0 f1 0f
    00 80 c0 1f 00 c0 07 3f 00 c0 ff 3f 00 f0 ff 4f 02 f0 ff 5d 00 f0 ff 1b
    00 f0 ff 8f 02 f0 ff 0f 06 e0 fc 0f 0e 00 f8 0f 0f 00 f8 07 3f 00 f8 03
    7e 00 f0 03 7e 00 f0 03 3e 00 f0 0b 3c 00 f0 09 3c 00 f0 01 18 00 f0 00
    18 00 70 00 10 00 00 00 10 00 00 00 20 00 00 00 40 00 00 00 00 00 00 00
    00 00 00 00 00 00 1f 00 }
}

bitmap define globe_01 { { 32 32 } {
    00 c0 00 00 00 34 38 00 00 02 e8 00 80 01 fa 03 e0 00 fc 07 30 00 e6 0f
    10 00 86 1f 08 00 3e 3c 04 00 ff 3f 04 80 ff 5f 02 80 ff 3f 00 80 ff 2f
    00 80 ff 3f 0c 00 ff 3f 1c 00 ee 3f 3c 00 c0 3f 7e 00 c0 1f fe 01 80 1f
    fc 03 80 1f fc 01 80 1f fc 01 80 2f f8 01 80 0f f0 00 80 17 f0 00 80 03
    f0 00 80 03 60 00 00 00 60 00 00 00 40 00 00 00 80 00 00 00 00 00 00 00
    00 00 00 00 00 00 1e 00 }
}

bitmap define globe_02 { { 32 32 } {
    00 c0 01 00 00 60 30 00 00 04 f0 00 80 07 e0 03 e0 01 f0 07 f0 00 38 0f
    30 00 10 1e 18 00 f0 30 04 00 f8 3f 10 00 f8 7f 12 00 fc 7f 02 00 fc 7f
    04 00 fc 7f 74 00 f8 7f f0 00 70 7f f8 01 00 7e f8 03 00 7e f8 0f 00 7c
    f8 1f 00 3c f0 1f 00 3c f0 0f 00 3e e0 0f 00 5e c0 07 00 1c c0 03 00 0e
    c0 03 00 04 80 01 00 00 80 01 00 00 80 01 00 00 00 01 00 00 00 00 00 00
    00 00 00 00 00 10 1c 00 }
}

bitmap define globe_03 { { 32 32 } {
    00 c0 01 00 00 dc 20 00 00 09 c0 00 80 1f a0 03 e0 07 c0 07 f0 01 c0 0c
    f8 00 40 18 78 00 c0 23 08 00 c0 3f 04 00 e0 7f 54 00 e0 7f 0c 00 c0 7f
    10 00 c0 ff d0 01 c0 ff c0 03 80 fb e0 0f 00 f0 e0 1f 00 f0 e0 ff 00 f0
    e0 ff 00 70 c0 ff 00 70 c0 7f 00 70 00 7f 00 70 00 3f 00 30 00 1f 00 38
    00 1f 00 18 00 0e 00 00 00 06 00 00 00 02 00 00 00 04 00 00 00 00 00 00
    00 00 00 00 00 20 18 00 }
}

bitmap define globe_04 { { 32 32 } {
    00 c0 03 00 00 7c 03 00 00 13 00 00 80 7f c0 03 c0 1f 00 07 e0 0f 00 0d
    f0 03 00 10 f0 01 00 0e 38 01 00 3e 10 00 00 7f 50 00 00 7f 30 00 00 7f
    40 00 00 ff 00 1e 00 fe 00 3f 00 ec 00 7f 00 c0 00 ff 00 c0 00 ff 07 c0
    00 ff 0f c0 00 fe 07 c0 00 fe 07 c0 00 f8 03 40 00 f8 01 60 00 f8 00 20
    00 f8 00 20 00 38 00 00 00 18 00 00 00 18 00 00 00 18 00 00 00 00 00 00
    00 00 00 00 00 40 10 00 }
}

bitmap define globe_05 { { 32 32 } {
    00 c0 03 00 00 bc 06 00 00 cf 00 00 80 ff 01 02 c0 7f 00 06 c0 3f 00 0e
    e0 1f 00 14 e0 0f 00 18 e0 00 00 38 60 00 00 78 40 08 00 78 c0 01 00 78
    00 02 00 f8 00 f0 00 f0 00 f0 01 b0 00 f8 07 80 00 f8 0f 80 00 f8 3f 00
    00 f8 7f 00 00 f0 3f 80 00 f0 3f 80 00 c0 1f 00 00 c0 0f 00 00 c0 07 40
    00 c0 07 00 00 c0 01 00 00 e0 00 00 00 60 00 00 00 40 00 00 00 00 00 00
    00 00 00 00 00 80 10 00 }
}

bitmap define globe_06 { { 32 32 } {
    00 80 07 00 00 7c 0d 00 00 9f 03 00 00 ff 07 02 00 ff 03 04 80 ff 00 08
    c0 7f 00 00 80 3f 00 30 80 07 00 20 00 03 00 60 00 03 00 60 00 0e 00 60
    00 10 00 e0 00 80 07 c0 00 80 0f c0 00 80 3f 00 00 c0 7f 00 00 c0 ff 01
    00 c0 ff 03 00 80 ff 01 00 80 ff 01 00 00 fe 00 00 00 7e 00 00 00 3e 00
    00 00 1f 00 00 00 0f 00 00 00 03 00 00 00 03 00 00 00 01 00 00 00 00 00
    00 00 00 00 00 00 01 00 }
}

bitmap define globe_07 { { 32 32 } {
    00 80 07 00 00 fc 1a 00 00 7d 02 00 00 fe 1f 00 00 fe 0f 00 00 fe 07 00
    00 ff 03 00 00 fe 01 20 00 1c 01 00 00 1c 00 40 00 18 00 40 00 70 00 00
    00 80 00 80 00 00 39 80 00 00 7c 00 00 00 fc 01 00 00 fe 03 00 00 fe 0f
    00 00 fc 0f 00 00 fc 0f 00 00 f8 07 00 00 f0 07 00 00 f0 03 00 00 f0 01
    00 00 f8 00 00 00 38 00 00 00 18 00 00 00 0c 00 00 00 04 00 00 00 00 00
    00 00 00 00 00 00 02 00 }
}

bitmap define globe_08 { { 32 32 } {
    00 00 07 00 00 fc 25 00 00 f8 19 00 00 f8 7f 00 00 f8 3f 00 00 f8 1f 00
    00 f8 1f 00 00 f8 0f 00 00 f0 08 00 00 f0 00 00 00 c0 04 00 00 80 03 00
    00 00 0c 00 00 00 c8 01 00 00 e0 03 00 00 e0 0f 00 00 e0 0f 00 00 f0 3f
    00 00 e0 3f 00 00 e0 3f 00 00 c0 1f 00 00 80 1f 00 00 80 0f 00 00 c0 07
    00 00 c0 03 00 00 c0 01 00 00 60 00 00 00 30 00 00 00 10 00 00 00 00 00
    00 00 00 00 00 00 04 00 }
}

bitmap define globe_09 { { 32 32 } {
    00 00 03 00 00 fc 27 00 00 f0 13 00 00 e0 ff 00 00 e0 ff 01 00 e0 7f 00
    00 e0 7f 00 00 c0 7f 00 00 80 47 00 00 80 07 00 00 00 26 00 00 00 1c 00
    00 00 60 00 00 00 40 0e 00 00 00 1f 00 00 00 3f 00 00 00 3f 00 00 00 7f
    00 00 00 7f 00 00 00 7f 00 00 00 7e 00 00 00 3c 00 00 00 3e 00 00 00 1e
    00 00 00 0f 00 00 00 07 00 00 80 01 00 00 80 00 00 00 40 00 00 00 00 00
    00 00 00 00 00 00 08 00 }
}

bitmap define globe_10 { { 32 32 } {
    00 00 06 00 00 f4 2f 00 00 c8 4f 00 00 80 ff 01 00 80 ff 01 00 80 ff 01
    00 00 ff 01 00 00 fe 01 00 00 3c 00 00 00 3c 00 00 00 30 04 00 00 e0 00
    00 00 00 01 00 00 00 3a 00 00 00 38 00 00 00 78 00 00 00 f8 00 00 00 fc
    00 00 00 f8 00 00 00 f8 00 00 00 f8 00 00 00 70 00 00 00 70 00 00 00 38
    00 00 00 18 00 00 00 0c 00 00 00 06 00 00 00 03 00 00 00 00 00 00 00 00
    00 00 00 00 00 00 10 00 }
}

bitmap define globe_11 { { 32 32 } {
    00 00 06 00 00 ec 1f 00 00 91 9f 00 00 00 fe 03 00 00 fc 07 00 00 fc 07
    00 00 fc 07 00 00 f0 07 00 00 f0 01 00 00 e0 00 00 00 80 05 00 00 00 07
    00 00 00 08 00 00 00 60 00 00 00 e0 00 00 00 e0 00 00 00 e0 00 00 00 e0
    01 00 00 e0 00 00 00 e0 00 00 00 e0 00 00 00 40 00 00 00 60 00 00 00 60
    00 00 00 30 00 00 00 10 40 00 00 08 40 00 00 04 00 00 00 00 00 00 00 00
    00 00 00 00 00 00 10 00 }
}

bitmap define globe_12 { { 32 32 } {
    00 00 04 00 00 dc 3f 00 00 42 7e 00 00 00 f8 03 20 00 f0 07 10 00 f0 0f
    00 00 e0 0f 00 00 c0 0f 00 00 00 07 00 00 00 06 00 00 00 14 00 00 00 18
    00 00 00 20 00 00 00 80 00 00 00 80 00 00 00 80 00 00 00 80 01 00 00 80
    00 00 00 80 00 00 00 80 02 00 00 80 02 00 00 00 04 00 00 40 04 00 00 40
    08 00 00 20 08 00 00 00 00 00 00 10 00 00 00 08 00 00 00 00 00 00 00 00
    00 00 00 00 00 00 00 00 }
}

bitmap define globe_13 { { 32 32 } {
    00 00 04 00 00 bc 3f 00 00 01 79 00 80 00 e0 03 60 00 c0 07 10 00 80 0f
    00 00 80 1f 08 00 00 1e 00 00 00 1c 00 00 00 58 00 00 00 10 00 00 00 20
    00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 01 00 00 00 06 00 00 00
    04 00 00 00 00 00 00 00 02 00 00 00 0e 00 00 00 0c 00 00 00 1c 00 00 00
    18 00 00 00 30 00 00 00 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 10 00 00 }
}

bitmap define globe_14 { { 32 32 } {
    00 00 00 00 00 fc 3f 00 00 03 e6 00 80 01 c0 03 60 00 00 07 30 00 00 0f
    00 00 00 1e 00 00 00 38 04 00 00 30 00 00 00 30 02 00 00 00 00 00 00 40
    00 00 00 80 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 18 00 00 00
    00 00 00 00 00 00 00 00 14 00 00 00 3c 00 00 00 3c 00 00 00 7c 00 00 00
    78 00 00 00 60 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 30 00 00 }
}

bitmap define globe_15 { { 32 32 } {
    00 00 00 00 00 fc 3d 00 00 27 c8 00 80 13 00 03 e0 01 00 06 70 00 00 0c
    10 00 00 18 18 00 00 30 0c 00 00 20 0c 00 00 40 02 00 00 00 02 00 00 00
    00 00 00 00 00 00 00 00 01 00 00 00 03 00 00 00 13 00 00 00 64 00 00 00
    c0 00 00 00 00 00 00 00 30 00 00 00 f8 00 00 00 f8 01 00 00 f8 03 00 00
    f0 03 00 00 80 03 00 00 00 80 00 00 00 40 00 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 70 00 00
  }
}

bitmap define globe_16 { { 32 32 } {
    00 00 00 00 00 fc 3b 00 00 9f a0 00 80 4f 00 02 e0 0f 00 04 f0 01 00 08
    70 00 00 10 38 00 00 20 3c 00 00 00 1c 00 00 00 06 00 00 00 04 00 00 00
    04 00 00 00 00 00 00 00 20 00 00 00 0a 00 00 00 0a 00 00 00 00 03 00 00
    28 06 00 00 00 00 00 00 c0 02 00 00 e0 07 00 00 f0 0f 00 00 e0 1f 00 00
    e0 1f 00 00 00 0c 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 f0 00 00 }
}

bitmap define globe_17 { { 32 32 } {
    00 00 00 00 00 fc 37 00 00 3f 42 00 80 3f 01 02 e0 1f 00 00 f0 07 00 00
    f0 11 00 00 f8 04 00 00 fc 00 00 00 7c 00 00 00 1a 00 00 00 9a 00 00 00
    18 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 28 00 00 00 08 18 00 00
    00 30 00 00 00 10 00 00 00 17 00 00 00 3f 00 00 c0 7f 00 00 80 7f 00 00
    80 7f 00 00 00 70 00 00 00 00 10 00 00 00 00 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 f0 01 00
  }
}

bitmap define globe_18 { { 32 32 } {
    00 00 00 00 00 fc 2f 00 00 ff 84 00 80 ff 04 00 e0 7f 00 00 f0 9f 00 00
    f0 97 00 00 f8 27 00 00 fc 07 00 00 fc 03 00 00 6c 00 00 00 64 00 00 00
    60 04 00 00 40 00 00 00 20 00 00 00 20 01 00 00 a0 01 00 00 00 c0 05 00
    00 88 00 00 00 00 00 00 00 38 01 00 00 fc 01 00 00 fe 03 00 00 fe 03 00
    00 fc 03 00 00 80 03 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 f0 03 00
  }
}

bitmap define globe_19 { { 32 32 } {
    00 40 00 00 00 fc 3f 00 00 ff 13 00 80 ff 13 00 e0 ff 03 00 f0 ff 00 00
    f0 9f 00 00 f8 3f 00 00 fc 3f 00 00 f8 1f 00 00 ba 07 00 00 98 23 00 00
    08 03 00 00 08 00 00 00 00 00 00 00 80 09 00 00 00 0d 01 00 00 21 0e 00
    00 00 1c 00 00 00 00 00 00 c0 09 00 00 e0 0f 00 00 f0 1f 00 00 f0 1f 00
    00 f0 1f 00 00 00 0e 00 00 00 00 00 00 00 80 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 f0 07 00
  }
}

bitmap define globe_20 { { 32 32 } {
    00 00 00 00 00 fc 3f 00 00 ff 07 00 80 ff 0f 00 e0 ff 0f 00 f0 ff 13 00
    f0 ff 10 00 f8 ff 00 00 fc ff 01 00 f4 ff 00 00 e6 1e 00 00 62 1c 01 00
    20 18 00 00 20 10 00 00 01 80 00 00 01 cc 00 00 01 68 08 00 00 00 60 00
    00 00 c0 00 00 00 00 00 00 00 5c 00 00 00 7e 00 00 80 ff 00 00 80 ff 00
    00 80 ff 00 00 00 70 00 00 00 00 04 00 00 00 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 f0 0f 00
  }
}

bitmap define globe_21 { { 32 32 } {
    00 80 00 00 00 fc 3f 00 00 ff 1f 00 80 ff bf 00 e0 ff 3f 00 f0 ff 1f 00
    f8 ff 17 00 f8 ff 27 00 ec ff 0f 00 8c ff 07 00 9e f7 00 00 0e e3 00 00
    06 c1 00 00 06 81 10 00 03 40 04 00 03 20 06 00 03 40 06 00 01 80 00 03
    01 00 00 02 02 00 00 00 02 00 e0 02 02 00 f0 03 00 00 fc 03 00 00 fc 03
    00 00 fc 03 00 00 c0 01 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 00
    00 00 00 00 00 f0 1f 00 }
}

bitmap define globe_22 { { 32 32 } {
    00 00 01 00 00 fc 3f 00 00 ff 3f 00 80 ff 7f 00 e0 ff ff 00 f0 ff 7f 00
    f0 ff 1f 00 e0 ff 3f 00 fc ff 3f 00 34 fe 3f 00 76 bc 07 00 36 1c 07 00
    0e 08 0e 00 1e 08 80 00 0f 00 02 00 0f 00 20 00 07 00 36 00 07 00 04 08
    07 00 00 18 06 00 00 00 16 00 00 0b 16 00 80 0f 04 00 e0 0f 04 00 e0 0f
    08 00 e0 0f 00 00 00 06 00 00 00 10 00 00 00 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 f0 1f 00 }
}

bitmap define globe_23 { { 32 32 } {
    00 00 00 00 00 fc 3f 00 00 ff 7f 00 80 ff ff 01 e0 ff ff 01 e0 ff ff 01
    e8 ff ff 00 c0 ff ff 00 fc fe ff 01 dc f2 ff 01 de e3 3d 00 de e1 38 02
    7e 40 70 00 fe 40 00 04 7f 00 00 00 3e 00 30 01 3e 00 a0 01 1e 00 20 20
    1e 00 00 20 1c 00 00 00 9c 00 00 3c 1c 00 00 3e 1c 00 00 3f 18 00 80 3f
    10 00 00 1f 00 00 00 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 f0 1f 00 }
}

bitmap define globe_24 { { 32 32 } {
    00 00 02 00 00 fc 3f 00 00 fe ff 00 80 ff ff 01 c0 ff ff 03 80 ff ff 03
    e0 ff ff 03 18 ff ff 03 fc ff ff 07 7c 87 ff 07 fe 1f ef 01 fe 0e c6 01
    fe 01 82 03 fe 03 02 00 ff 03 00 08 fc 01 80 09 fc 00 00 0d fc 00 00 00
    f8 00 00 80 f8 00 00 00 f8 00 00 20 78 02 00 70 70 02 00 7c 70 00 00 3c
    60 00 00 3c 00 00 00 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 f0 1f 00 }
}

bitmap define globe_25 { { 32 32 } {
    00 00 00 00 00 f0 3f 00 00 fc ff 00 80 ff ff 03 80 ff ff 07 a0 ff ff 07
    10 ff ff 07 30 f8 ff 0f f8 df ff 1f fc 3b fc 1f fc fb 78 07 fe 77 30 0e
    fe 1f 30 0c fe 3f 00 48 fe 1f 00 00 f0 0f 00 24 f0 07 00 a0 f0 07 00 08
    e0 07 00 00 e0 07 00 00 e0 27 00 c0 e0 13 00 40 c0 13 00 70 c0 03 00 70
    80 01 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 f0 1f 00 }
}

bitmap define globe_26 { { 32 32 } {
    00 40 00 00 00 e0 3f 00 00 e8 ff 00 00 fc ff 03 00 ff ff 07 c0 fe ff 0f
    40 f0 ff 1f e0 e0 ff 1f f0 ff fe 3f f8 df e1 3f f8 df c7 1b fc bf 83 19
    fc ff 80 30 fc ff 01 20 f8 ff 00 00 c0 ff 00 00 c0 7f 00 e0 80 3f 00 20
    80 3f 00 00 80 3f 00 00 80 3f 01 80 80 9f 00 00 00 9f 00 40 00 0f 00 60
    00 0e 00 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 f0 1f 00 }
}

bitmap define globe_27 { { 32 32 } {
    00 80 00 00 00 c4 3f 00 00 f0 ff 00 00 fe ff 03 00 fe ff 07 00 eb ff 0f
    80 c9 ff 1f 80 07 ff 3f c0 ff f7 3f e0 ff 0e 7f f0 ff 3e 6e f0 ff 1d 64
    f0 ff 07 44 f0 ff 0f 00 60 ff 0f 00 00 fe 07 40 00 fe 03 00 01 fc 01 00
    01 fc 01 00 00 fc 01 00 00 fc 09 00 02 fc 08 00 00 f8 04 00 00 78 00 40
    00 70 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 e0 1f 00 }
}

bitmap define globe_28 { { 32 32 } {
    00 00 00 00 00 88 3f 00 00 40 ff 00 00 e8 ff 03 00 f8 ff 07 00 8c ff 0f
    00 06 fe 1f 00 1e f8 3f 00 ff bf 3f 80 ff 77 7c 80 ff ff 79 c0 ff ef 10
    c0 ff 3f 90 c0 ff 7f 00 81 fb 7f 00 01 f0 3f 00 01 f0 1f 00 03 e0 1f 00
    07 e0 0f 00 02 c0 1f 00 02 e0 5f 00 06 e0 47 00 04 c0 27 00 04 c0 03 00
    00 80 03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 c0 1f 00 }
}

bitmap define globe_29 { { 32 32 } {
    00 40 01 00 00 0c 3f 00 00 80 fd 00 00 a0 ff 03 20 e0 ff 07 00 30 fd 0f
    00 10 f4 1f 00 f8 c0 3f 00 f8 ff 3f 00 fc bf 73 00 fe ff 67 00 fe 7f 47
    00 fe ff 41 00 fe ff 03 01 dc ff 03 03 00 ff 01 07 80 ff 00 0f 00 ff 00
    1f 00 7e 00 0e 00 fe 00 0e 00 ff 02 0e 00 3f 01 0c 00 3e 01 0c 00 1e 00
    08 00 1c 00 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    00 00 00 00 00 80 1f 00 }
}

# ----------------------------------------------------------------
#
# SetOption --  
#	
#	Sets the option array associated with the resource. It
# 	first check to see if the resource exists in the option
#	data base, otherwise it uses the default value given.
#	
#
# Arguments
#	name		-- Name of the resource. Used as index into
#			   the option array.
#	value		-- default value given.
# Globals
#	pq_dict  	-- Associative array where the option resources
#			   are stored.
#
# ----------------------------------------------------------------

proc SetOption { name value } {
    global pq_dict
    set widgetOption [option get . $name Tk]
    if { $widgetOption != "" } {
	set value $widgetOption
    }
    set pq_dict($name) $value
}

set pq_dict(textIndex) {}

set pq_dict(entryNames) {
    last first middle 
    area exch ext 
    com org tl
    room oldloc loc 
    street 
    city state zip 
    ema
}

set pq_dict(numEntries) [llength $pq_dict(entryNames)]
set pq_dict(index) 0
set pq_dict(defaults) {}

set cnt 0
foreach name $pq_dict(entryNames) {
    if { $cnt > 0 } {
	set pq_dict(format) $pq_dict(format):%$name
    } else {
	set pq_dict(format) %$name
    }
    incr cnt
}

set visual [winfo screenvisual .]
if { ($visual == "staticgray") || ($visual == "grayscale") } {
    option add *Entry.background white
    option add *Text.background white
    set pq_dict(visual) mono
} else {
    set depth [winfo screendepth .]
    if { $depth < 8 } {
	SetOption normalBgColor grey
	SetOption normalFgColor black
	SetOption focusHighlightColor white
    } else {
#fff4de
	SetOption normalBgColor grey90
	SetOption normalFgColor #da5f5f
	SetOption normalFgColor navyblue
	SetOption focusHighlightColor #fffdf8 
    }
    option add *Entry.background $pq_dict(normalBgColor) widgetDefault
    option add *Text.background $pq_dict(normalBgColor) widgetDefault
    option add *Label.foreground $pq_dict(normalFgColor) widgetDefault
    option add *Button.foreground $pq_dict(normalFgColor) widgetDefault
    set pq_dict(visual) color
}    

SetOption statusFont 	 -*-Helvetica-Medium-R-*-*-14-*-*-*-*-*-*-*
SetOption titleFont	 -*-Helvetica-Bold-R-*-*-14-*-*-*-*-*-*-*
SetOption headingFont 	 -*-Helvetica-Medium-R-*-*-14-*-*-*-*-*-*-*
SetOption subheadingFont -*-Helvetica-Medium-R-*-*-12-*-*-*-*-*-*-* 
SetOption entryFont 	 -*-Courier-Medium-R-*-*-12-*-*-*-*-*-*-*
SetOption textFont 	 -*-Courier-Bold-R-*-*-12-*-*-*-*-*-*-*
#SetOption entryFont 	 fixed
#SetOption textFont 	 fixed

option add *Label.borderWidth 	0		    widgetDefault
option add *Entry.relief 	sunken              widgetDefault
option add *Entry.width 	11		    widgetDefault
option add *Entry.borderWidth 	2		    widgetDefault
option add *Entry.font 		$pq_dict(entryFont) widgetDefault
option add *Text.font		$pq_dict(textFont)  widgetDefault
option add *Text.width 		35		    widgetDefault
option add *Text.height 	10 		    widgetDefault
option add *Scrollbar.relief 	flat		    widgetDefault
option add *Scrollbar.minSlider	10		    widgetDefault
option add *Button.padY 6
option add *Text.relief 	sunken		    widgetDefault
option add *Text.borderWidth 	2 		    widgetDefault

foreach name $pq_dict(entryNames) {
    option add *${name}_label.font $pq_dict(subheadingFont) widgetDefault
}

option add *Label.Font          $pq_dict(subheadingFont)
option add *status_label.font   $pq_dict(statusFont)  widgetDefault
option add *name_label.font   	$pq_dict(headingFont) widgetDefault
option add *tel_label.font 	$pq_dict(headingFont) widgetDefault
option add *office_label.font 	$pq_dict(headingFont) widgetDefault
option add *addr_label.font 	$pq_dict(headingFont) widgetDefault
option add *loc_title.font 	$pq_dict(headingFont) widgetDefault
option add *org_title.font 	$pq_dict(headingFont) widgetDefault

option add *overall_label.text	"Customer Database"
option add *name_label.text	"Name"
option add *tel_label.text 	"Telephone"
option add *addr_label.text	"Address"
option add *last_label.text	"last"
option add *first_label.text	"first"
option add *middle_label.text	"middle"
option add *com_label.text	"company"
option add *org_label.text      "organization"
option add *tl_label.text	"title"
option add *ext_label.text	"extension"
option add *exch_label.text	"exchange"
option add *area_label.text	"area code"
option add *loc_label.text	"extension"
option add *oldloc_label.text	"exchange"
option add *room_label.text	"area code"
option add *street_label.text	"street address"
option add *ema_label.text	"e-mail"
option add *city_label.text	"city"
option add *state_label.text	"state"
option add *zip_label.text	"zip code"
option add *org_title.text	"Organization"
option add *loc_title.text	"Fax"

option add *clear_button.text	"Clear"
option add *quit_button.text	"Quit"
option add *cancel_button.text	"Cancel"

# --------------------------------------------------------------------------
#
# Procedures to perform post queries
#

# ----------------------------------------------------------------
#
# StopQuery --  
#	
#	Stops any current "pq" request by setting the variable
#	associated with the background subprocesses. 
#
# Arguments
#	None.
#
# Globals
#	postOutput 	-- variable where collected output from 
#			   pq command will be stored
#
# ----------------------------------------------------------------

proc StopQuery {} {
    global postOutput
    set postOutput {}
}


# ----------------------------------------------------------------
#
# PostQuery --  
#	
#	Collects the data from the entry widget fields and 
#	executes a "pq" request.  The "pq" command is executed 
#	in the background and a "wait" is setup to wait for the 
#	command to finish.  This allows the animation routine
#	to operate and exposure events to be handled properly.
#
# Arguments
#	None.
#
# Globals
#	postOutput 	    -- variable where collected output from 
#			       pq command will be stored
#	pq_dict(entryNames) -- list of entry widget names
#	pq_dict(textIndex)  -- starting index of highlighted information
#			       (a line in the text widget)
#
# ----------------------------------------------------------------

proc PostQuery {} {
    global pq_dict 

    .status_label configure -text {}
    set cnt 0
    foreach name $pq_dict(entryNames) {
	set value [.${name}_entry get]
	if { $value != "" } {
	    set value [split $value "|"]
    	    foreach i $value {
	        if { $cnt > 0 } {
		    set query $query/$name=[list $i]
	        } else {
		    set query $name=[list $i]
	        }
	        incr cnt
 	    }
	}
    }
    if { $cnt == 0 } {
	return
    }
    set fmt {%^24pn\t%10org\t%6loc\t%area-%exch-%ext\t%ema}
    global postOutput postError
    set postOutput {}
    set postError {}
    bgexec postStatus -error postError -output postOutput \
	pq -o $fmt $query &
    Animate on
    tkwait variable postStatus
    if { $postOutput != "" } {
	.text configure -state normal
	.text delete 0.0 end
	.text insert 0.0 $postOutput
	.text configure -state disabled
	.status_label configure -text "Post query successful"
    } else {
	.status_label configure -text "Post query failed"
    }
    set pq_dict(textIndex) {}
    Animate off
    if { $postError != "" }  {
        tkerror $postError
    }
}


# ----------------------------------------------------------------
#
# ClearFields --  
#	
#	Clears the all the entry fields.
#
# Arguments
#	None.
#
# Globals
#	pq_dict(entryNames) -- list of entry widget names
#	pq_dict(textIndex)  -- starting index of highlighted information
#			       (a line in the text widget)
#
# ----------------------------------------------------------------

proc ClearFields {} {
    global pq_dict 

    busy hold . ; update
    foreach name $pq_dict(entryNames) {
	.${name}_entry delete 0 end
    }
    set pq_dict(textIndex) {}
    .status_label configure -text "Cleared query fields"
    busy release .
}


# ----------------------------------------------------------------
#
# FillFields --  
#	
#	Makes a post query based upon the highlighted line in
#	the text widget to fill in all post entry fields.
#
# Arguments
#	x		    x screen coordinate
#	y 		    y screen coordinate
#
# Globals
#	postOutput 	    variable where collected output from pq 
#			    command will be stored
#	pq_dict(format)     standard query format to collect data for 
#			    all entry fields
#	pq_dict(entryNames) list of entry widget names
#
# ----------------------------------------------------------------

proc FillFields { x y } {
    global pq_dict 

    set info [.text get [list @$x,$y linestart] [list @$x,$y lineend]]
    set info [split $info \t]
    if { [llength $info] == 0 } {
	return
    }
    set name [string trim [lindex $info 0]]
    set name [split $name ,]
    set last [lindex $name 0]
    set name [split [lindex $name 1]]
    set first [lindex $name 0]
    set middle [lindex $name 1]
    set org [string trim [lindex $info 1]]
    set loc [string trim [lindex $info 2]]
    set tel [string trim [lindex $info 3]]
    set query last=$last/first=$first/middle=$middle/org=$org/loc=$loc/tel=[list $tel]
    global postOutput
    set postOutput {}
    bgexec postStatus -output postOutput \
	pq -o $pq_dict(format) $query &
    Animate on
    tkwait variable postStatus

    if { $postOutput == "" } {
	# Try again with out the telephone number
	set query last=$last/first=$first/middle=$middle/org=$org/loc=$loc
	set postStatus {}
	bgexec postStatus -output postOutput \
		pq -o $pq_dict(format) $query &
	tkwait variable postStatus
    }	
    Animate off
    if { $postOutput == "" } {
	.status_label configure -text "Post query failed"
    } else {
        .status_label configure -text "Post database fields found"
        set postOutput [split $postOutput : ]
	set cnt 0
	foreach name $pq_dict(entryNames) {
	    .${name}_entry delete 0 end
	    .${name}_entry insert 0 [lindex $postOutput $cnt]
	    incr cnt
	}
    }
}


# ----------------------------------------------------------------
#
# HighlightText --  
#	
#	Highlight the text under the current line (as based upon
#	the given screen coordinates.  Only highlight the line if
#	pointer has been moved to the another line.
#
# Arguments
#	x		    x screen coordinate
#	y 		    y screen coordinate
#
# Globals
#	pq_dict(visual)     either "mono" or "color"; indicates if
#			    color screen features can be used
#	pq_dict(textIndex)  starting index of highlighted information
#	pq_dict(normalFgColor)    color to use for highlighted region
#
# ----------------------------------------------------------------

proc HighlightText { x y } {
    global pq_dict

    set newIndex [.text index [list @$x,$y linestart]]
    if { $newIndex != $pq_dict(textIndex) } {
	catch { .text tag delete highlight }
	.text tag add highlight $newIndex [list $newIndex lineend]
	if { $pq_dict(visual) == "color" } {
	    .text tag configure highlight \
		-foreground $pq_dict(normalFgColor) -underline on
	} else {
	    .text tag configure highlight -underline on 
	}
	set pq_dict(textIndex) $newIndex
    }
}


# ----------------------------------------------------------------
#
# ChangeFocus --  
#	
#	Change the keyboard focus to the next/last entry widget.
#
# Arguments
#	direction	    either "next" or "last"; indicates in 
#			    which direction to change focus
#
# Globals
#	pq_dict(entryNames) list of entry widget names
#	pq_dict(index)      current index in list of entry widget 
#			    names of the keyboard focus. An index
#			    of -1 indicates there is no focus.
#	pq_dict(numEntries) number of names in entry widget list
#
# ----------------------------------------------------------------

proc ChangeFocus direction {
    global pq_dict 

    case $direction {
	next {
	    incr pq_dict(index)
	    if { $pq_dict(index) == $pq_dict(numEntries) } {
		set pq_dict(index) 0
	    }
	}
	last {
	    set pq_dict(index) [expr $pq_dict(index)-1]
	    if { $pq_dict(index) < 0 } {
		set pq_dict(index) [expr $pq_dict(numEntries)-1]
	    }
	}
    }
    focus .[lindex $pq_dict(entryNames) $pq_dict(index)]_entry 
    update idletasks
    update
}


# ----------------------------------------------------------------
#
# ColorFocus --  
#	
#	Change background color of entry widget with active 
#	keyboard focus
#
# Arguments
#	w		    name of entry widget to change
#	bool		    either "on" or "off"; indicates if
#			    the focus highlight should turned on
#			    or off.
#
# Globals
#	pq_dict(entryNames) list of entry widget names
#	pq_dict(index)      current index in list of entry widget 
#			    names of the keyboard focus. An index
#			    of -1 indicates there is no focus.
#	pq_dict(visual)     either "mono" or "color"; indicates if
#			    color screen features can be used
#
# ----------------------------------------------------------------

proc ColorFocus { w bool } {
    global pq_dict 

    regexp {\.([a-z]+)_entry} $w dummy name
    if { $pq_dict(visual) == "color" && [info commands $w] == $w } {
	if { $bool == "on" } {
	    set pq_dict(index) [lsearch $pq_dict(entryNames) $name]
	    $w configure -background $pq_dict(focusHighlightColor) 
        } else {	
	    $w configure -background $pq_dict(normalBgColor) 
        }
    }
}

# ----------------------------------------------------------------
#
# Animate --  
#	
#	Activates/deactivates an animated bitmap and busy window.
#	A cancel button is mapped and raised so that it is unaffected
#	by the busy window.
#
# Arguments
#	option		    either "on", "off", or "continue"; 
#			    indicates whether animation should
#			    be started, stoped or continued.
#
# Globals
#	pq_dict(entryNames) list of entry widget names
#	pq_dict(index)      current index in list of entry widget 
#			    names of the keyboard focus. An index
#			    of -1 indicates there is no focus.
#	pq_dict(visual)     either "mono" or "color"; indicates if
#			    color screen features can be used
#
# ----------------------------------------------------------------

set pq_dict(curBitmap) 0
set pq_dict(lastBitmap) 0

proc Animate option {
    global pq_dict

    case $option {
	on {
	    busy hold . 
	    .status_label configure -text "Searching..."
	    global topLevel
	    table $topLevel .cancel_button 18,8 -anchor e -reqwidth .70i
	    winop raise .cancel_button
	    .quit_button configure -state disabled
	    .clear_button configure -state disabled
	    winop raise .cancel_button
	    set pq_dict(lastFocus) [focus]
            focus -force .
	    set pq_dict(curBitmap) $pq_dict(lastBitmap) 
	    update
	} 
	off {
	    table forget .cancel_button
	    .quit_button configure -state normal
	    .clear_button configure -state normal
	    .trademark configure -bitmap attlogo
	    set pq_dict(lastBitmap) $pq_dict(curBitmap)
	    set pq_dict(curBitmap) -1 
	    focus $pq_dict(lastFocus)
	    busy release .
	}
    }
    #
    # Continue with next bitmap
    #
    if { $pq_dict(curBitmap) >= 0 } {
	set bmap [format globe_%0.2d $pq_dict(curBitmap)] 
	.trademark configure -bitmap $bmap
	incr pq_dict(curBitmap)
	if { $pq_dict(curBitmap) >= 29 } {
	    set pq_dict(curBitmap) 0
	}
	after 100 Animate continue
    }
}

	
# --------------------------------------------------------------------------
#
# main body of program
#
frame .frame 
set topLevel .frame

label .overall_label -font  -*-Helvetica-Bold-R-*-*-18-*-*-*-*-*-*-*
label .name_label -font $pq_dict(titleFont)
label .tel_label  -font $pq_dict(titleFont)
label .addr_label -font $pq_dict(titleFont)
label .org_title -font $pq_dict(titleFont)
label .loc_title -font $pq_dict(titleFont)

foreach name $pq_dict(entryNames) {
    label .${name}_label 
    entry .${name}_entry
}
if [info exists env(POST_DEFAULTS)] {
    set pq_dict(defaults) [split $env(POST_DEFAULTS) ":"]
}
foreach i $pq_dict(defaults) {
    set i [split $i "="]
    if { [llength $i] == 2 } {
	set name [lindex $i 0]
	if { [lsearch $pq_dict(entryNames) $name] >= 0 } {
	    .${name}_entry insert 0 [lindex $i 1]
	}
    }
}
label .orders_title -text "Current Orders" \
	-font  -*-Helvetica-Bold-R-*-*-16-*-*-*-*-*-*-*

set font -*-Helvetica-Bold-R-*-*-14-*-*-*-*-*-*-*
button .clear_button -command ClearFields -font $font
button .quit_button -command { exit }  -font $font
button .search_button -text "Search" -font $font 

label .status_label
button .cancel_button -command StopQuery 
#-relief raised
label .trademark -bitmap attlogo 
text .text -yscrollcommand { .vscroll set } -state disabled 
scrollbar .vscroll -command { .text yview } 

table $topLevel \
    .overall_label	0,1 -cspan 10 -pady 5 \
    .name_label  	1,2 \
    .last_entry  	2,2 -cspan 2 \
    .first_entry 	2,4 \
    .middle_entry 	2,5 \
    .last_label 	3,2 \
    .first_label 	3,4 \
    .middle_label 	3,5 \
    .tel_label 		1,7 \
    .area_entry 	2,7 \
    .exch_entry 	2,8 \
    .ext_entry 		2,9 \
    .area_label 	3,7 \
    .exch_label  	3,8 \
    .ext_label 		3,9 \
    .org_title		4,2 \
    .com_entry  	5,2 \
    .org_entry 		5,3 \
    .tl_entry 		5,4 \
    .com_label 		6,2 \
    .org_label 		6,3 \
    .tl_label 		6,4 \
    .loc_title		4,7 \
    .room_entry 	5,7 \
    .oldloc_entry 	5,8 \
    .loc_entry 		5,9 \
    .room_label 	6,7 \
    .oldloc_label 	6,8 \
    .loc_label 		6,9 \
    .addr_label 	8,2 \
    .street_entry       9,2 \
    .ema_entry		9,7 -cspan 2  \
    .street_label       10,2 \
    .city_entry 	11,2 -cspan 2 \
    .state_entry 	11,4 \
    .zip_entry 		11,5 \
    .ema_label       	10,7 -cspan 2 \
    .city_label 	12,2 -cspan 2 \
    .state_label 	12,4 \
    .zip_label 		12,5 \
    .orders_title       16,2  -pady { 4 0 } \
    .text 		17,2 -cspan 8 -fill both -padx 2 \
    .vscroll 		17,10 -anchor center -fill both \
    .status_label	18,4 -cspan 6 -reqwidth {0 4i} \
    .search_button      18,3 -reqwidth .9i -anchor center -pady 8\
    .clear_button       18,5 -reqwidth .9i -anchor center \
    .quit_button        18,8 -reqwidth .9i -anchor center

eval table configure $topLevel \
	[info command .*_label] [info commands .*_title] \
	-anchor w -padx 2 -ipadx 2 
eval table configure $topLevel [info command .*_entry] \
	-fill both -padx 2 
eval table configure $topLevel .name_label .tel_label .org_title \
    .com_label .addr_label .street_entry .street_label \
    -cspan 3  
eval table configure $topLevel .last_entry .ema_entry .city_entry \
    .ema_label .city_label -cspan 2 

table configure $topLevel .overall_label -anchor center
table configure $topLevel r16 -pady { 5 5 } -resize both
table configure $topLevel c0 -width .vscroll
table configure $topLevel c0 c10 -resize none 
table configure $topLevel r3 r6 r10 r12 -resize none
table configure $topLevel r17 -height { 40 {} } 
table configure $topLevel r16 r18 -resize none
table configure $topLevel c6 -pad { 5 5 }

if { $topLevel == ".frame" } {
    table . \
	$topLevel 0,0 -fill both
}

bind .text <Button-2> {
    FillFields %x %y
    continue
}

bind .text <Motion> {
    HighlightText %x %y
    continue
}

bind .text <Enter> {
    set pq_dict(textIndex) {}
    HighlightText %x %y
    set info [.text get [list 0.0 linestart] [list 0.0 lineend]]
    if { $info != "" } {
        .status_label configure -text "Query individual with button-2"
    }
    continue
}

bind .text <Leave> {
    if { [busy isbusy .] != "." } {	
	.text tag delete highlight
	.status_label configure -text ""
    }
    continue
}


bind EntryFocus <Tab> {
    ChangeFocus next
    break
}

bind EntryFocus <Shift-Tab> {
    ChangeFocus last
    break
}

if { $pq_dict(visual) == "color" } {
    bind EntryFocus <FocusIn> { 
	ColorFocus %W on 
    }
    bind EntryFocus <FocusOut> { 
	ColorFocus %W off 
    }
}

bind Entry <Return> PostQuery

foreach name $pq_dict(entryNames) {
    set w .${name}_entry
    bindtags $w [list EntryFocus $w Entry all]
}

focus .last_entry