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
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
|
Rem
bbdoc: noddybox.mwidget
about: <p>Provides a simply class based interface to the MaxGUI. Note that all widgets have create type methods. For these to work correctly with
sub-classes they must be called through a new operation, e.g.</p>
<pre>
Type MyApp Extends TMWindow
Method OnClose(e:TEvent)
closed=Confirm("Really quit?")
End Method
End Type
Local window:TMWindow=New MyApp.Create("Test",100,100,640,400)
MWidgetMainLoop(window)
</pre>
<p>
There are two methods of getting events. One is to subclass and override the events, as with the @OnClose() above. The other is to set
function pointers in the matching event lists, @OnCloseEvent in this instance. For instance:
</p>
<pre>
Function OnClose(o:TMWidget)
Local w:TMWindow=TMWindow(o)
w.closed=Confirm("Really quit?")
End Function
Local window:TMWindow=New TMWindow.Create("Test",100,100,640,400)
window.OnCloseEvent.Add(OnClose)
MWidgetMainLoop(window)
</pre>
<p>
When using the function callback method of capturing events, the parameters to the function are the same as the overridable method with the addition
of the managed widget which is passed in as the first argument.
</p>
EndRem
Module noddybox.mwidget
ModuleInfo "Framework: Simple Managed Widget Classes"
ModuleInfo "Copyright: Public Domain"
ModuleInfo "Author: Ian Cowburn"
ModuleInfo "Version: $Revision$"
' $Id$
Strict
Import brl.maxgui
Import brl.linkedlist
Import brl.event
Import brl.timer
Import brl.map
Import brl.filesystem
Type TMWEventListBase Abstract
Field list:TList
Method New()
list=CreateList()
End Method
End Type
Type TMWFuncVoid
Field func(w:TMWidget)
Function Create:TMWFuncVoid(func(w:TMWidget))
Local o:TMWFuncVoid=New TMWFuncVoid
o.func=func
Return o
End Function
End Type
Type TMWFuncInt
Field func(w:TMWidget, a:Int)
Function Create:TMWFuncInt(func(w:TMWidget, a:Int))
Local o:TMWFuncInt=New TMWFuncInt
o.func=func
Return o
End Function
End Type
Type TMWFuncIntInt
Field func(w:TMWidget, a:Int, b:Int)
Function Create:TMWFuncIntInt(func(w:TMWidget, a:Int, b:Int))
Local o:TMWFuncIntInt=New TMWFuncIntInt
o.func=func
Return o
End Function
End Type
Type TMWFuncString
Field func(w:TMWidget, a:String)
Function Create:TMWFuncString(func(w:TMWidget, a:String))
Local o:TMWFuncString=New TMWFuncString
o.func=func
Return o
End Function
End Type
Type TMWFuncStringObject
Field func(w:TMWidget, a:String, b:Object)
Function Create:TMWFuncStringObject(func(w:TMWidget, a:String, b:Object))
Local o:TMWFuncStringObject=New TMWFuncStringObject
o.func=func
Return o
End Function
End Type
Rem
bbdoc: Defines an event list for functions that take the parameters (w:TMWidget)
EndRem
Type TMWEventListVoid Extends TMWEventListBase Final
Rem
bbdoc: Adds a callback function.
EndRem
Method Add(func(w:TMWidget))
list.AddLast(TMWFuncVoid.Create(func))
End Method
Rem
bbdoc: Clears all callback functions.
EndRem
Method Clear()
list.Clear()
End Method
Rem
bbdoc: Removes a callback function.
EndRem
Method Remove(func(w:TMWidget))
For Local fp:TMWFuncVoid=EachIn list
If fp.func=func
list.Remove(fp)
Return
EndIf
Next
End Method
Method Fire(w:TMWidget)
For Local fp:TMWFuncVoid=EachIn list
fp.func(w)
Next
End Method
End Type
Rem
bbdoc: Defines an event list for functions that take the parameters (w:TMWidget, a:Int)
EndRem
Type TMWEventListInt Extends TMWEventListBase Final
Rem
bbdoc: Adds a callback function.
EndRem
Method Add(func(w:TMWidget, a:Int))
list.AddLast(TMWFuncInt.Create(func))
End Method
Rem
bbdoc: Clears all callback functions.
EndRem
Method Clear()
list.Clear()
End Method
Rem
bbdoc: Removes a callback function.
EndRem
Method Remove(func(w:TMWidget, a:Int))
For Local fp:TMWFuncInt=EachIn list
If fp.func=func
list.Remove(fp)
Return
EndIf
Next
End Method
Method Fire(w:TMWidget, a:Int)
For Local fp:TMWFuncInt=EachIn list
fp.func(w,a)
Next
End Method
End Type
Rem
bbdoc: Defines an event list for functions that take the parameters (w:TMWidget, a:String)
EndRem
Type TMWEventListString Extends TMWEventListBase Final
Rem
bbdoc: Adds a callback function.
EndRem
Method Add(func(w:TMWidget, a:String))
list.AddLast(TMWFuncString.Create(func))
End Method
Rem
bbdoc: Clears all callback functions.
EndRem
Method Clear()
list.Clear()
End Method
Rem
bbdoc: Removes a callback function.
EndRem
Method Remove(func(w:TMWidget, a:String))
For Local fp:TMWFuncString=EachIn list
If fp.func=func
list.Remove(fp)
Return
EndIf
Next
End Method
Method Fire(w:TMWidget, a:String)
For Local fp:TMWFuncString=EachIn list
fp.func(w,a)
Next
End Method
End Type
Rem
bbdoc: Defines an event list for functions that take the parameters (w:TMWidget, a:Int, b:Int)
EndRem
Type TMWEventListIntInt Extends TMWEventListBase Final
Rem
bbdoc: Adds a callback function.
EndRem
Method Add(func(w:TMWidget, a:Int, b:Int))
list.AddLast(TMWFuncIntInt.Create(func))
End Method
Rem
bbdoc: Clears all callback functions.
EndRem
Method Clear()
list.Clear()
End Method
Rem
bbdoc: Removes a callback function.
EndRem
Method Remove(func(w:TMWidget, a:Int, b:Int))
For Local fp:TMWFuncIntInt=EachIn list
If fp.func=func
list.Remove(fp)
Return
EndIf
Next
End Method
Method Fire(w:TMWidget, a:Int, b:Int)
For Local fp:TMWFuncIntInt=EachIn list
fp.func(w,a,b)
Next
End Method
End Type
Rem
bbdoc: Defines an event list for functions that take the parameters (w:TMWidget, a:String, b:Object)
EndRem
Type TMWEventListStringObject Extends TMWEventListBase Final
Rem
bbdoc: Adds a callback function.
EndRem
Method Add(func(w:TMWidget, a:String, b:Object))
list.AddLast(TMWFuncStringObject.Create(func))
End Method
Rem
bbdoc: Clears all callback functions.
EndRem
Method Clear()
list.Clear()
End Method
Rem
bbdoc: Removes a callback function.
EndRem
Method Remove(func(w:TMWidget, a:String, b:Object))
For Local fp:TMWFuncStringObject=EachIn list
If fp.func=func
list.Remove(fp)
Return
EndIf
Next
End Method
Method Fire(w:TMWidget, a:String, b:Object)
For Local fp:TMWFuncStringObject=EachIn list
fp.func(w,a,b)
Next
End Method
End Type
Rem
bbdoc: Defines a base managed widget type.
EndRem
Type TMWidget Abstract
Rem
bbdoc: The underlying BlitzMAX GUI Gadget
EndRem
Field gadget:TGadget
Rem
bbdoc: The parent of this managed widget
EndRem
Field parent:TMWidget
Rem
bbdoc: Children of this managed widget
EndRem
Field children:TList
Field typename:String
Field timer:TTimer
Method Delete()
FreeGadget(gadget)
End Method
Rem
bbdoc: Handles an event.
about: Sub-classes will generally override this to handle events directed at themselves.
If the event is unhandled then the event should be passed up to the parent type. @e holds the TEvent.
EndRem
Method Handle(e:TEvent)
Select e.id
Case EVENT_MOUSEENTER
OnMouseEnter()
OnMouseEnterEvent.Fire(Self)
Case EVENT_MOUSELEAVE
OnMouseLeave()
OnMouseLeaveEvent.Fire(Self)
Case EVENT_TIMERTICK
OnTimer()
OnTimerEvent.Fire(Self)
End Select
End Method
Rem
bbdoc: Enables/disables a widget.
EndRem
Method Enabled(state:Int)
If state
EnableGadget(gadget)
Else
DisableGadget(gadget)
EndIf
End Method
Rem
bbdoc: Is widget enabled.
returns: TRUE if enabled.
EndRem
Method IsEnabled:Int()
Return Not GadgetDisabled(gadget)
End Method
Rem
bbdoc: Hide/show the widget.
EndRem
Method Hidden(state:Int)
If state
HideGadget(gadget)
Else
ShowGadget(gadget)
EndIf
End Method
Rem
bbdoc: Is widget hidden.
returns: TRUE if hidden.
EndRem
Method IsHidden:Int()
Return GadgetHidden(gadget)
End Method
Rem
bbdoc: The widget's position.
returns: The widget's X co-ordinate.
EndRem
Method X:Int()
Return GadgetX(gadget)
End Method
Rem
bbdoc: The widget's position.
returns: The widget's Y co-ordinate.
EndRem
Method Y:Int()
Return GadgetY(gadget)
End Method
Rem
bbdoc: The widget's size.
returns: The widget's width.
EndRem
Method Width:Int()
Return GadgetWidth(gadget)
End Method
Rem
bbdoc: The widget's size.
returns: The widget's height.
EndRem
Method Height:Int()
Return GadgetHeight(gadget)
End Method
Rem
bbdoc: The widget's client size.
returns: The widget's client width.
EndRem
Method Client_Width:Int()
Return ClientWidth(gadget)
End Method
Rem
bbdoc: The widget's client size.
returns: The widget's client height.
EndRem
Method Client_Height:Int()
Return ClientHeight(gadget)
End Method
Rem
bbdoc: Set the widget's font.
EndRem
Method Font(font:TGUIFont)
SetGadgetFont(gadget,font)
End Method
Rem
bbdoc: Set the widgets's layout. See Max GUIs SetGadgetLayout() for details.
EndRem
Method Layout(Left:Int, Right:Int, top:Int, bottom:Int)
SetGadgetLayout(gadget,Left,Right,top,bottom)
End Method
Rem
bbdoc: Set the widget's position and size.
EndRem
Method SetShape(x:Int, y:Int, width:Int, height:Int)
SetGadgetShape(gadget,x,y,width,height)
End Method
Rem
bbdoc: Set the widgets's alpha.
EndRem
Method Alpha(a:Double)
SetGadgetAlpha(gadget,a)
End Method
Rem
bbdoc: Set the widgets's text colour.
EndRem
Method TextColour(r:Int, g:Int, b:Int)
SetGadgetTextColor(gadget,r,g,b)
End Method
Rem
bbdoc: Set the widgets's background colour.
EndRem
Method BackColour(r:Int, g:Int, b:Int)
SetGadgetColor(gadget,r,g,b)
End Method
Rem
bbdoc: Set the widgets's text.
EndRem
Method Text(s:String)
SetGadgetText(gadget,s)
End Method
Rem
bbdoc: Print the widget
EndRem
Method Print()
GadgetPrint(gadget)
End Method
Rem
bbdoc: Perform a cut on the widget
EndRem
Method Cut()
GadgetCut(gadget)
End Method
Rem
bbdoc: Perform a copy on the widget
EndRem
Method Copy()
GadgetCopy(gadget)
End Method
Rem
bbdoc: Perform a paste on the widget
EndRem
Method Paste()
GadgetPaste(gadget)
End Method
Rem
bbdoc: Allocates a timer for this widget.
about: Create a Blitz MAX TTimer that is fired @hertz times a second. When the timer pulses then @OnTimer() is called.
If this routine is called when a timer is already active, then the timer is re-initialised with the passed hertz.
EndRem
Method SetTimer(hertz:Double)
ClearTimer()
timer=CreateTimer(hertz,CreateEvent(EVENT_TIMERTICK,gadget))
End Method
Rem
bbdoc: Clears timer previously activated by @SetTimer().
EndRem
Method ClearTimer()
If timer
StopTimer(timer)
EndIf
timer=Null
End Method
Rem
bbdoc: Called when the widget's timer fires.
EndRem
Method OnTimer()
End Method
Rem
bbdoc: Called when the widget's timer fires.
EndRem
Field OnTimerEvent:TMWEventListVoid
Rem
bbdoc: Called when the widget is managed.
EndRem
Method OnManage()
End Method
Rem
bbdoc: Called when the widget is managed.
EndRem
Field OnManageEvent:TMWEventListVoid
Rem
bbdoc: Called when the widget is unmanaged.
EndRem
Method OnUnmanage()
End Method
Rem
bbdoc: Called when the widget is unmanaged.
EndRem
Field OnUnmanageEvent:TMWEventListVoid
Rem
bbdoc: Called when the mouse enters.
EndRem
Method OnMouseEnter()
End Method
Rem
bbdoc: Called when the mouse enters.
EndRem
Field OnMouseEnterEvent:TMWEventListVoid
Rem
bbdoc: Called when the mouse leaves.
EndRem
Method OnMouseLeave()
End Method
Rem
bbdoc: Called when the mouse leaves.
EndRem
Field OnMouseLeaveEvent:TMWEventListVoid
Rem
bbdoc: Fires an event at this managed widget.
about: The arguments are the same as @CreateEvent(), but no source is passed in.
EndRem
Method Emit(id:Int, data:Int=0, mods:Int=0, x:Int=0, y:Int=0,extra:Object=Null)
EmitEvent(CreateEvent(id,gadget,data,mods,x,y,extra))
End Method
Rem
bbdoc: Initialises the base managed widget stuff.
about: All sub-classes must call this! @gadget is the created TGadget for this instance,
and @parent is the parent managed widget (NULL for none).
EndRem
Method BaseInitialise(gadget:TGadget, parent:TMWidget)
self.children=CreateList()
self.gadget=gadget
self.parent=parent
OnTimerEvent=New TMWEventListVoid
OnManageEvent=New TMWEventListVoid
OnUnmanageEvent=New TMWEventListVoid
OnMouseEnterEvent=New TMWEventListVoid
OnMouseLeaveEvent=New TMWEventListVoid
If self.parent
self.parent.children.AddLast(Self)
EndIf
Static.Register(Self)
End Method
Rem
bbdoc: Removes the managed widget from the internal lists.
about: All child objects will also be unmanaged.
EndRem
Method Unmanage()
Static.Deregister(Self)
End Method
Method ToString:String()
Return typename+":"+super.ToString()
End Method
End Type
Rem
bbdoc: Defines a managed window.
EndRem
Type TMWindow Extends TMWidget
Rem
bbdoc: Creates a managed window.
returns: The created window.
about: @name, @x, @y, @w, @h, @group and @flags act the same as the MaxGUI arguments to @CreateWindow(), except that @group is a TMWidget.
EndRem
Method Create:TMWindow(name:String, x:Int,y:Int, w:Int, h:Int, group:TMWidget=Null, flags:Int=15)
closed=False
OnMoveEvent=New TMWEventListIntInt
OnResizeEvent=New TMWEventListIntInt
OnCloseEvent=New TMWEventListVoid
Local g:TGadget
If group
g=CreateWindow(name,x,y,w,h,group.gadget,flags)
Else
g=CreateWindow(name,x,y,w,h,Null,flags)
EndIf
BaseInitialise(g,group)
typename="TMWindow"
Return Self
End Method
Rem
bbdoc: Set to TRUE when the window is closed (the user has pressed the close gadget).
EndRem
Field closed:Int
Rem
bbdoc: Send a close event to this window.
EndRem
Method Close()
Emit(EVENT_WINDOWCLOSE)
End Method
Rem
bbdoc: Hide to show the window.
about: Note that this sets the @closed field to the @state passed in.
EndRem
Method Hidden(state:Int)
closed=state
super.Hidden(state)
End Method
Rem
bbdoc: Set the window's status text.
EndRem
Method StatusText(text:String)
SetStatusText(gadget,text)
End Method
Rem
bbdoc: Set the window's minimum size.
EndRem
Method MinSize(width:Int, height:Int)
Return SetMinWindowSize(gadget,width,height)
End Method
Rem
bbdoc: Restore a minimizwed or maximized window.
EndRem
Method Restore()
Return RestoreWindow(gadget)
End Method
Rem
bbdoc: Maximize the window.
EndRem
Method Maximize()
Return MaximizeWindow(gadget)
End Method
Rem
bbdoc: Is the window maximized?
returns:TRUE if the window is maximized
EndRem
Method IsMaximized()
Return WindowMaximized(gadget)
End Method
Rem
bbdoc: Minimize the window.
EndRem
Method Minimize()
Return MinimizeWindow(gadget)
End Method
Rem
bbdoc: Is the window minimized?
returns:TRUE if the window is minimized
EndRem
Method IsMinimized()
Return WindowMinimized(gadget)
End Method
Rem
bbdoc: Called when the window is moved.
about:@x and @y are the new position.
EndRem
Method OnMove(x:Int, y:Int)
End Method
Rem
bbdoc: Called when the window is moved.
EndRem
Field OnMoveEvent:TMWEventListIntInt
Rem
bbdoc: Called when the window is resized.
about:@width and @height are the new size.
EndRem
Method OnResize(width:Int, height:Int)
End Method
Rem
bbdoc: Called when the window is resized.
EndRem
Field OnResizeEvent:TMWEventListIntInt
Rem
bbdoc: Called when the window's close gadget is pressed.
about: This default implementation sets @closed to TRUE and hide the window if no events are defined in @OnCloseEvent.
EndRem
Method OnClose()
If Not OnCloseEvent.list.Count()
closed=True
Hidden(True)
EndIf
End Method
Rem
bbdoc: Called when the window's close gadget is pressed.
EndRem
Field OnCloseEvent:TMWEventListVoid
Method Handle(e:TEvent)
Select e.id
Case EVENT_WINDOWMOVE
OnMove(e.x,e.y)
OnMoveEvent.Fire(Self,e.x,e.y)
Case EVENT_WINDOWSIZE
OnResize(e.x,e.y)
OnResizeEvent.Fire(Self,e.x,e.y)
Case EVENT_WINDOWCLOSE
OnClose()
OnCloseEvent.Fire(Self)
Default
super.Handle(e)
End Select
End Method
End Type
Rem
bbdoc: Defines a managed menu.
EndRem
Type TMMenu Extends TMWidget
Rem
bbdoc: Creates a managed menu.
returns: The created button.
about: @label, @tag, @group, @hotkey and @modifier act the same as the MaxGUI arguments to @CreateMenu(), except that @group is a TMWidget.
EndRem
Method Create:TMMenu(label:String, tag:Int, group:TMWidget, hotkey:Int=0, modifier:Int=0)
BaseInitialise(CreateMenu(label,tag,group.gadget,hotkey,modifier),group)
typename="TMMenu"
Return Self
End Method
Method Delete()
FreeMenu(gadget)
End Method
Method Handle(e:TEvent)
Select e.id
Default
super.Handle(e)
End Select
End Method
End Type
Rem
bbdoc: Defines a managed button push button.
EndRem
Type TMButton Extends TMWidget
Rem
bbdoc: Creates a managed push button.
returns: The created button.
about: @label, @x, @y, @w, @h, and @group act the same as the MaxGUI arguments to @CreateButton(), except that @group is a TMWidget.
EndRem
Method Create:TMButton(label:String, x:Int,y:Int, w:Int, h:Int, group:TMWidget)
OnPressEvent=New TMWEventListVoid
BaseInitialise(CreateButton(label,x,y,w,h,group.gadget,BUTTON_PUSH),group)
typename="TMButton"
Return Self
End Method
Rem
bbdoc: Creates a managed push button used for an OK button
returns: The created button.
about: @label, @x, @y, @w, @h, and @group act the same as the MaxGUI arguments to @CreateButton(), except that @group is a TMWidget.
EndRem
Method CreateOK:TMButton(label:String, x:Int,y:Int, w:Int, h:Int, group:TMWidget)
OnPressEvent=New TMWEventListVoid
BaseInitialise(CreateButton(label,x,y,w,h,group.gadget,BUTTON_OK),group)
typename="TMButton"
Return Self
End Method
Rem
bbdoc: Creates a managed push button used for a Cancel button
returns: The created button.
about: @label, @x, @y, @w, @h, and @group act the same as the MaxGUI arguments to @CreateButton(), except that @group is a TMWidget.
EndRem
Method CreateCancel:TMButton(label:String, x:Int,y:Int, w:Int, h:Int, group:TMWidget)
OnPressEvent=New TMWEventListVoid
BaseInitialise(CreateButton(label,x,y,w,h,group.gadget,BUTTON_OK),group)
typename="TMButton"
Return Self
End Method
Rem
bbdoc: Called when the button is pressed.
EndRem
Method OnPress()
End Method
Rem
bbdoc: Called when the button is pressed.
EndRem
Field OnPressEvent:TMWEventListVoid
Method Handle(e:TEvent)
Select e.id
Case EVENT_GADGETACTION
OnPress()
OnPressEvent.Fire(Self)
Default
super.Handle(e)
End Select
End Method
End Type
Rem
bbdoc: Defines a managed checkbox.
EndRem
Type TMCheckbox Extends TMWidget
Rem
bbdoc: Creates a managed checkbox.
returns: The created checkbox.
about: @label, @x, @y, @w, @h, and @group act the same as the MaxGUI arguments to @CreateButton(), except that @group is a TMWidget.
EndRem
Method Create:TMCheckbox(label:String, x:Int,y:Int, w:Int, h:Int, group:TMWidget)
OnPressEvent=New TMWEventListInt
BaseInitialise(CreateButton(label,x,y,w,h,group.gadget,BUTTON_CHECKBOX),group)
typename="TMCheckbox"
Return Self
End Method
Rem
bbdoc: Sets the state of the check.
EndRem
Method Checked(check:Int)
SetButtonState(gadget,check)
End Method
Rem
bbdoc: Is the checkbox checked?
returns:TRUE if the checkbox is checked.
EndRem
Method IsChecked()
Return ButtonState(gadget)
End Method
Rem
bbdoc: Called when the checkbox is pressed.
about: @checked is the current state.
EndRem
Method OnPress(checked:Int)
End Method
Rem
bbdoc: Called when the checkbox is pressed.
EndRem
Field OnPressEvent:TMWEventListInt
Method Handle(e:TEvent)
Select e.id
Case EVENT_GADGETACTION
OnPress(e.data)
OnPressEvent.Fire(Self,e.data)
Default
super.Handle(e)
End Select
End Method
End Type
Rem
bbdoc: Defines a managed radio button.
EndRem
Type TMRadioButton Extends TMCheckbox
Field set:TMRadioButtonSet
Rem
bbdoc: Creates a managed radio button.
returns: The created radio button.
about: @label, @x, @y, @w, @h, and @group act the same as the MaxGUI arguments to @CreateButton(), except that @group is a TMWidget.
EndRem
Method Create:TMRadioButton(label:String, x:Int,y:Int, w:Int, h:Int, group:TMWidget)
OnPressEvent=New TMWEventListInt
BaseInitialise(CreateButton(label,x,y,w,h,group.gadget,BUTTON_RADIO),group)
typename="TMRadioButton"
Return Self
End Method
Rem
bbdoc: Called when the checkbox is pressed.
about: @checked is the current state. In this default implementation the @TMRadioButtonSet which this button belongs too will fire
its @OnSelected() member.
EndRem
Method OnPress(checked:Int)
If set
set.ButtonFired(Self)
EndIf
End Method
End Type
Rem
bbdoc: Defines a set of managed radio button.
EndRem
Type TMRadioButtonSet
Field but:TMRadioButton[]
Rem
bbdoc: Creates a set of managed radio buttons.
returns: The created set.
about: The radio buttons must have been created prior to calling this.
EndRem
Method Create:TMRadioButtonSet(buttons:TMRadioButton[])
OnSelectedEvent=New TMWEventListInt
but=buttons
For Local b:TMRadioButton=EachIn but
b.set=Self
Next
Return Self
End Method
Rem
bbdoc: Sets the active radio button.
about: @index is the index of the button to set.
EndRem
Method Set(index:Int)
but[index].Checked(True)
End Method
Rem
bbdoc: If using the base TMRadioButton implmentation this will be called when the buttons change.
about: @index is the selected button.
EndRem
Method OnSelected(index:Int)
End Method
Rem
bbdoc: If using the base TMRadioButton implmentation this will be called when the buttons change.
about: The radio button that fired will be passed into the event.
EndRem
Field OnSelectedEvent:TMWEventListInt
Rem
bbdoc: Get the active radio button.
returns: The index of the button set. -1 if no button is set.
EndRem
Method Current()
For Local f:Int=0 Until but.length
If but[f].IsChecked()
Return f
EndIf
Next
Return -1
End Method
Method ButtonFired(b:TMRadioButton)
For Local f:Int=0 Until but.length
If but[f]=b
OnSelected(f)
OnSelectedEvent.Fire(b,f)
Return
EndIf
Next
End Method
End Type
Rem
bbdoc: Defines a managed label.
EndRem
Type TMLabel Extends TMWidget
Rem
bbdoc: Creates a managed label.
returns: The created label.
about: @label, @x, @y, @w, @h, @group and @style act the same as the MaxGUI arguments to @CreateLabel(), except that @group is a TMWidget.
EndRem
Method Create:TMLabel(label:String, x:Int,y:Int, w:Int, h:Int, group:TMWidget, style:Int=0)
BaseInitialise(CreateLabel(label,x,y,w,h,group.gadget,style),group)
typename="TMLabel"
Return Self
End Method
End Type
Rem
bbdoc: Defines a managed text field.
EndRem
Type TMTextField Extends TMWidget
Rem
bbdoc: Creates a managed text field.
returns: The created text field.
about: @x, @y, @w, @h, and @group act the same as the MaxGUI arguments to @CreateTextField(), except that @group is a TMWidget.
EndRem
Method Create:TMTextField(x:Int,y:Int, w:Int, h:Int, group:TMWidget)
OnTextChangedEvent=New TMWEventListString
BaseInitialise(CreateTextField(x,y,w,h,group.gadget),group)
typename="TMTextField"
Return Self
End Method
Rem
bbdoc: Creates a managed text field for entering passwords.
returns: The created text field.
about: @x, @y, @w, @h, and @group act the same as the MaxGUI arguments to @CreateTextField(), except that @group is a TMWidget.
EndRem
Method CreateSecret:TMTextField(x:Int,y:Int, w:Int, h:Int, group:TMWidget)
BaseInitialise(CreateTextField(x,y,w,h,group.gadget,TEXTFIELD_PASSWORD),group)
typename="TMTextField"
Return Self
End Method
Rem
bbdoc: The field's text.
returns:The text.
EndRem
Method GetText:String()
Return TextFieldText(gadget)
End Method
Rem
bbdoc: Called when the text changes.
about: @txt is the content of the field
EndRem
Method OnTextChanged(txt:String)
End Method
Rem
bbdoc: Called when the text changes.
EndRem
Field OnTextChangedEvent:TMWEventListString
Method Handle(e:TEvent)
Select e.id
Case EVENT_GADGETACTION
Local s:String=TextFieldText(gadget)
OnTextChanged(s)
OnTextChangedEvent.Fire(Self,s)
Default
super.Handle(e)
End Select
End Method
End Type
Rem
bbdoc: Defines a managed text area.
EndRem
Type TMTextArea Extends TMWidget
Rem
bbdoc: Creates a managed text area.
returns: The created text area.
about: @x, @y, @w, @h,, @group and @style act the same as the MaxGUI arguments to @CreateTextArea(), except that @group is a TMWidget.
EndRem
Method Create:TMTextArea(x:Int, y:Int, w:Int, h:Int, group:TMWidget, style:Int=0)
OnTextChangedEvent=New TMWEventListVoid
OnSelectionEvent=New TMWEventListVoid
OnMenuEvent=New TMWEventListVoid
BaseInitialise(CreateTextArea(x,y,w,h,group.gadget,style),group)
typename="TMTextArea"
Return Self
End Method
Rem
bbdoc: The text area's text.
returns:The text.
EndRem
Method GetText:String(pos:Int=0, length:Int=TEXTAREA_ALL, units:Int=TEXTAREA_CHARS)
Return TextAreaText(gadget,pos,length,units)
End Method
Rem
bbdoc: Set the widget's font.
EndRem
Method Font(font:TGUIFont)
SetTextAreaFont(gadget,font)
End Method
Rem
bbdoc: Set the widgets's text colour.
EndRem
Method TextColour(r:Int, g:Int, b:Int)
SetTextAreaColor(gadget,r,g,b,False)
End Method
Rem
bbdoc: Set the widgets's background colour.
EndRem
Method BackColour(r:Int, g:Int, b:Int)
SetTextAreaColor(gadget,r,g,b,True)
End Method
Rem
bbdoc: Set the widgets's text.
EndRem
Method Text(s:String)
SetText(s)
End Method
Rem
bbdoc: Set the widgets's text (see the MaxGUI docs for argument details)
EndRem
Method SetText(s:String, pos:Int=0, length:Int=TEXTAREA_ALL, units:Int=TEXTAREA_CHARS)
SetTextAreaText(gadget,s,pos,length,units)
End Method
Rem
bbdoc: Set the text area's tab size
EndRem
Method SetTabSize(size:Int)
SetTextAreaTabs(gadget,size)
End Method
Rem
bbdoc: Get the character position of the specified line.
EndRem
Method GetCharPos:Int(line:Int)
Return TextAreaChar(gadget,line)
End Method
Rem
bbdoc: Get the cursor's column.
EndRem
Method GetCursorColumn:Int()
Return TextAreaCursor(gadget,TEXTAREA_CHARS)
End Method
Rem
bbdoc: Get the cursor's row.
EndRem
Method GetCursorRow:Int()
Return TextAreaCursor(gadget,TEXTAREA_LINES)
End Method
Rem
bbdoc: Get the text length.
EndRem
Method GetLength:Int()
Return TextAreaLen(gadget)
End Method
Rem
bbdoc: Get the selected texts length.
EndRem
Method GetSelectionLength:Int()
Return TextAreaSelLen(gadget,TEXTAREA_CHARS)
End Method
Rem
bbdoc: Get the number of selected rows.
EndRem
Method GetSelectionRows:Int()
Return TextAreaSelLen(gadget,TEXTAREA_LINES)
End Method
Rem
bbdoc: Lock the text area.
EndRem
Method Lock()
Return LockTextArea(gadget)
End Method
Rem
bbdoc: Unlock the text area.
EndRem
Method Unlock()
Return UnlockTextArea(gadget)
End Method
Rem
bbdoc: Set the format. See the MaxGUI docs for details.
EndRem
Method Format(r:Int, g:Int, b:Int, flags:Int, pos:Int=0, length:Int=TEXTAREA_ALL, units:Int=TEXTAREA_CHARS )
FormatTextAreaText(gadget,r,g,b,flags,pos,length,units)
End Method
Rem
bbdoc: Called when the text changes.
EndRem
Method OnTextChanged()
End Method
Rem
bbdoc: Called when the text changes.
EndRem
Field OnTextChangedEvent:TMWEventListVoid
Rem
bbdoc: Called when the selection or cursor changes.
EndRem
Method OnSelection()
End Method
Rem
bbdoc: Called when the selection or cursor changes.
EndRem
Field OnSelectionEvent:TMWEventListVoid
Rem
bbdoc: Called when the context menu is requested.
EndRem
Method OnMenu()
End Method
Rem
bbdoc: Called when the context menu is requested.
EndRem
Field OnMenuEvent:TMWEventListVoid
Method Handle(e:TEvent)
Select e.id
Case EVENT_GADGETACTION
OnTextChanged()
OnTextChangedEvent.Fire(Self)
Case EVENT_GADGETSELECT
OnSelection()
OnSelectionEvent.Fire(Self)
Case EVENT_GADGETMENU
OnMenu()
OnMenuEvent.Fire(Self)
Default
super.Handle(e)
End Select
End Method
End Type
Rem
bbdoc: Defines a managed slider.
EndRem
Type TMSlider Extends TMWidget
Rem
bbdoc: Creates a managed slider.
returns: The created slider.
about: @x, @y, @w, @h, @group and @style act the same as the MaxGUI arguments to @CreateSlider(), except that @group is a TMWidget.
EndRem
Method Create:TMSlider(x:Int, y:Int, w:Int, h:Int, group:TMWidget, style:Int=0)
OnValueChangedEvent=New TMWEventListInt
BaseInitialise(CreateSlider(x,y,w,h,group.gadget,style),group)
typename="TMSlider"
Return Self
End Method
Rem
bbdoc: Set the sliders's min/max values.
about: See the MaxGUI docs for how this affects scrollbar style sliders.
EndRem
Method SetRange(range0:Int,range1:Int)
Return SetSliderRange(gadget,range0,range1)
End Method
Rem
bbdoc: Set the sliders's value.
EndRem
Method SetValue(value:Int)
Return SetSliderValue(gadget,value)
End Method
Rem
bbdoc: The sliders's value.
returns:The value.
EndRem
Method GetValue:Int()
Return SliderValue(gadget)
End Method
Rem
bbdoc: Called when the slider moves.
about: @val is the new slider value.
EndRem
Method OnValueChanged(val:Int)
End Method
Rem
bbdoc: Called when the slider moves.
EndRem
Field OnValueChangedEvent:TMWEventListInt
Method Handle(e:TEvent)
Select e.id
Case EVENT_GADGETACTION
OnValueChanged(e.data)
OnValueChangedEvent.Fire(Self,e.data)
Default
super.Handle(e)
End Select
End Method
End Type
Rem
bbdoc: Defines an entry in a list style gadget.
about: Always use @CreateListEntry() to create this object.
EndRem
Type TMListEntry
Rem
bbdoc: The text associated with a list entry.
EndRem
Field text:String
Rem
bbdoc: The flags associated with a list entry.
EndRem
Field flags:Int
Rem
bbdoc: The icon associated with a list entry.
EndRem
Field icon:Int
Rem
bbdoc: The tooltip associated with a list entry.
EndRem
Field tip:String
Rem
bbdoc: The extra object associated with a list entry.
EndRem
Field extra:Object
Function Create:TMListEntry(text:String,flags:Int,icon:Int,tip:String,extra:Object)
Local o:TMListEntry=New TMListEntry
o.text=text
o.flags=flags
o.icon=icon
o.tip=tip
o.extra=extra
Return o
End Function
End Type
Rem
bbdoc: Creates a list entry.
returns: The list entry.
about: @text, @flags, @icon, @tip and @extra are the fields detailed in MaxGUI @AddGadgetItem().
EndRem
Function CreateListEntry:TMListEntry(text:String,flags:Int=0,icon:Int=-1,tip:String="",extra:Object=Null)
Return TMListEntry.Create(text,flags,icon,tip,extra)
End Function
Rem
bbdoc: Defines a base for list style gadgets.
EndRem
Type TMListWidget Extends TMWidget Abstract
Rem
bbdoc: Removes all items from the list.
EndRem
Method Clear()
ClearGadgetItems(gadget)
End Method
Rem
bbdoc: Adds an item to the list.
EndRem
Method AddItem(entry:TMListEntry)
AddGadgetItem(gadget,entry.text,entry.flags,entry.icon,entry.tip,entry.extra)
End Method
Rem
bbdoc: Adds items to the list.
EndRem
Method AddItems(entry:TMListEntry[])
For Local f:Int=0 Until entry.length
AddItem(entry[f])
Next
End Method
Rem
bbdoc: Modify an item in the list.
EndRem
Method ModifyItem(index:Int, entry:TMListEntry)
ModifyGadgetItem(gadget,index,entry.text,entry.flags,entry.icon,entry.tip,entry.extra)
End Method
Rem
bbdoc: Set an icon strip for the list.
EndRem
Method SetIconStrip(icons:TIconStrip)
SetGadgetIconStrip(gadget,icons)
End Method
Rem
bbdoc: Get an item from the list.
about: Note that the @tip field is not set on return
EndRem
Method GetItem:TMListEntry(index:Int)
Return CreateListEntry(GadgetItemText(gadget,index), ..
GadgetItemFlags(gadget,index), ..
GadgetItemIcon(gadget,index), ..
"", ..
GadgetItemExtra(gadget,index))
End Method
Rem
bbdoc: Enable or disable a particular item.
EndRem
Method ItemEnabled(index:Int, state:Int)
If state
EnableGadgetItem(gadget,index)
Else
DisableGadgetItem(gadget,index)
EndIf
End Method
Rem
bbdoc: Set the currently selected item.
EndRem
Method SetSelectedIndex(index:Int)
SelectGadgetItem(gadget,index)
End Method
Rem
bbdoc: Get the index of the first selected item.
EndRem
Method SelectedIndex:Int()
Return SelectedGadgetItem(gadget)
End Method
Rem
bbdoc: Get the indexes of the selected items.
EndRem
Method SelectedIndexes:Int[]()
Return SelectedGadgetItems(gadget)
End Method
Rem
bbdoc: Get the first selected item, NULL if nothing selected.
EndRem
Method SelectedItem:TMListEntry()
If SelectedIndex()=-1
Return Null
EndIf
Return GetItem(SelectedIndex())
End Method
Rem
bbdoc: Get the selected items, NULL if nothing selected.
EndRem
Method SelectedItems:TMListEntry[]()
If SelectedIndex()=-1
Return Null
EndIf
Local sel:Int[]=SelectedIndexes()
Local ret:TMListEntry[]=New TMListEntry[sel.length]
For Local f:Int=0 Until sel.length
ret[f]=GetItem(sel[f])
Next
Return ret
End Method
Rem
bbdoc: Called when the selection changes.
about: @index is the selected index. This can be -1 for no selection.
EndRem
Method OnIndexChanged(index:Int)
End Method
Rem
bbdoc: Called when the selection changes.
EndRem
Field OnIndexChangedEvent:TMWEventListInt
Method Handle(e:TEvent)
Select e.id
Case EVENT_GADGETACTION
OnIndexChanged(e.data)
OnIndexChangedEvent.Fire(Self,e.data)
Default
super.Handle(e)
End Select
End Method
End Type
Rem
bbdoc: Defines a managed combo box.
EndRem
Type TMComboBox Extends TMListWidget
Rem
bbdoc: Creates a managed combo box.
returns: The created combo box.
about: @x, @y, @w, @h, @group and @style act the same as the MaxGUI arguments to @CreateComboBox(), except that @group is a TMWidget.
If @values is not NULL it is used to load up the initial options.
<b>IMPORTANT</b>: It is really not recommended to use COMBOBOX_EDITABLE as OnIndexChanged() is called when the user edits the field.
There seems to be no easy way to remedy this.
EndRem
Method Create:TMComboBox(x:Int,y:Int, w:Int, h:Int, group:TMWidget, style:Int=0, values:TMListEntry[]=Null)
OnIndexChangedEvent=New TMWEventListInt
BaseInitialise(CreateComboBox(x,y,w,h,group.gadget,style),group)
typename="TMComboBox"
If values
AddItems(values)
EndIf
Return Self
End Method
End Type
Rem
bbdoc: Defines a managed list box.
EndRem
Type TMListBox Extends TMListWidget
Rem
bbdoc: Creates a managed list box.
returns: The created list box.
about: @x, @y, @w, @h, and @group act the same as the MaxGUI arguments to @CreateListBox(), except that @group is a TMWidget.
If @values is not NULL it is used to load up the initial options.
EndRem
Method Create:TMListBox(x:Int,y:Int, w:Int, h:Int, group:TMWidget, values:TMListEntry[]=Null)
OnIndexChangedEvent=New TMWEventListInt
BaseInitialise(CreateListBox(x,y,w,h,group.gadget),group)
typename="TMListBox"
If values
AddItems(values)
EndIf
Return Self
End Method
End Type
Rem
bbdoc: Defines a managed tabber.
EndRem
Type TMTabber Extends TMListWidget
Field pages:TMWidget[][]
Rem
bbdoc: Creates a managed tabber.
returns: The created tabber.
about: @x, @y, @w, @h, and @group act the same as the MaxGUI arguments to @CreateTabber(), except that @group is a TMWidget.
If @values is not NULL it is used to load up the initial options.
EndRem
Method Create:TMTabber(x:Int,y:Int, w:Int, h:Int, group:TMWidget, values:TMListEntry[]=Null)
OnIndexChangedEvent=New TMWEventListInt
BaseInitialise(CreateTabber(x,y,w,h,group.gadget),group)
typename="TMTabber"
If values
AddItems(values)
EndIf
Return Self
End Method
Rem
bbdoc: Defines the gadgets to appear on each page of the tabber.
about: @widgets is an array of @TMWidget arrays. Each sub-array is one page.
EndRem
Method SetPages(widgets:TMWidget[][])
pages=widgets
End Method
Rem
bbdoc: Set the currently selected page.
about: This will hide/show the widgets defined by @DefinePages() as appropriate.
EndRem
Method SetSelectedIndex(index:Int)
SelectGadgetItem(gadget,index)
If pages
For Local f:Int=0 Until pages.length
For Local w:TMWidget=EachIn pages[f]
w.Hidden(f<>index)
Next
Next
EndIf
End Method
Rem
bbdoc: This default implementation will switch the widgets as defined by @DefinePages()
EndRem
Method OnIndexChanged(index:Int)
If index>-1 And pages
For Local f:Int=0 Until pages.length
For Local w:TMWidget=EachIn pages[f]
w.Hidden(f<>index)
Next
Next
EndIf
End Method
End Type
Rem
bbdoc: Defines a managed HTML View.
EndRem
Type TMHTMLView Extends TMWidget
Rem
bbdoc: Creates a managed HTML View.
returns: The created HTML View.
about: @x, @y, @w, @h, @group and @style act the same as the MaxGUI arguments to @CreateHMTLView(), except that @group is a TMWidget.
EndRem
Method Create:TMHTMLView(x:Int, y:Int, w:Int, h:Int, group:TMWidget, style:Int=0)
OnPageLoadedEvent=New TMWEventListString
OnSelectURLEvent=New TMWEventListString
BaseInitialise(CreateHTMLView(x,y,w,h,group.gadget,style),group)
typename="TMHTMLView"
Return Self
End Method
Rem
bbdoc: The current URL.
EndRem
Method CurrentURL:String()
Return HtmlViewCurrentURL(gadget)
End Method
Rem
bbdoc: Enter the URL to goto.
EndRem
Method Go(url:String)
HtmlViewGo(gadget,url)
End Method
Rem
bbdoc: Go back in the history.
EndRem
Method Back()
HtmlViewBack(gadget)
End Method
Rem
bbdoc: Go forward in the history.
EndRem
Method Forward()
HtmlViewForward(gadget)
End Method
Rem
bbdoc:Run a script.
EndRem
Method RunScript:String(script:String)
HtmlViewRun(gadget,script)
End Method
Rem
bbdoc: If HTMLVIEW_NONAVIGATE is set in the styles, then this is called when a link is clicked.
about: @url is the selected URL.
EndRem
Method OnSelectURL(url:String)
End Method
Rem
bbdoc: If HTMLVIEW_NONAVIGATE is set in the styles, then this is called when a link is clicked.
EndRem
Field OnSelectURLEvent:TMWEventListString
Rem
bbdoc: Called when the page finishes loading.
about: @url is the loaded URL.
EndRem
Method OnPageLoaded(url:String)
End Method
Rem
bbdoc: Called when the page finishes loading.
EndRem
Field OnPageLoadedEvent:TMWEventListString
Method Handle(e:TEvent)
Select e.id
Case EVENT_GADGETACTION
OnSelectURL(e.extra.ToString())
OnSelectURLEvent.Fire(Self,e.extra.ToString())
Case EVENT_GADGETDONE
OnPageLoaded(CurrentURL())
OnPageLoadedEvent.Fire(Self,CurrentURL())
Default
super.Handle(e)
End Select
End Method
End Type
Type TMTreeNode
Field path:String
Field node:TGadget
Field tag:Object
Field icon:Int
Function Create:TMTreeNode(path:String, node:TGadget, tag:Object, icon:Int)
Local o:TMTreeNode=New TMTreeNode
o.path=path
o.node=node
o.tag=tag
o.icon=icon
Return o
End Function
End Type
Rem
bbdoc: Defines a managed tree view.
about: The tree view works by treating its entries as if in a simple file system.
EndRem
Type TMTreeView Extends TMWidget
Field map:TMap
Field gmap:TMap
Field update:Int
Rem
bbdoc: Creates a managed tree view.
returns: The created tree view.
about: @x, @y, @w, @h, @group and @style act the same as the MaxGUI arguments to @CreateTreeView(), except that @group is a TMWidget.
EndRem
Method Create:TMTreeView(x:Int, y:Int, w:Int, h:Int, group:TMWidget, style:Int=0)
update=False
map=New TMap
gmap=New TMap
OnSelectedEvent=New TMWEventListStringObject
OnClickedEvent=New TMWEventListStringObject
OnMenuEvent=New TMWEventListStringObject
OnExpandedEvent=New TMWEventListStringObject
OnCollapsedEvent=New TMWEventListStringObject
BaseInitialise(CreateTreeView(x,y,w,h,group.gadget,style),group)
typename="TMNodeView"
map.Insert("/",TMTreeNode.Create("/",TreeViewRoot(gadget),"/",-1))
Return Self
End Method
Method ResolvePath:TMTreeNode(path:String)
Return TMTreeNode(map.ValueForKey(path))
End Method
Method ResolveGadget:TMTreeNode(g:TGadget)
Return ResolvePath(gmap.ValueForKey(g).ToString())
End Method
Method Prune(path:String)
Local l:TList=CreateList()
' Not sure if this is overly ineffecient -- just being safe as in most languages deleting whilst iterating
' is not recommended...
'
For Local k:String=EachIn map.Keys()
If k=path Or k.Find(path+"/")=0
l.AddLast(k)
EndIf
Next
For Local k:String=EachIn l
Local n:TMTreeNode=ResolvePath(k)
map.Remove(k)
gmap.Remove(n.node)
Next
End Method
Rem
bbdoc: Set an icon strip.
EndRem
Method SetIconStrip(icons:TIconStrip)
SetGadgetIconStrip(gadget,icons)
End Method
Rem
bbdoc: The number of nodes in the view.
returns: The number of nodes.
about: @path is the path to count from. / is the root node.
EndRem
Method CountChildren:Int(path:String)
Local node:TMTreeNode=ResolvePath(path)
If node
Return CountTreeViewNodes(node.node)
Else
Return 0
EndIf
End Method
Rem
bbdoc: Remove nodes from the tree.
about: Attempting to remove the root node (/) will fail.
EndRem
Method Remove(path:String)
If path<>"/"
Local node:TMTreeNode=ResolvePath(path)
If node
FreeTreeViewNode(node.node)
Prune(path)
EndIf
EndIf
End Method
Rem
bbdoc: Don't redraw gadget when adding nodes.
EndRem
Method BeginUpdate()
update=True
End Method
Rem
bbdoc: Allow redraw of gadget when adding nodes.
EndRem
Method EndUpdate()
update=False
End Method
Rem
bbdoc: Add/modify nodes in the tree.
about: @path is the path to the node. This silently fails if the parent nodes don't exist. @tag is an Object that the entry is tagged with.
ToString() is called on this to create the text for the entry (so passing a String works fine).
@icon is the icon to use.
EndRem
Method Set(path:String, tag:Object, icon:Int=-1)
Local parent:TMTreeNode=ResolvePath(FixedExtractDir(path))
If parent
Local node:TMTreeNode=ResolvePath(path)
If node
ModifyTreeViewNode(node.node,tag.ToString(),icon)
Else
node=TMTreeNode.Create(path,AddTreeViewNode(tag.ToString(),parent.node,icon),tag,icon)
map.Insert(path,node)
gmap.Insert(node.node,path)
EndIf
node.tag=tag
node.icon=icon
If Not update
RedrawGadget(gadget)
EndIf
EndIf
End Method
Rem
bbdoc: Get the tag at a node.
returns: The tag, or NULL for unknown node.
EndRem
Method GetNodeTag:Object(path:String)
Local node:TMTreeNode=ResolvePath(path)
If node
Return node.tag
Else
Return Null
EndIf
End Method
Rem
bbdoc: Get the icon at a node.
returns: The icon, or -1 for none or unknown node.
EndRem
Method GetNodeIcon:Int(path:String)
Local node:TMTreeNode=ResolvePath(path)
If node
Return node.icon
Else
Return -1
EndIf
End Method
Rem
bbdoc: Expand a node on the tree.
EndRem
Method ExpandNode(path:String)
Local node:TMTreeNode=ResolvePath(path)
If node
ExpandTreeViewNode(node.node)
EndIf
End Method
Rem
bbdoc: Collapse a node on the tree.
EndRem
Method CollapseNode(path:String)
Local node:TMTreeNode=ResolvePath(path)
If node
CollapseTreeViewNode(node.node)
EndIf
End Method
Rem
bbdoc: Called when the an item is selected.
about: @path is the path to the selected item, @tag is the tag for that item.
EndRem
Method OnSelected(path:String, tag:Object)
End Method
Rem
bbdoc: Called when the an item is selected.
EndRem
Field OnSelectedEvent:TMWEventListStringObject
Rem
bbdoc: Called when the an item is double clicked.
about: @path is the path to the selected item, @tag is the tag for that item.
EndRem
Method OnClicked(path:String, tag:Object)
End Method
Rem
bbdoc: Called when the an item is double clicked.
EndRem
Field OnClickedEvent:TMWEventListStringObject
Rem
bbdoc: Called when the a context menu is requested.
about: @path is the path to the selected item, @tag is the tag for that item.
EndRem
Method OnMenu(path:String, tag:Object)
End Method
Rem
bbdoc: Called when the an item is selected.
EndRem
Field OnMenuEvent:TMWEventListStringObject
Rem
bbdoc: Called when a node is expanded.
about: @path is the path to the selected item, @tag is the tag for that item.
EndRem
Method OnExpanded(path:String, tag:Object)
End Method
Rem
bbdoc: Called when a node is expanded.
EndRem
Field OnExpandedEvent:TMWEventListStringObject
Rem
bbdoc: Called when a node is collapsed.
about: @path is the path to the selected item, @tag is the tag for that item.
EndRem
Method OnCollapsed(path:String, tag:Object)
End Method
Rem
bbdoc: Called when a node is collapsed.
EndRem
Field OnCollapsedEvent:TMWEventListStringObject
Method Handle(e:TEvent)
Select e.id
Case EVENT_GADGETSELECT
Local n:TMTreeNode=ResolveGadget(TGadget(e.extra))
If n
OnSelected(n.path,n.tag)
OnSelectedEvent.Fire(Self,n.path,n.tag)
EndIf
Case EVENT_GADGETACTION
Local n:TMTreeNode=ResolveGadget(TGadget(e.extra))
If n
OnClicked(n.path,n.tag)
OnClickedEvent.Fire(Self,n.path,n.tag)
EndIf
Case EVENT_GADGETOPEN
Local n:TMTreeNode=ResolveGadget(TGadget(e.extra))
If n
OnExpanded(n.path,n.tag)
OnExpandedEvent.Fire(Self,n.path,n.tag)
EndIf
Case EVENT_GADGETCLOSE
Local n:TMTreeNode=ResolveGadget(TGadget(e.extra))
If n
OnCollapsed(n.path,n.tag)
OnCollapsedEvent.Fire(Self,n.path,n.tag)
EndIf
Case EVENT_GADGETMENU
Local n:TMTreeNode=ResolveGadget(TGadget(e.extra))
If n
OnMenu(n.path,n.tag)
OnMenuEvent.Fire(Self,n.path,n.tag)
EndIf
Default
super.Handle(e)
End Select
End Method
End Type
Rem
bbdoc: Enters the event processing loop.
about: @top is the top level TMWindow For the application. The loop continues Until the @closed Field of this window is TRUE.
Your code can do it's own event loop if required -- all this function does is continually call WaitEvent and is simply provided as
a basic main loop.
EndRem
Function MWidgetMainLoop(top:TMWindow)
While Not top.closed
WaitEvent()
Wend
End Function
Private
Function FixedExtractDir:String(p:String)
p=ExtractDir(p)
If p.length=0
p="/"
EndIf
Return p
End Function
Type Static
Global list:TList
Function Init()
list=CreateList()
AddHook(EmitEventHook,EventHandler)
End Function
Function EventHandler:Object(id:Int, data:Object, context:Object)
Local e:TEvent=TEvent(data)
DebugLog "Got event : " + e.ToString()
If e
For Local g:TMWidget=EachIn list
If g And g.gadget And g.gadget=e.source
DebugLog "Passing event to " + g.ToString()
g.Handle(e)
EndIf
Next
EndIf
Return e
End Function
Function Register(w:TMWidget)
list.AddLast(w)
w.OnManage()
w.OnManageEvent.Fire(w)
End Function
Function Deregister(w:TMWidget)
If w.children.Count()
For Local c:TMWidget=EachIn w.children
If c
Deregister(c)
EndIf
Next
EndIf
w.OnUnmanage()
w.OnUnmanageEvent.Fire(w)
list.Remove(w)
End Function
End Type
Static.Init()
|