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
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
|
module GUI(GuiPort,Widget(..),Button,ConfigButton,
TextEditScroll,ListBoxScroll,CanvasScroll,EntryScroll,
ConfItem(..),ReconfigureItem(..),
Cmd,Command,Event(..),ConfCollection(..),MenuItem(..),
CanvasItem(..),WidgetRef, Style(..), Color(..),
col,row,matrix,
runGUI,runGUIwithParams,runInitGUI,runInitGUIwithParams,
runPassiveGUI,
runControlledGUI,runConfigControlledGUI,runInitControlledGUI,
runHandlesControlledGUI,runInitHandlesControlledGUI,
exitGUI,getValue,setValue,updateValue,appendValue,
appendStyledValue,addRegionStyle,removeRegionStyle,
getCursorPosition,seeText,
focusInput,addCanvas,setConfig,
getOpenFile,getOpenFileWithTypes,getSaveFile,getSaveFileWithTypes,
chooseColor,popupMessage,debugTcl) where
import Char (isSpace, toUpper)
import IO
import IOExts (connectToCommand)
import Read
import System (system)
import Unsafe (trace)
showTclTkErrors :: Bool
showTclTkErrors = False
showTclTkCommunication :: Bool
showTclTkCommunication = False
data GuiPort = GuiPort Handle
handleOf :: GuiPort -> Handle
handleOf (GuiPort h) = h
data Widget = PlainButton [ConfItem]
| Canvas [ConfItem]
| CheckButton [ConfItem]
| Entry [ConfItem]
| Label [ConfItem]
| ListBox [ConfItem]
| Message [ConfItem]
| [ConfItem]
| Scale Int Int [ConfItem]
| ScrollH WidgetRef [ConfItem]
| ScrollV WidgetRef [ConfItem]
| TextEdit [ConfItem]
| Row [ConfCollection] [Widget]
| Col [ConfCollection] [Widget]
| Matrix [ConfCollection] [[Widget]]
data ConfItem =
Active Bool
| Anchor String
| Background String
| Foreground String
| Handler Event (GuiPort -> IO [ReconfigureItem])
| Height Int
| CheckInit String
| CanvasItems [CanvasItem]
| List [String]
| [MenuItem]
| WRef WidgetRef
| Text String
| Width Int
| Fill | FillX | FillY
| TclOption String
isFill :: ConfItem -> Bool
isFill ci = case ci of Fill -> True
_ -> False
isFillX :: ConfItem -> Bool
isFillX ci = case ci of FillX -> True
_ -> False
isFillY :: ConfItem -> Bool
isFillY ci = case ci of FillY -> True
_ -> False
data ReconfigureItem =
WidgetConf WidgetRef ConfItem
| StreamHandler Handle (Handle -> GuiPort -> IO [ReconfigureItem])
| RemoveStreamHandler Handle
data Event = DefaultEvent
| MouseButton1
| MouseButton2
| MouseButton3
| KeyPress
| Return
deriving Eq
event2tcl :: Event -> String
event2tcl DefaultEvent = " default"
event2tcl MouseButton1 = " <ButtonPress-1>"
event2tcl MouseButton2 = " <ButtonPress-2>"
event2tcl MouseButton3 = " <ButtonPress-3>"
event2tcl KeyPress = " <KeyPress>"
event2tcl Return = " <Return>"
data ConfCollection =
CenterAlign | LeftAlign | RightAlign | TopAlign | BottomAlign
data =
MButton (GuiPort -> IO [ReconfigureItem]) String
| MSeparator
| String [MenuItem]
data CanvasItem = CLine [(Int,Int)] String
| CPolygon [(Int,Int)] String
| CRectangle (Int,Int) (Int,Int) String
| COval (Int,Int) (Int,Int) String
| CText (Int,Int) String String
data WidgetRef = WRefLabel String String
wRef2Label :: WidgetRef -> String
wRef2Label (WRefLabel var _) = wRefname2Label var
wRef2Wtype :: WidgetRef -> String
wRef2Wtype (WRefLabel _ wtype) = wtype
data Style = Bold | Italic | Underline | Fg Color | Bg Color
data Color
= Black | Blue | Brown | Cyan | Gold | Gray | Green | Magenta | Navy | Orange
| Pink | Purple | Red | Tomato| Turquoise | Violet | White | Yellow
showStyle :: Style -> String
showStyle Bold = "bold"
showStyle Italic = "italic"
showStyle Underline = "underline"
showStyle (Fg fg) = dropSpaces $ showColor fg
showStyle (Bg bg) = camelCase $ showColor bg
dropSpaces :: String -> String
dropSpaces = filter (not . isSpace)
camelCase :: String -> String
camelCase [] = []
camelCase (c:cs) = toUpper c : cc cs
where
cc "" = ""
cc [x] = [x]
cc (x:y:xs)
| isSpace x = toUpper y : cc xs
| otherwise = x : cc (y:xs)
showColor :: Color -> String
showColor Black = "black"
showColor Blue = "blue"
showColor Brown = "brown"
showColor Cyan = "cyan"
showColor Gold = "gold"
showColor Gray = "gray"
showColor Green = "forest green"
showColor Magenta = "magenta"
showColor Navy = "navy"
showColor Orange = "orange"
showColor Pink = "pink"
showColor Purple = "purple"
showColor Red = "red"
showColor Tomato = "tomato"
showColor Turquoise = "turquoise"
showColor Violet = "violet"
showColor White = "white"
showColor Yellow = "yellow"
row :: [Widget] -> Widget
row = Row []
col :: [Widget] -> Widget
col = Col []
matrix :: [[Widget]] -> Widget
matrix = Matrix []
type EventHandler = (String,Event,GuiPort -> IO [ReconfigureItem])
widget2tcl :: String -> Widget -> (String,[EventHandler])
widget2tcl label (PlainButton confs) =
("button "++label++"\n" ++
label++" configure -textvariable "++refname++"\n" ++
"proc getvar"++refname++" {} { global "++refname++" ; return $"
++refname++" }\n" ++
"proc setvar"++refname++" {s} { global "++refname++" ; set "
++refname++" $s}\n" ++
conf_tcl , conf_evs)
where refname = wLabel2Refname label
(conf_tcl,conf_evs) = configs2tcl "button" label confs
widget2tcl label (Canvas confs) =
("canvas "++label++"\n"
++"set "++refname++"_scrollx 100\n"
++"set "++refname++"_scrolly 100\n"
++"proc set"++refname++"_scrollx {x}"
++" { global "++refname++"_scrollx ; global "++refname++"_scrolly ;\n"
++" if {$"++refname++"_scrollx < $x} {set "++refname++"_scrollx $x ;\n"
++" "++label++" configure -scrollregion [list 0 0 $"
++refname++"_scrollx $"++refname++"_scrolly]}}\n"
++"proc set"++refname++"_scrolly {y}"
++" { global "++refname++"_scrollx ; global "++refname++"_scrolly ;\n"
++" if {$"++refname++"_scrolly < $y} {set "++refname++"_scrolly $y ;\n"
++" "++label++" configure -scrollregion [list 0 0 $"
++refname++"_scrollx $"++refname++"_scrolly]}}\n"
++ conf_tcl , conf_evs)
where refname = wLabel2Refname label
(conf_tcl,conf_evs) = configs2tcl "canvas" label confs
widget2tcl label (CheckButton confs) =
("checkbutton "++label++"\n" ++
label++" configure -variable "++refname++"\n" ++
"proc getvar"++refname++" {} { global "++refname++" ; return $"
++refname++" }\n" ++
"proc setvar"++refname++" {s} { global "++refname++" ; set "
++refname++" $s}\n" ++
conf_tcl , conf_evs)
where refname = wLabel2Refname label
(conf_tcl,conf_evs) = configs2tcl "checkbutton" label confs
widget2tcl label (Entry confs) = case configs2tcl "entry" label confs of
(conf_tcl,conf_evs) ->
("entry "++label++"\n" ++
label++" configure -textvariable "++refname++"\n" ++
"proc getvar"++refname++" {} { global "++refname++" ; return $"
++refname++" }\n" ++
"proc setvar"++refname++" {s} { global "++refname++" ; set "
++refname++" $s}\n" ++
conf_tcl , conf_evs)
where
refname = wLabel2Refname label
widget2tcl label (Label confs) =
("label "++label++"\n" ++
label++" configure -textvariable "++refname++"\n" ++
"proc getvar"++refname++" {} { global "++refname++" ; return $"
++refname++" }\n" ++
"proc setvar"++refname++" {s} { global "++refname++" ; set "
++refname++" $s}\n" ++
conf_tcl , conf_evs)
where refname = wLabel2Refname label
(conf_tcl,conf_evs) = configs2tcl "label" label confs
widget2tcl label (ListBox confs) =
("listbox "++label++" -exportselection false\n" ++
"proc getvar"++refname++" {} { return ["++label++" curselection]}\n" ++
"proc setvar"++refname++" {s} { "++label++" selection clear 0 end ; "
++label++" selection set $s ; "++label++" see $s}\n" ++
conf_tcl , conf_evs)
where refname = wLabel2Refname label
(conf_tcl,conf_evs) = configs2tcl "listbox" label confs
widget2tcl label (Message confs) =
("message "++label++"\n" ++
label++" configure -textvariable "++refname++"\n" ++
"proc getvar"++refname++" {} { global "++refname++" ; return $"
++refname++" }\n" ++
"proc setvar"++refname++" {s} { global "++refname++" ; set "
++refname++" $s}\n" ++
conf_tcl , conf_evs)
where refname = wLabel2Refname label
(conf_tcl,conf_evs) = configs2tcl "message" label confs
widget2tcl label (MenuButton confs) =
("menubutton "++label++"\n" ++
label++" configure -textvariable "++refname++"\n" ++
"proc getvar"++refname++" {} { global "++refname++" ; return $"
++refname++" }\n" ++
"proc setvar"++refname++" {s} { global "++refname++" ; set "
++refname++" $s}\n" ++
conf_tcl , conf_evs)
where refname = wLabel2Refname label
(conf_tcl,conf_evs) = configs2tcl "menubutton" label confs
widget2tcl label (Scale from to confs) =
("scale "++label++" -from "++show from++" -to "++show to++
" -orient horizontal -length 200\n" ++
"variable "++refname++" "++show from++"\n"++
label++" configure -variable "++refname++"\n" ++
"proc getvar"++refname++" {} { global "++refname++" ; return $"
++refname++" }\n" ++
"proc setvar"++refname++" {s} { global "++refname++" ; set "
++refname++" $s}\n" ++
conf_tcl , conf_evs)
where refname = wLabel2Refname label
(conf_tcl,conf_evs) = configs2tcl "scale" label confs
widget2tcl label (ScrollH widget confs) =
("scrollbar "++label++" -orient horizontal -command {"++
wRef2Label widget++" xview}\n" ++
wRef2Label widget++" configure -xscrollcommand {"++label++" set}\n" ++
conf_tcl , conf_evs)
where (conf_tcl,conf_evs) = configs2tcl "scrollbar" label confs
widget2tcl label (ScrollV widget confs) =
("scrollbar "++label++" -command {"++wRef2Label widget++" yview}\n" ++
wRef2Label widget++" configure -yscrollcommand {"++label++" set}\n" ++
conf_tcl , conf_evs)
where (conf_tcl,conf_evs) = configs2tcl "scrollbar" label confs
widget2tcl label (TextEdit confs) =
("text "++label++"\n"++
"proc getvar"++refname++" {} { "++label++" get 1.0 {end -1 chars}}\n" ++
"proc setvar"++refname++" {s} { "++label++" delete 1.0 end ; "
++label++" insert 1.0 $s}\n" ++
conf_tcl ++
enableFont "italic" "-slant italic" ++
enableFont "underline" "-underline on" ++
enableFont "bold" "-weight bold" ++
unlines (map enableForeground colors) ++
unlines (map enableBackground colors)
, conf_evs)
where refname = wLabel2Refname label
(conf_tcl,conf_evs) = configs2tcl "textedit" label confs
enableFont tag style
= label ++ " tag configure " ++ tag ++ " -font \"[font actual [" ++
label ++ " cget -font]] " ++ style ++ "\"\n"
colors = map showColor
[Black,Blue,Brown,Cyan,Gold,Gray,Green,Magenta,Navy,Orange,Pink
,Purple,Red,Tomato,Turquoise,Violet,White,Yellow]
enableForeground color
= label ++ " tag configure " ++ dropSpaces color ++
" -foreground \"" ++ color ++ "\""
enableBackground color
= label++" tag configure "++ camelCase color ++
" -background \"" ++ color ++ "\""
widget2tcl label (Row confs ws) = case widgets2tcl label 97 ws of
(wstcl,wsevs) ->
((if label=="" then "wm resizable . " ++ resizeBehavior wsGridInfo++"\n"
else "frame "++label++"\n") ++
wstcl ++
(snd $ foldl (\ (n,g) l->(n+1,g++"grid "++label++labelIndex2string (96+n)
++" -row 1 -column "++show n++" "
++confCollection2tcl confs
++gridInfo2tcl n label "col" l ++ "\n"))
(1,"")
wsGridInfo),
wsevs)
where
wsGridInfo = widgets2gridinfo ws
widget2tcl label (Col confs ws) = case widgets2tcl label 97 ws of
(wstcl,wsevs) ->
((if label=="" then "wm resizable . " ++ resizeBehavior wsGridInfo++"\n"
else "frame "++label++"\n") ++
wstcl ++
(snd $ foldl (\ (n,g) l->(n+1,g++"grid "++label
++labelIndex2string (96+n)
++" -column 1 -row "++show n++" "
++confCollection2tcl confs
++gridInfo2tcl n label "row" l ++ "\n"))
(1,"")
(widgets2gridinfo ws)),
wsevs)
where
wsGridInfo = widgets2gridinfo ws
widget2tcl label (Matrix confs ws) =
((if label == "" then "wm resizable . " ++ resizeBehavior wsGridInfo++"\n"
else "frame "++label++"\n") ++ wstcl,wsevs)
where
(wstcl,wsevs) = matrix2tcl 97 1 label confs ws
wsGridInfo = concatMap widgets2gridinfo ws
matrix2tcl :: Int -> Int -> String -> [ConfCollection]
-> [[Widget]] -> (String,[EventHandler])
matrix2tcl _ _ _ _ [] = ("",[])
matrix2tcl nextLabel n label confs (ws:wss) =
(wstcl ++
(snd $ foldl (\ (m,g) l->(m+1,g++"grid "++label
++labelIndex2string (nextLabel+m-1)
++" -row "++show n ++" -column "++show m++" "
++confCollection2tcl confs
++gridInfo2tcl m label "col" l ++ "\n"))
(1,"")
wsGridInfo) ++ wsstcl, wsevs++wssevs)
where (wsstcl,wssevs) = matrix2tcl (nextLabel+length ws) (n+1) label confs wss
(wstcl,wsevs) = widgets2tcl label nextLabel ws
wsGridInfo = widgets2gridinfo ws
resizeBehavior :: [[ConfItem]] -> String
resizeBehavior ws = if any (any isFill) ws then "1 1" else
if any (any isFillX) ws then "1 0" else
if any (any isFillY) ws then "0 1" else "0 0"
widgets2gridinfo :: [Widget] -> [[ConfItem]]
widgets2gridinfo [] = []
widgets2gridinfo (w:ws) =
(tclfill ++ getConfs w): widgets2gridinfo ws
where
fillx = hasFillX w
filly = hasFillY w
flexible = hasFill w
tclfill = if flexible || (fillx && filly) then [Fill] else
if fillx then [FillX] else
if filly then [FillY] else []
hasFillX :: Widget -> Bool
hasFillX w = any isFillX (propagateFillInfo w)
hasFillY :: Widget -> Bool
hasFillY w = any isFillY (propagateFillInfo w)
hasFill :: Widget -> Bool
hasFill w = any isFill (propagateFillInfo w)
isFillInfo :: ConfItem -> Bool
isFillInfo conf = case conf of
FillX -> True
FillY -> True
Fill -> True
_ -> False
propagateFillInfo :: Widget -> [ConfItem]
propagateFillInfo (PlainButton _) = []
propagateFillInfo (Canvas confs) = filter isFillInfo confs
propagateFillInfo (CheckButton _) = []
propagateFillInfo (Entry confs) = filter isFillInfo confs
propagateFillInfo (Label confs) = filter isFillInfo confs
propagateFillInfo (ListBox confs) = filter isFillInfo confs
propagateFillInfo (Message confs) = filter isFillInfo confs
propagateFillInfo (MenuButton _) = []
propagateFillInfo (Scale _ _ confs) = filter isFillInfo confs
propagateFillInfo (ScrollV _ _) = []
propagateFillInfo (ScrollH _ _) = []
propagateFillInfo (TextEdit confs) = filter isFillInfo confs
propagateFillInfo (Row _ ws) = concatMap propagateFillInfo ws
propagateFillInfo (Col _ ws) = concatMap propagateFillInfo ws
propagateFillInfo (Matrix _ wss) = concatMap (concatMap propagateFillInfo) wss
getConfs :: Widget -> [ConfItem]
getConfs (PlainButton confs) = confs
getConfs (Canvas confs) = filter isFillInfo confs
getConfs (CheckButton confs) = confs
getConfs (Entry confs) = filter isFillInfo confs
getConfs (Label confs) = filter isFillInfo confs
getConfs (ListBox confs) = filter isFillInfo confs
getConfs (Message confs) = filter isFillInfo confs
getConfs (MenuButton confs) = confs
getConfs (Scale _ _ confs) = filter isFillInfo confs
getConfs (ScrollV _ confs) = confs
getConfs (ScrollH _ confs) = confs
getConfs (TextEdit confs) = filter isFillInfo confs
getConfs (Row _ _) = []
getConfs (Col _ _) = []
getConfs (Matrix _ _) = []
confCollection2tcl :: [ConfCollection] -> String
confCollection2tcl [] = ""
confCollection2tcl (CenterAlign : confs) = confCollection2tcl confs
confCollection2tcl (LeftAlign : confs) = "-sticky w " ++ confCollection2tcl confs
confCollection2tcl (RightAlign : confs) = "-sticky e " ++ confCollection2tcl confs
confCollection2tcl (TopAlign : confs) = "-sticky n " ++ confCollection2tcl confs
confCollection2tcl (BottomAlign : confs) = "-sticky s " ++ confCollection2tcl confs
gridInfo2tcl :: Int -> String -> String -> [ConfItem] -> String
gridInfo2tcl n label "col" confs
| any isFill confs || (any isFillX confs && any isFillY confs)
= "-sticky nsew \ngrid columnconfigure "++lab++" "++show n++
" -weight 1\ngrid rowconfigure "++lab++" 1 -weight 1"
| any isFillX confs = "-sticky we \ngrid columnconfigure "++lab++
" "++show n++" -weight 1"
| any isFillY confs = "-sticky ns \ngrid rowconfigure "++lab++
" 1 -weight 1"
| otherwise = ""
where
lab = if label=="" then "." else label
gridInfo2tcl n label "row" confs
| any isFill confs || (any isFillX confs && any isFillY confs)
= "-sticky nsew \ngrid columnconfigure "++lab++
" 1 -weight 1\ngrid rowconfigure "++lab++" "++show n++" -weight 1"
| any isFillX confs = "-sticky we \ngrid columnconfigure "++lab++
" 1 -weight 1"
| any isFillY confs = "-sticky ns \ngrid rowconfigure "++lab++
" "++show n++" -weight 1"
| otherwise = ""
where
lab = if label=="" then "." else label
config2tcl :: String -> String -> ConfItem -> String
config2tcl wtype label (Active active) =
if wtype=="button" || wtype=="checkbutton" || wtype=="entry" ||
wtype=="menubutton" || wtype=="scale" || wtype=="textedit"
then if active
then label++" configure -state normal\n"
else label++" configure -state disabled\n"
else trace ("WARNING: GUI.Active ignored for widget type \""++wtype++"\"\n") ""
config2tcl wtype label (Anchor align) =
if wtype=="button" || wtype=="checkbutton" || wtype=="label" ||
wtype=="menubutton" || wtype=="message"
then label++" configure -anchor "++align++"\n"
else trace ("WARNING: GUI.Anchor ignored for widget type \""++wtype++"\"\n") ""
config2tcl _ label (Background color)
= label++" configure -background \""++color++"\"\n"
config2tcl _ label (Foreground color)
= label++" configure -foreground \""++color++"\"\n"
config2tcl wtype label (Handler evtype _)
| evtype == DefaultEvent
= if wtype=="button"
then label++" configure -command"++writeEvent else
if wtype=="checkbutton"
then label++" configure -command"++writeEvent else
if wtype=="entry"
then "bind "++label++" <Return>"++writeEvent else
if wtype=="scale"
then label++" configure -command { putlabel \""++label++event2tcl evtype++"\"}\n" else
if wtype=="listbox"
then "bind "++label++" <ButtonPress-1>"++writeEvent else
if wtype=="textedit"
then "bind "++label++" <KeyPress>"++writeEvent
else
trace ("WARNING: GUI.Handler with DefaultEvent ignored for widget type \""++
wtype++"\"\n") ""
| otherwise
= "bind "++label++event2tcl evtype++writeEvent
where
writeEvent = " { writeevent \""++label++event2tcl evtype++"\" }\n"
config2tcl wtype label (Height h)
| wtype=="entry" || wtype=="message" || wtype=="menubutton" ||
wtype=="scale"
= trace ("WARNING: GUI.Height ignored for widget type \""++wtype++"\"\n") ""
| wtype=="canvas"
= label++" configure -height "++show h++"\n"++
"set"++wLabel2Refname label++"_scrolly "++show h++"\n"
| otherwise
= label++" configure -height "++show h++"\n"
config2tcl wtype label (CheckInit s)
| wtype=="checkbutton"
= "setvar"++wLabel2Refname label++" \""++s++"\"\n"
| otherwise
= trace ("WARNING: GUI.CheckInit ignored for widget type \""++wtype++"\"\n") ""
config2tcl wtype label (CanvasItems items)
| wtype=="canvas" = canvasItems2tcl label items
| otherwise
= trace ("WARNING: GUI.CanvasItems ignored for widget type \""++wtype++"\"\n") ""
config2tcl wtype label (List l)
| wtype=="listbox"
= label++" delete 0 end\n" ++ setlistelems (ensureSpine l)
| otherwise
= trace ("WARNING: GUI.List ignored for widget type \""++wtype++"\"\n") ""
where
setlistelems [] = ""
setlistelems (e:es) = label++" insert end \""++escapeTcl e++"\"\n"++
setlistelems es
config2tcl wtype label (Menu l)
| wtype=="menubutton"
= label++" configure -menu "++label++".a\n" ++
menu2tcl (label++".a") l
| otherwise
= trace ("WARNING: GUI.Menu ignored for widget type \""++wtype++"\"\n") ""
config2tcl wtype label (WRef r)
| r =:= WRefLabel (wLabel2Refname label) wtype = ""
config2tcl wtype label (Text s)
| wtype=="canvas"
= trace "WARNING: GUI.Text ignored for Canvas\n" ""
| wtype=="checkbutton"
= label++" configure -text \""++escapeTcl s++"\"\n"
| otherwise
= "setvar"++wLabel2Refname label++" \""++escapeTcl s++"\"\n"
config2tcl wtype label (Width w)
| wtype=="canvas"
= label++" configure -width "++show w++"\n"++
"set"++wLabel2Refname label++"_scrollx "++show w++"\n"
| otherwise = label++" configure -width "++show w++"\n"
config2tcl _ _ Fill = ""
config2tcl _ _ FillX = ""
config2tcl _ _ FillY = ""
config2tcl _ label (TclOption tcloptions)
= label++" configure "++tcloptions++"\n"
menu2tcl :: String -> [MenuItem] -> String
label menu =
"menu "++label++" -tearoff false\n" ++
label++" delete 0 end\n" ++
setmenuelems menu 0
where [] _ = ""
setmenuelems (MButton _ text : es) i =
label++" add command -label \""++escapeTcl text++
"\" -command { writeevent \""++label++"."++show i++
event2tcl DefaultEvent++"\" }\n"++
setmenuelems es (i+1)
setmenuelems (MSeparator : es) i =
label++" add separator\n"++ setmenuelems es (i+1)
setmenuelems (MMenuButton text l : es) i =
label++" add cascade -label \""++escapeTcl text++
"\" -menu "++label++labelIndex2string (i+97)++"\n"++
menu2tcl (label++labelIndex2string (i+97)) l ++
setmenuelems es (i+1)
configs2handler :: String -> [ConfItem] -> [EventHandler]
configs2handler _ [] = []
configs2handler label (confitem : cs) = case confitem of
Handler evtype handler -> (label,evtype,handler) : configs2handler label cs
Menu m -> menu2handler (label++".a") m 0 ++ configs2handler label cs
_ -> configs2handler label cs
menu2handler :: String -> [MenuItem] -> Int -> [(String,Event,GuiPort
-> IO [ReconfigureItem])]
menu2handler _ [] _ = []
menu2handler label (MButton handler _ : ms) i =
(label++"."++show i, DefaultEvent, handler) : menu2handler label ms (i+1)
menu2handler label (MSeparator : ms) i = menu2handler label ms (i+1)
menu2handler label (MMenuButton _ menu : ms) i =
menu2handler (label++labelIndex2string (i+97)) menu 0 ++
menu2handler label ms (i+1)
configs2tcl :: String -> String -> [ConfItem]
-> (String,[EventHandler])
configs2tcl wtype label confs =
(concatMap (config2tcl wtype label) confs,
configs2handler label confs)
canvasItems2tcl :: String -> [CanvasItem] -> String
canvasItems2tcl _ [] = ""
canvasItems2tcl label (i:is) =
canvasItem2tcl label i ++ canvasItems2tcl label is
canvasItem2tcl :: String -> CanvasItem -> String
canvasItem2tcl label (CLine coords opts) =
label++ " create line "++showCoords coords++" "++opts++"\n"++
concatMap (\(x,_)->"set"++refname++"_scrollx "++show x++"\n") coords ++
concatMap (\(_,y)->"set"++refname++"_scrolly "++show y++"\n") coords
where refname = wLabel2Refname label
canvasItem2tcl label (CPolygon coords opts) =
label++ " create polygon "++showCoords coords++" "++opts++"\n"++
concatMap (\(x,_)->"set"++refname++"_scrollx "++show x++"\n") coords ++
concatMap (\(_,y)->"set"++refname++"_scrolly "++show y++"\n") coords
where refname = wLabel2Refname label
canvasItem2tcl label (CRectangle (x1,y1) (x2,y2) opts) =
label++ " create rectangle "++showCoords [(x1,y1),(x2,y2)]++" "++opts++"\n"++
concatMap (\x->"set"++refname++"_scrollx "++show x++"\n") [x1,x2] ++
concatMap (\y->"set"++refname++"_scrolly "++show y++"\n") [y1,y2]
where refname = wLabel2Refname label
canvasItem2tcl label (COval (x1,y1) (x2,y2) opts) =
label++ " create oval "++showCoords [(x1,y1),(x2,y2)]++" "++opts++"\n"++
concatMap (\x->"set"++refname++"_scrollx "++show x++"\n") [x1,x2] ++
concatMap (\y->"set"++refname++"_scrolly "++show y++"\n") [y1,y2]
where refname = wLabel2Refname label
canvasItem2tcl label (CText (x,y) text opts) =
label++ " create text "++show x++" "++show y++
" -text \""++escapeTcl text++"\" "++opts++"\n"++
"set"++refname++"_scrollx "++show (x+5*(length text))++"\n"++
"set"++refname++"_scrolly "++show y++"\n"
where refname = wLabel2Refname label
showCoords :: [(Int,Int)] -> String
showCoords [] = ""
showCoords ((x,y):cs) = show x ++ " " ++ show y ++ " " ++ showCoords cs
wLabel2Refname :: String -> String
wLabel2Refname l = map (\c -> if c=='.' then '_' else c) l
wRefname2Label :: String -> String
wRefname2Label l = map (\c -> if c=='_' then '.' else c) l
widgets2tcl :: String -> Int -> [Widget]
-> (String,[(String,Event,GuiPort -> IO [ReconfigureItem])])
widgets2tcl _ _ [] = ("",[])
widgets2tcl lab nr (w:ws) =
case widget2tcl (lab++labelIndex2string nr) w of
(wtcl,wevs) -> case widgets2tcl lab (nr+1) ws of
(wstcl,wsevs) -> (wtcl ++ wstcl, wevs ++ wsevs)
labelIndex2string :: Int -> String
labelIndex2string li = if li<123 then ['.',chr li]
else ['.','z'] ++ show (li-122)
mainWidget2tcl :: Widget -> (String,[EventHandler])
mainWidget2tcl widget =
("proc writeevent {l} { puts \":EVT$l\" }\n" ++
"proc putlabel {l v} { writeevent $l }\n" ++
"proc putvar {var value} { puts \":VAR$var%[string length $value]*$value\"}\n" ++
widgettcl, evs)
where (widgettcl,evs) = widget2tcl "" widget
debugTcl :: Widget -> IO ()
debugTcl widget = putStrLn (fst (mainWidget2tcl widget))
reportTclTk :: String -> IO ()
reportTclTk s =
if showTclTkCommunication then hPutStrLn stdout s else done
reportTclTkError :: String -> IO ()
reportTclTkError s =
if showTclTkErrors then hPutStrLn stderr s else done
openGuiPort :: String -> IO GuiPort
openGuiPort wishparams = do
exwish <- system "which wish > /dev/null"
when (exwish>0) $
error "Windowing shell `wish' not found. Please install package `tk'!"
reportTclTk ("OPEN CONNECTION TO WISH WITH PARAMS: "++wishparams)
tclhdl <- connectToCommand ("wish "++wishparams)
return (GuiPort tclhdl)
send2tk :: String -> GuiPort -> IO ()
send2tk s (GuiPort tclhdl) = do
reportTclTk ("GUI SEND: "++s)
hPutStrLn tclhdl s
hFlush tclhdl
receiveFromTk :: GuiPort -> IO String
receiveFromTk (GuiPort tclhdl) = do
s <- hGetLine tclhdl
reportTclTk ("GUI RECEIVED: "++s)
return s
choiceOverHandles :: [Handle] -> IO (Int,Handle)
choiceOverHandles hdls = do
i <- hWaitForInputs hdls (-1)
return (i,hdls!!i)
closeGuiPort :: GuiPort -> IO ()
closeGuiPort (GuiPort tclhdl) = do
reportTclTk "CLOSE CONNECTION TO WISH"
hClose tclhdl
openWish :: String -> String -> IO GuiPort
openWish title params = do
gport <- openGuiPort params
send2tk ("wm title . \""++title++"\"\n") gport
return gport
runPassiveGUI :: String -> Widget -> IO GuiPort
runPassiveGUI title widget = do
gport <- openWish (escapeTcl title) ""
send2tk (fst (mainWidget2tcl widget)) gport
return gport
runGUI :: String -> Widget -> IO ()
runGUI title widget = runInitGUIwithParams title "" widget (const (return []))
runGUIwithParams :: String -> String -> Widget -> IO ()
runGUIwithParams title params widget =
runInitGUIwithParams title params widget (const (return []))
runInitGUI :: String -> Widget -> (GuiPort -> IO [ReconfigureItem]) -> IO ()
runInitGUI title widget initcmd = do
gport <- openWish (escapeTcl title) ""
initSchedule widget gport [] initcmd
runInitGUIwithParams :: String -> String -> Widget
-> (GuiPort -> IO [ReconfigureItem]) -> IO ()
runInitGUIwithParams title params widget initcmd = do
gport <- openWish (escapeTcl title) params
initSchedule widget gport [] initcmd
runControlledGUI :: String -> (Widget, String -> GuiPort -> IO ()) -> Handle -> IO ()
runControlledGUI title (widget,exth) hdl =
runInitControlledGUI title (widget,exth) (\_->return []) hdl
runConfigControlledGUI :: String ->
(Widget, String -> GuiPort -> IO [ReconfigureItem]) -> Handle -> IO ()
runConfigControlledGUI title (widget,exth) hdl = do
gport <- openWish (escapeTcl title) ""
initSchedule widget gport [msgToIOHandler exth hdl] (\_->return [])
runInitControlledGUI :: String -> (Widget, String -> GuiPort -> IO ()) ->
(GuiPort -> IO [ReconfigureItem]) -> Handle -> IO ()
runInitControlledGUI title (widget,exth) initcmd hdl = do
gport <- openWish (escapeTcl title) ""
initSchedule widget gport
[msgToIOHandler (\ x y -> exth x y >> return []) hdl]
initcmd
msgToIOHandler :: (String -> GuiPort -> IO [ReconfigureItem]) -> Handle -> ExternalHandler
msgToIOHandler hdler hdl = IOHandler (hdl,\ _ hd gp -> do
l <- hGetLine hd
cfs <- hdler l gp
return (Just cfs))
runHandlesControlledGUI :: String
-> (Widget,[Handle -> GuiPort -> IO [ReconfigureItem]])
-> [Handle] -> IO ()
runHandlesControlledGUI title widgethandlers handles =
runInitHandlesControlledGUI title widgethandlers (\_->return []) handles
runInitHandlesControlledGUI :: String
-> (Widget,[Handle -> GuiPort -> IO [ReconfigureItem]])
-> (GuiPort -> IO [ReconfigureItem]) -> [Handle] -> IO ()
runInitHandlesControlledGUI title (widget,handlers) initcmd handles =
do gport <- openWish (escapeTcl title) ""
initSchedule widget gport
(map IOHandler (zip handles (map toIOHandler handlers)))
initcmd
data ExternalHandler =
IOHandler (Handle,
[EventHandler] -> Handle -> GuiPort -> IO (Maybe [ReconfigureItem]))
initSchedule :: Widget -> GuiPort -> [ExternalHandler] ->
(GuiPort -> IO [ReconfigureItem]) -> IO ()
initSchedule widget gport exths initcmd = do
send2tk tcl gport
confs <- initcmd gport
configAndProceedScheduler evs gport
(IOHandler (handleOf gport,processTkEvent) : exths)
(Just confs)
where
(tcl,evs) = mainWidget2tcl widget
scheduleTkEvents :: [EventHandler] -> GuiPort -> [ExternalHandler] -> IO ()
scheduleTkEvents evs gport exthds = do
(i,hdl) <- choiceOverHandles (map fst iohandlers)
if i<0 then done
else snd (iohandlers!!i) evs hdl gport >>=
configAndProceedScheduler evs gport exthds
where
iohandlers = map (\ (IOHandler x) -> x) exthds
processTkEvent :: [EventHandler] -> Handle -> GuiPort
-> IO (Maybe [ReconfigureItem])
processTkEvent evs str gport =
hIsEOF str >>= \eof ->
if eof then return Nothing
else do
ans <- hGetLine str
reportTclTk ("GUI RECEIVED: "++ans)
if (take 4 ans)==":EVT"
then do let (evwidget,evtype) = break (==' ') (drop 4 ans)
configs <- selectEvent evwidget evtype evs gport
return (Just configs)
else do reportTclTkError("ERROR in scheduleTkEvents: Received: "++ans++"\n")
return (Just [])
configAndProceedScheduler :: [(String,Event,GuiPort -> IO [ReconfigureItem])]
-> GuiPort -> [ExternalHandler] -> Maybe [ReconfigureItem] -> IO ()
configAndProceedScheduler _ gport _ Nothing = closeGuiPort gport
configAndProceedScheduler evs gport exths (Just configs) = do
mapIO_ reconfigureGUI configs
scheduleTkEvents (configEventHandlers evs configs) gport
(configStreamHandlers exths configs)
where
reconfigureGUI (WidgetConf r ci) = setConfig r ci gport
reconfigureGUI (StreamHandler _ _) = done
reconfigureGUI (RemoveStreamHandler _) = done
configEventHandlers
:: [(String,Event,GuiPort -> IO [ReconfigureItem])]
-> [ReconfigureItem]
-> [(String,Event,GuiPort -> IO [ReconfigureItem])]
configEventHandlers evs [] = evs
configEventHandlers evs (WidgetConf ref confitem : confitems) =
let label = wRef2Label ref in
case confitem of
Handler evtype handler ->
configEventHandlers ((label,evtype,handler) :
(filter (\ (l,t,_)->l/=label || t/=evtype) evs))
confitems
_ -> configEventHandlers evs confitems
configEventHandlers evs (StreamHandler _ _ : confitems) =
configEventHandlers evs confitems
configEventHandlers evs (RemoveStreamHandler _ : confitems) =
configEventHandlers evs confitems
configStreamHandlers
:: [ExternalHandler] -> [ReconfigureItem] -> [ExternalHandler]
configStreamHandlers exths [] = exths
configStreamHandlers exths (WidgetConf _ _ : confitems) =
configStreamHandlers exths confitems
configStreamHandlers exths (StreamHandler handle handler : confitems) =
configStreamHandlers
(exths++[IOHandler (handle,\_ hdl gp -> handler hdl gp >>= return . Just)])
confitems
configStreamHandlers exths (RemoveStreamHandler handle : confitems) =
configStreamHandlers (removeHandler handle exths) confitems
where
removeHandler _ [] = []
removeHandler h (IOHandler (h',hr) : ehs) =
if h==h' then removeHandler h ehs
else IOHandler (h',hr) : removeHandler h ehs
toIOHandler :: (a -> b -> IO c) -> _ -> a -> b -> IO (Maybe c)
toIOHandler handler _ handle gport = handler handle gport >>= return . Just
setConfig :: WidgetRef -> ConfItem -> GuiPort -> IO ()
setConfig (WRefLabel var wtype) confitem gport =
send2tk (config2tcl wtype (wRefname2Label var) confitem) gport
selectEvent :: String -> String -> [(String,Event,a -> IO [b])] -> a -> IO [b]
selectEvent evwidget evtype [] _ =
trace ("Internal error in GUI.curry: no handler for event: "++
evwidget++evtype++"\n")
(return [])
selectEvent evwidget evtype ((ev,hevtype,handler):evs) gport =
if evwidget==ev && event2tcl hevtype == evtype
then handler gport
else selectEvent evwidget evtype evs gport
getWidgetVar :: String -> GuiPort -> IO String
getWidgetVar var gport = do
send2tk ("putvar "++var++" [getvar"++var++"]") gport
getWidgetVarMsg var gport
getWidgetVarMsg :: String -> GuiPort -> IO String
getWidgetVarMsg var gport =
receiveFromTk gport >>= \varmsg ->
if takeWhile (/='%') varmsg == ":VAR"++var
then let (len,value) = break (=='*') (tail (dropWhile (/='%') varmsg))
in getWidgetVarValue (readNat len) (tail value) gport
else do reportTclTkError ("ERROR in getWidgetVar \""++var++"\": Received: "
++varmsg++"\n")
getWidgetVarMsg var gport
getWidgetVarValue :: Int -> String -> GuiPort -> IO String
getWidgetVarValue len valmsg gport =
if length valmsg < len
then do remvalmsg <- getWidgetVarRemValue (len - (length valmsg + 1)) gport
return (valmsg++"\n"++remvalmsg)
else do if length valmsg > len
then reportTclTkError ("ERROR in getWidgetVar: answer too short\n")
else done
return valmsg
getWidgetVarRemValue :: Int -> GuiPort -> IO String
getWidgetVarRemValue len gport =
receiveFromTk gport >>= \valmsg ->
if length valmsg < len
then getWidgetVarRemValue (len - (length valmsg + 1)) gport >>= \remvalmsg ->
return (valmsg++"\n"++remvalmsg)
else do if length valmsg > len
then reportTclTkError ("ERROR in getWidgetVar: answer too short\n")
else done
return valmsg
escapeTcl :: String -> String
escapeTcl [] = []
escapeTcl (c:s) = if c=='[' || c==']' || c=='$' || c=='"' || c=='\\'
then '\\':c:escapeTcl s
else c:escapeTcl s
exitGUI :: GuiPort -> IO ()
exitGUI gport = send2tk "exit" gport
getValue :: WidgetRef -> GuiPort -> IO String
getValue (WRefLabel var _) gport =
getWidgetVar var gport
setValue :: WidgetRef -> String -> GuiPort -> IO ()
setValue (WRefLabel var _) val gport =
send2tk ("setvar"++var++" \""++escapeTcl val++"\"") gport
updateValue :: (String->String) -> WidgetRef -> GuiPort -> IO ()
updateValue upd wref gport = do
val <- getValue wref gport
setValue wref (upd val) gport
appendValue :: WidgetRef -> String -> GuiPort -> IO ()
appendValue (WRefLabel var wtype) val gport =
if wtype/="textedit"
then trace ("WARNING: GUI.appendValue ignored for widget type \""++wtype++"\"\n") done
else send2tk (wRefname2Label var++" insert end \""++escapeTcl val++"\"") gport >>
send2tk (wRefname2Label var++" see end") gport
appendStyledValue :: WidgetRef -> String -> [Style] -> GuiPort -> IO ()
appendStyledValue (WRefLabel var wtype) val styles gport =
if wtype/="textedit"
then trace ("WARNING: GUI.appendStyledValue ignored for widget type \""++wtype++"\"\n") done
else send2tk (wRefname2Label var++" insert end \""++escapeTcl val++"\""
++" \""++showStyles styles++"\"") gport >>
send2tk (wRefname2Label var++" see end") gport
where
showStyles = foldr (\st s -> showStyle st ++ " " ++ s) ""
addRegionStyle :: WidgetRef -> (Int,Int) -> (Int,Int) -> Style -> GuiPort
-> IO ()
addRegionStyle (WRefLabel var wtype) (l1,c1) (l2,c2) style gport =
if wtype/="textedit"
then trace ("WARNING: GUI.setRegionStyle ignored for widget type \""++wtype++"\"\n") done
else send2tk (wRefname2Label var++" tag add "++showStyle style++" "++
show l1++"."++show c1++" "++show l2++"."++show c2) gport
removeRegionStyle :: WidgetRef -> (Int,Int) -> (Int,Int) -> Style -> GuiPort
-> IO ()
removeRegionStyle (WRefLabel var wtype) (l1,c1) (l2,c2) style gport =
if wtype/="textedit"
then trace ("WARNING: GUI.setRegionStyle ignored for widget type \""++wtype++"\"\n") done
else send2tk (wRefname2Label var++" tag remove "++showStyle style++" "++
show l1++"."++show c1++" "++show l2++"."++show c2) gport
getCursorPosition :: WidgetRef -> GuiPort -> IO (Int,Int)
getCursorPosition (WRefLabel var wtype) gport =
if wtype/="textedit"
then error ("GUI.getCursorPosition not applicable to widget type \""++
wtype++"\"")
else do send2tk ("puts [ "++wRefname2Label var++" index insert ]") gport
line <- receiveFromTk gport
let (ls,ps) = break (=='.') line
return (if null ps then (0,0) else (readNat ls, readNat (tail ps)))
seeText :: WidgetRef -> (Int,Int) -> GuiPort -> IO ()
seeText (WRefLabel var wtype) (line,column) gport =
if wtype/="textedit"
then trace ("WARNING: GUI.seeText ignored for widget type \""++wtype++"\"\n") done
else send2tk (wRefname2Label var++" see "++show line++"."++show column) gport
focusInput :: WidgetRef -> GuiPort -> IO ()
focusInput (WRefLabel var _) gport = do
send2tk ("focus "++wRefname2Label var) gport
addCanvas :: WidgetRef -> [CanvasItem] -> GuiPort -> IO ()
addCanvas (WRefLabel var wtype) items gport = do
send2tk (config2tcl wtype (wRefname2Label var) (CanvasItems items)) gport
popupMessage :: String -> IO ()
s = runGUI "" (Col [] [Label [Text s],
Button exitGUI [Text "Dismiss"]])
Cmd :: (GuiPort -> IO ()) -> ConfItem
Cmd cmd = Command (\gport -> cmd gport >> return [])
Command :: (GuiPort -> IO [ReconfigureItem]) -> ConfItem
Command cmd = Handler DefaultEvent cmd
Button :: (GuiPort -> IO ()) -> [ConfItem] -> Widget
Button cmd confs = PlainButton (Cmd cmd : confs)
ConfigButton :: (GuiPort -> IO [ReconfigureItem]) -> [ConfItem] -> Widget
ConfigButton cmd confs = PlainButton (Command cmd : confs)
TextEditScroll :: [ConfItem] -> Widget
TextEditScroll confs =
matrix [[TextEdit ([WRef txtref, Fill]++confs),
ScrollV txtref [FillY]],
[ScrollH txtref [FillX]]] where txtref free
ListBoxScroll :: [ConfItem] -> Widget
ListBoxScroll confs =
matrix [[ListBox ([WRef lbref, Fill]++confs),
ScrollV lbref [FillY]],
[ScrollH lbref [FillX]]] where lbref free
CanvasScroll :: [ConfItem] -> Widget
CanvasScroll confs =
col
[row [Canvas ([WRef cref, Fill]++confs),
ScrollV cref [FillY]],
ScrollH cref [FillX]] where cref free
EntryScroll :: [ConfItem] -> Widget
EntryScroll confs =
col
[Entry ([WRef entryref, FillX]++confs),
ScrollH entryref [Width 10, FillX]]
where entryref free
getOpenFile :: IO String
getOpenFile = getOpenFileWithTypes []
getOpenFileWithTypes :: [(String,String)] -> IO String
getOpenFileWithTypes filetypes = do
gport <- openWish "" ""
send2tk ("wm withdraw .\nputs [tk_getOpenFile" ++
(if null filetypes then "" else
" -filetypes {"++
concatMap (\(x,y)->"{{"++x++"} {"++y++"}} ") filetypes ++"}") ++
"]\n") gport
filename <- receiveFromTk gport
exitGUI gport
return filename
getSaveFile :: IO String
getSaveFile = getSaveFileWithTypes []
getSaveFileWithTypes :: [(String,String)] -> IO String
getSaveFileWithTypes filetypes = do
gport <- openWish "" ""
send2tk ("wm withdraw .\nputs [tk_getSaveFile" ++
(if null filetypes then "" else
" -filetypes {"++
concatMap (\(x,y)->"{{"++x++"} {"++y++"}} ") filetypes ++"}") ++
"]\n") gport
filename <- receiveFromTk gport
exitGUI gport
return filename
chooseColor :: IO String
chooseColor = do
gport <- openWish "" ""
send2tk "wm withdraw .\nputs [tk_chooseColor]" gport
color <- receiveFromTk gport
exitGUI gport
return color
|