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
|
Rem
bbdoc: noddybox.simplegui
EndRem
Module noddybox.simplegui
ModuleInfo "Framework: (Very) Simple GUI"
ModuleInfo "Copyright: Public Domain"
ModuleInfo "Author: Ian Cowburn"
ModuleInfo "Version: $Revision$"
' $Id$
Strict
Import brl.Max2D
Import brl.Basic
Import noddybox.bitmapfont
Rem
bbdoc: Defines the @TBitmapFont to be used by the GUI.
EndRem
Type TGUIFont
Rem
bbdoc: The font to use.
EndRem
Global font:TBitmapFont
End Type
Rem
bbdoc: The base widget type.
EndRem
Type TWidget Abstract
Rem
bbdoc: If true the widget is displayed and can be used.
EndRem
Field enabled:Int
Rem
bbdoc: The text displayed in the widget.
EndRem
Field text:String
Rem
bbdoc: The X co-ordinate of the widget.
EndRem
Field x:Int
Rem
bbdoc: The Y co-ordinate of the widget.
EndRem
Field y:Int
Rem
bbdoc: The width of the widget.
EndRem
Field w:Int
Rem
bbdoc: The height of the widget.
EndRem
Field h:Int
Rem
bbdoc: Callback to call when clicked.
EndRem
Field callback(w:TWidget)
Rem
bbdoc: True if the mouse is over this widget, False otherwise.
EndRem
Field mouse_over:Int
Rem
bbdoc: The @TGUIHandler that owns this widget.
EndRem
Field owner:TGUIHandler
Rem
bbdoc: True if this widget consumes events, False otherwise.
EndRem
Field consumes:Int
Rem
bbdoc: Override this accept keypresses
EndRem
Method HandleKey(k:Int)
End Method
Rem
bbdoc: Override this for when the mouse enters. Call this parent version to handle @mouse_over too.
EndRem
Method MouseEnter()
mouse_over=True
End Method
Rem
bbdoc: Override this for when the mouse leaves. Call this parent version to handle @mouse_over too.
EndRem
Method MouseLeave()
mouse_over=False
End Method
Rem
bbdoc: Override to handle a mouse button press.
EndRem
Method HandleClick()
End Method
Rem
bbdoc: Must be provided by a widget to draw itself.
EndRem
Method Draw() Abstract
Rem
bbdoc: Helper to draw a wireframe rectangle.
EndRem
Function DrawBox(x:Int, y:Int, w:Int, h:Int)
DrawLine(x,y,x+w-1,y)
DrawLine(x+w-1,y,x+w-1,y+h-1)
DrawLine(x+w-1,y+h-1,x,y+h-1)
DrawLine(x,y+h-1,x,y)
End Function
Rem
bbdoc: Helper to draw a 3D rectangle.
EndRem
Function Draw3DBox(x:Int, y:Int, w:Int, h:Int, invert:Int, size:Int=2)
Local f:Int
SetColor(200,200,200)
DrawRect(x,y,w,h)
If invert
SetColor(170,170,170)
Else
SetColor(230,230,230)
EndIf
For f=0 Until size
DrawLine(x+f,y+f,x+w-1-f,y+f)
DrawLine(x+w-1-f,y+f,x+w-1-f,y+h-1-f)
Next
If invert
SetColor(230,230,230)
Else
SetColor(170,170,170)
EndIf
For f=0 Until size
DrawLine(x+w-1-f,y+h-1-f,x+f,y+h-1-f)
DrawLine(x+f,y+h-1-f,x+f,y+f)
Next
End Function
End Type
Rem
bbdoc: The panel widget (simply displays itself as a white bordered black box)
EndRem
Type TPanel Extends TWidget
Rem
bbdoc: Create a TPanel widget.
returns: The created widget.
about: @gui is the @TGUIHandler object managing this wiget. @x, @y, @x and @h are its position and size. If @x or @y is -1 they are centered.
EndRem
Function Create:TPanel(gui:TGUIHandler,x:Int, y:Int, w:Int, h:Int)
Local o:TPanel=New TPanel
o.enabled=True
o.consumes=False
If x=-1
x=(GraphicsWidth()-w)/2
EndIf
If y=-1
y=(GraphicsHeight()-h)/2
EndIf
o.x=x
o.y=y
o.w=w
o.h=h
gui.Register(o)
Return o
End Function
Method Draw()
SetColor(0,0,0)
DrawRect(x,y,w,h)
SetColor(255,255,255)
DrawBox(x,y,w,h)
End Method
End Type
Rem
bbdoc: The label widget (simply displays the supplied string)
EndRem
Type TLabel Extends TWidget
Rem
bbdoc: Create a TLabel widget.
returns: The created widget.
about: @gui is the @TGUIHandler object managing this wiget. @x and @y are its position and @text is the text to display in the label.
EndRem
Function Create:TLabel(gui:TGUIHandler,x:Int, y:Int, text:String)
Local o:TLabel=New TLabel
o.enabled=True
o.consumes=False
o.x=x
o.y=y
o.w=TGUIFont.font.TextWidth(text)+2
o.h=TGUIFont.font.MaxHeight()+1
o.text=text
gui.Register(o)
Return o
End Function
Method Draw()
TGUIFont.font.Draw(text,x+1,y+1)
End Method
End Type
Rem
bbdoc: The text entry widget
EndRem
Type TText Extends TWidget
Field maxlen:Int
Field mode:Int
Rem
bbdoc: The text box handles any text
EndRem
Const NORMAL:Int=0
Rem
bbdoc: The text box handles a number
EndRem
Const NUMERIC:Int=1
Rem
bbdoc: The text box handles only integer numbers
EndRem
Const INTEGER:Int=2
Rem
bbdoc: The text box handles only positive numbers
EndRem
Const POSITIVE:Int=4
Rem
bbdoc: Create a TText widget.
returns: The created widget.
about: @gui is the @TGUIHandler object managing this wiget. @x and @y are its position and @text is the initial text in the widget.
about: @maxlen is the maximum number of characters allowed. @mode defines the valid characters that can be entered.
about: @callback is called when RETURN is pressed in the text field.
EndRem
Function Create:TText(gui:TGUIHandler,x:Int, y:Int, text:String, maxlen:Int, mode:Int=0, callback(w:TWidget)=Null)
Local o:TText=New TText
o.enabled=True
o.consumes=True
o.x=x
o.y=y
o.maxlen=maxlen
o.w=TGUIFont.font.MaxWidth()*(maxlen+1)+2
o.h=TGUIFont.font.MaxHeight()+2
o.text=text
o.callback=callback
o.mode=mode
gui.Register(o)
Return o
End Function
Rem
bbdoc: Set the text to a floating point value.
about: @v is the floating point value (a double to cover both types). This value will be placed in the text
about: field with trailing zeros (and trailing dot if an integer) removed.
EndRem
Method SetFloat(v:Double)
Local s:String=v
If s.Find(".")<>-1
While s.length>1 And s[s.length-1]=Asc("0")
s=s[..s.length-1]
Wend
While s.length>1 And s[s.length-1]=Asc(".")
s=s[..s.length-1]
Wend
EndIf
text=s
End Method
Method HandleClick()
owner.SetFocus(Self)
End Method
Method HandleKey(k:Int)
If k=27
text=""
Else If k=8
If text.length>0
text=text[0..text.length-1]
EndIf
Else If k=13
If callback<>Null
callback(Self)
owner.SetFocus(Null)
EndIf
Else If k>31 And k<127 And text.length<maxlen
If (mode & NUMERIC)
If k=Asc("-") And (Not (mode & POSITIVE)) And text.length=0
text:+Chr(k)
EndIf
If k>=Asc("0") And k<=Asc("9")
text:+Chr(k)
EndIf
If k=Asc(".") And (Not (mode & INTEGER)) And text.Find(".")=-1
text:+Chr(k)
EndIf
Else
text:+Chr(k)
EndIf
EndIf
End Method
Method Draw()
Local s:String=text
If owner.GetFocus()=Self
SetColor(128,128,128)
s:+"_"
Else
SetColor(64,64,64)
EndIf
DrawRect(x,y,w,h)
TGUIFont.font.Draw(s,x+1,y+1)
End Method
End Type
Rem
bbdoc: The checkbox widget
EndRem
Type TCheckbox Extends TWidget
Rem
bbdoc: True if the box is checked, False otherwise.
EndRem
Field checked:Int
Rem
bbdoc: Create a TCheckox widget.
returns: The created widget.
about: @gui is the @TGUIHandler object managing this wiget. @x and @y are its position and @text is the text to display by the checkbox.
about: @callback is called when the checkbox is toggled.
EndRem
Function Create:TCheckbox(gui:TGUIHandler, x:Int, y:Int, text:String, callback(w:TWidget)=Null)
Local o:TCheckbox=New TCheckbox
o.enabled=True
o.consumes=True
o.x=x
o.y=y
o.w=TGUIFont.font.TextWidth(" "+text)+4+TGUIFont.font.MaxHeight()
o.h=TGUIFont.font.MaxHeight()+2
o.text=text
o.callback=callback
gui.Register(o)
Return o
End Function
Method HandleClick()
checked=Not checked
If callback<>Null
callback(Self)
EndIf
End Method
Method Draw()
If (mouse_over)
SetColor(255,255,255)
Else
SetColor(200,200,200)
EndIf
DrawBox(x,y,TGUIFont.font.MaxHeight(),TGUIFont.font.MaxHeight())
If checked
SetColor(255,100,100)
DrawRect(x+1,y+1,TGUIFont.font.MaxHeight()-2,TGUIFont.font.MaxHeight()-2)
EndIf
TGUIFont.font.Draw(" "+text,x+2+TGUIFont.font.MaxHeight(),y+1)
End Method
End Type
Rem
bbdoc: The button widget
EndRem
Type TButton Extends TWidget
Field ox:Int
Field oy:Int
Rem
bbdoc: Create a TButton widget.
returns: The created widget.
about: @gui is the @TGUIHandler object managing this wiget. @x, @y, @w and @h are its position and size, and @text is the text to display in the button.
about: @callback is called when the button is pressed.
EndRem
Function Create:TButton(gui:TGUIHandler, x:Int, y:Int, w:Int, h:Int, text:String, callback(w:TWidget))
Local o:TButton=New TButton
o.enabled=True
o.consumes=True
o.x=x
o.y=y
o.w=w
o.h=h
o.text=text
o.ox=x+w/2-TGUIFont.font.TextWidth(text)/2
o.oy=y+h/2-TGUIFont.font.TextHeight(text)/2
o.callback=callback
gui.Register(o)
Return o
End Function
Method HandleClick()
If callback<>Null
callback(Self)
EndIf
End Method
Method Draw()
If (mouse_over)
SetColor(255,255,255)
DrawBox(x,y,w,h)
EndIf
Draw3DBox(x+1,y+1,w-2,h-2,False,2)
TGUIFont.font.Draw(text,ox,oy)
End Method
End Type
Rem
bbdoc: A drop down list type widget
EndRem
Type TButtonList Extends TWidget
Field options:String[]
Rem
bbdoc: The selected item.
EndRem
Field selected:Int
Rem
bbdoc: Create a TButtonList widget.
returns: The created widget.
about: @gui is the @TGUIHandler object managing this wiget. @x and @y are its position. @options are the options for the list and
about: @selected is the currently selected item. @callback is called when the selection changes.
EndRem
Function Create:TButtonList(gui:TGUIHandler, x:Int, y:Int, options:String[], selected:Int, callback(w:TWidget))
Local o:TButtonList=New TButtonList
Local maxw:Int=0
o.enabled=True
o.consumes=True
o.x=x
o.y=y
o.options=options
o.selected=selected
o.text=options[selected]
For Local s:String=EachIn options
maxw=Max(maxw,TGUIFont.font.TextWidth(s))
Next
o.w=maxw+TGUIFont.font.MaxHeight()+4
o.h=TGUIFont.font.MaxHeight()+2
o.callback=callback
gui.Register(o)
Return o
End Function
Method HandleClick()
Local sel:Int=GUIMenu("Select value",options,x,y)
If sel<>-1
selected=sel
text=options[selected]
If callback<>Null
callback(Self)
EndIf
EndIf
End Method
Method Draw()
If (mouse_over)
SetColor(128,128,128)
Else
SetColor(64,64,64)
EndIf
DrawRect(x,y,w,h)
Draw3DBox(x+2,y+2,h-4,h-4,False,1)
TGUIFont.font.Draw(text,x+TGUIFont.font.MaxHeight()+3,y+1)
End Method
End Type
Rem
bbdoc: A number up/down widget for floats
EndRem
Type TNumberFloat Extends TWidget
Rem
bbdoc: The value
EndRem
Field value:Float
Rem
bbdoc: The increment/decrement
EndRem
Field change:Float
Rem
bbdoc: The maximum value
EndRem
Field maxval:Float
Rem
bbdoc: The minimum value
EndRem
Field minval:Float
Rem
bbdoc: Create a TNumber widget.
returns: The created widget.
about: @gui is the @TGUIHandler object managing this wiget. @x and @y are its position.
about: @callback is called when the value changes.
EndRem
Function Create:TNumberFloat(gui:TGUIHandler, x:Int, y:Int, callback(w:TWidget)=Null)
Local o:TNumberFloat=New TNumberFloat
o.enabled=True
o.consumes=True
o.value=0
o.minval=0
o.maxval=100
o.change=10
o.x=x
o.y=y
o.w=TGUIFont.font.MaxHeight()*2+8
o.h=TGUIFont.font.MaxHeight()+2
o.callback=callback
gui.Register(o)
Return o
End Function
Method HandleClick()
Local old:Float=value
If MouseX()<x+w/2
value=Min(value+change,maxval)
Else
value=Max(value-change,minval)
EndIf
If value<>old And callback<>Null
callback(Self)
EndIf
End Method
Method Draw()
If mouse_over
If MouseX()<x+w/2
SetColor(128,128,128)
DrawRect(x,y,w/2,h)
SetColor(64,64,64)
DrawRect(x+w/2,y,w/2,h)
Else
SetColor(64,64,64)
DrawRect(x,y,w/2,h)
SetColor(128,128,128)
DrawRect(x+w/2,y,w/2,h)
EndIf
Else
SetColor(64,64,64)
DrawRect(x,y,w,h)
EndIf
Draw3DBox(x+2,y+2,h-4,h-4,False,1)
Draw3DBox(x+w-h,y+2,h-4,h-4,False,1)
TGUIFont.font.Draw(value,x+w+2,y+1)
End Method
End Type
Rem
bbdoc: A number up/down widget for ints
EndRem
Type TNumberInt Extends TWidget
Rem
bbdoc: The value
EndRem
Field value:Int
Rem
bbdoc: The increment/decrement
EndRem
Field change:Int
Rem
bbdoc: The maximum value
EndRem
Field maxval:Int
Rem
bbdoc: The minimum value
EndRem
Field minval:Int
Rem
bbdoc: Create a TNumber widget.
returns: The created widget.
about: @gui is the @TGUIHandler object managing this wiget. @x and @y are its position.
about: @callback is called when the value changes.
EndRem
Function Create:TNumberInt(gui:TGUIHandler, x:Int, y:Int, callback(w:TWidget)=Null)
Local o:TNumberInt=New TNumberInt
o.enabled=True
o.consumes=True
o.value=0
o.minval=0
o.maxval=100
o.change=10
o.x=x
o.y=y
o.w=TGUIFont.font.MaxHeight()*2+8
o.h=TGUIFont.font.MaxHeight()+2
o.callback=callback
gui.Register(o)
Return o
End Function
Method HandleClick()
Local old:Int=value
If MouseX()<x+w/2
value=Min(value+change,maxval)
Else
value=Max(value-change,minval)
EndIf
If value<>old And callback<>Null
callback(Self)
EndIf
End Method
Method Draw()
If mouse_over
If MouseX()<x+w/2
SetColor(128,128,128)
DrawRect(x,y,w/2,h)
SetColor(64,64,64)
DrawRect(x+w/2,y,w/2,h)
Else
SetColor(64,64,64)
DrawRect(x,y,w/2,h)
SetColor(128,128,128)
DrawRect(x+w/2,y,w/2,h)
EndIf
Else
SetColor(64,64,64)
DrawRect(x,y,w,h)
EndIf
Draw3DBox(x+2,y+2,h-4,h-4,False,1)
Draw3DBox(x+w-h,y+2,h-4,h-4,False,1)
TGUIFont.font.Draw(value,x+w+2,y+1)
End Method
End Type
Rem
bbdoc: Handles the GUI.
EndRem
Type TGUIHandler
' These are private
'
Field m_widgets:TList
Field m_focus:TWidget
Field m_over:TWidget
Field m_clicked:TWidget
Rem
bbdoc: Create a GUI Handler.
returns: The GUI Hanbler.
EndRem
Function Create:TGUIHandler()
Local o:TGUIHandler
o=New TGUIHandler
o.m_widgets=CreateList()
o.m_focus=Null
o.m_over=Null
o.m_clicked=Null
Return o
End Function
Rem
bbdoc: Register a widget.
about: Widgets call this themselves.
EndRem
Method Register(w:TWidget)
m_widgets.AddLast(w)
w.owner=Self
End Method
Rem
bbdoc: Remove all widgets.
EndRem
Method Clear()
m_widgets.Clear()
End Method
Rem
bbdoc: Sets the enable state of all widgets.
about: If @state is true then all widgets are enabled, otherwise all widgets are disabled
EndRem
Method SetEnable(state:Int)
For Local w:TWidget=EachIn m_widgets
w.enabled=state
Next
End Method
Rem
bbdoc: Sets the keyboard focus to the supplied widget. Pass null for no focus.
EndRem
Method SetFocus(w:TWidget)
m_focus=w
End Method
Rem
bbdoc: Gets the keyboard focus.
returns: The currently focused TWidget, or null for no focus.
EndRem
Method GetFocus:TWidget()
Return m_focus
End Method
Rem
bbdoc: Gets the last clicked widget.
returns: The last clicked TWidget. Null is returned if this is called again before another widget is clicked.
EndRem
Method Clicked:TWidget()
Local last:TWidget=m_clicked
m_clicked=Null
Return last
End Method
Rem
bbdoc: Perform the event loop and pass any necessary events.
about: KeyHit(KEY_MOUSELEFT) and GetChar() are used to consume events for the interface.
EndRem
Method EventLoop()
Local x:Int=MouseX()
Local y:Int=MouseY()
Local b:Int=KeyHit(KEY_MOUSELEFT)>0
Local w:TWidget=LocateWidget(x,y)
For Local wid:TWidget=EachIn m_widgets
If wid.enabled
wid.Draw()
EndIf
Next
If w<>m_over
If m_over<>Null
m_over.MouseLeave()
EndIf
m_over=w
If m_over<>Null
m_over.MouseEnter()
EndIf
EndIf
If w<>Null And w.enabled And b
w.HandleClick()
m_clicked=w
EndIf
Local k:Int=GetChar()
If k<>0 And m_focus<>Null And m_focus.enabled And m_focus.consumes
m_focus.HandleKey(k)
EndIf
End Method
' Private method
'
Method LocateWidget:TWidget(x:Int,y:Int)
For Local w:TWidget=EachIn m_widgets
If x>=w.x And y>=w.y And x<w.x+w.w And y<w.y+w.h And w.consumes
Return w
EndIf
Next
Return Null
End Method
End Type
Rem
bbdoc: Displays a notification alert with the supplied string.
about: The string @s can be split into multiple lines using the '|' character. If @i is not null then this image is drawn as a mouse cursor.
EndRem
Function GUINotify(s:String, i:TImage=Null)
Local back:TImage=CreateImage(GraphicsWidth(),GraphicsHeight(),1,0)
GrabImage(back,0,0)
Local txt:TSplitText=TSplitText.Create(s)
Local w:Int=Max(txt.width+10,GraphicsWidth()/4)
Local h:Int=txt.Height+TGUIFont.font.MaxHeight()*4
Local x:Int=GraphicsWidth()/2-w/2
Local y=GraphicsHeight()/2-h/2
Local by=y+h-TGUIFont.font.MaxHeight()*2.5
Local gui:TGUIHandler=TGUIHandler.Create()
Local ty:Int=y+5
For Local t:String=EachIn txt.lines
Local label:TLabel=TLabel.Create(gui,x+5,ty,t)
ty:+TGUIFont.font.TextHeight(t)
Next
Local button:TButton=TButton.Create(gui,x+5,by,w-10,TGUIFont.font.MaxHeight()*2,"OK",Null)
Local click:TWidget=Null
While click<>button
Cls
SetAlpha(0.5)
DrawImage(back,0,0)
SetAlpha(1)
TWidget.Draw3DBox(x,y,w,h,False,2)
gui.EventLoop()
click=gui.Clicked()
If i<>Null
SetColor(255,255,255)
DrawImage(i,MouseX(),MouseY())
EndIf
Flip
FlushMem
Wend
End Function
Rem
bbdoc: Displays a yes/no alert with the supplied string.
returns: True if Yes selected, otherwise False.
about: The string @s can be split into multiple lines using the '|' character. If @i is not null then this image is drawn as a mouse cursor.
EndRem
Function GUIYesNo:Int(s:String, i:TImage=Null)
Local back:TImage=CreateImage(GraphicsWidth(),GraphicsHeight(),1,0)
GrabImage(back,0,0)
Local txt:TSplitText=TSplitText.Create(s)
Local w:Int=Max(txt.width+10,GraphicsWidth()/4)
Local h:Int=txt.Height+TGUIFont.font.MaxHeight()*4
Local x:Int=GraphicsWidth()/2-w/2
Local y=GraphicsHeight()/2-h/2
Local by=y+h-TGUIFont.font.MaxHeight()*2.5
Local gui:TGUIHandler=TGUIHandler.Create()
Local ty:Int=y+5
For Local t:String=EachIn txt.lines
Local label:TLabel=TLabel.Create(gui,x+5,ty,t)
ty:+TGUIFont.font.TextHeight(t)
Next
Local yes:TButton=TButton.Create(gui,x+5,by,w/2-10,TGUIFont.font.MaxHeight()*2,"Yes",Null)
Local no:TButton=TButton.Create(gui,x+w/2+5,by,w/2-10,TGUIFont.font.MaxHeight()*2,"No",Null)
Local click:TWidget=Null
While click=Null
Cls
SetAlpha(0.5)
DrawImage(back,0,0)
SetAlpha(1)
TWidget.Draw3DBox(x,y,w,h,False,2)
gui.EventLoop()
click=gui.Clicked()
If i<>Null
SetColor(255,255,255)
DrawImage(i,MouseX(),MouseY())
EndIf
Flip
FlushMem
Wend
Return click=yes
End Function
Rem
bbdoc: Displays a pop-up menu.
returns: The index of the selected option, -1 for none.
about: @title is the menu title, @options the options to display and @x and @y specify its position.
about: If @i is not null then this image is drawn as a mouse cursor.
EndRem
Function GUIMenu(title:String, options:String[], x:Int, y:Int, i:TImage=Null)
Local f:Int
Local back:TImage=CreateImage(GraphicsWidth(),GraphicsHeight(),1,0)
GrabImage(back,0,0)
Local st:Int=TGUIFont.font.MaxHeight()*2
Local h:Int=TGUIFont.font.MaxHeight()*3
Local w:Int=TGUIFont.font.TextWidth(title)+30
For f=0 Until options.length
w=Max(w,TGUIFont.font.TextWidth(options[f])+30)
h:+st
Next
Local gui:TGUIHandler=TGUIHandler.Create()
x=Max(0,Min(x,GraphicsWidth()-w))
y=Max(0,Min(y,GraphicsHeight()-h))
Local label:TLabel=TLabel.Create(gui,x+5,y+2,title)
Local button:TButton[]=New TButton[options.length]
For f=0 Until options.length
button[f]=TButton.Create(gui,x+5,y+TGUIFont.font.MaxHeight()*2+f*st,w-10,st-2,options[f],Null)
Next
Local click:TWidget=Null
While click=Null And KeyHit(KEY_MOUSERIGHT)=0
Cls
SetAlpha(0.5)
DrawImage(back,0,0)
SetAlpha(1)
TWidget.Draw3DBox(x,y,w,h,False,2)
gui.EventLoop()
click=gui.Clicked()
If i<>Null
SetColor(255,255,255)
DrawImage(i,MouseX(),MouseY())
EndIf
Flip
FlushMem
Wend
For f=0 Until options.length
If button[f]=click
Return f
EndIf
Next
Return -1
End Function
Rem
bbdoc: Handles a TGUIHandler as if it's a modal dialog.
returns: True if @ok is pressed, False if @cancel or the ESCAPE key is pressed. ESCAPE is only allowed if nothing has the text focus.
about: @gui is the GUI handler and widgets to display as a dialog., @ok is the clickable widget that OK's the dialog, @cancel the widget that cancels it.
about: If @i is not null then this image is drawn as a mouse cursor.
EndRem
Function GUIDialog(gui:TGUIHandler, ok:TWidget, cancel:TWidget, i:TImage=Null)
FlushKeys()
Local back:TImage=CreateImage(GraphicsWidth(),GraphicsHeight(),1,0)
GrabImage(back,0,0)
Local done:Int=False
Local ok_pressed:Int
Local click:TWidget
While done=False
Cls
SetAlpha(0.5)
DrawImage(back,0,0)
SetAlpha(1)
gui.EventLoop()
click=gui.Clicked()
If click=ok
done=True
ok_pressed=True
EndIf
If click=cancel Or (KeyHit(KEY_ESCAPE) And gui.GetFocus()=Null)
done=True
ok_pressed=False
EndIf
If i<>Null
SetColor(255,255,255)
DrawImage(i,MouseX(),MouseY())
EndIf
Flip
FlushMem
Wend
Return ok_pressed
End Function
Private
Type TSplitText
Field lines:TList
Field width:Int
Field height:Int
Function Create:TSplitText(s:String)
Local o:TSplitText=New TSplitText
o.lines=CreateList()
o.width=0
o.height=0
Local sub:String=""
For Local f:Int=0 Until s.length
Local c:Int=s[f]
If c=Asc("|")
o.lines.AddLast(sub)
o.width=Max(o.width,TGUIFont.font.TextWidth(sub))
o.height:+TGUIFont.font.TextHeight(sub)
sub=""
Else
sub:+Chr(c)
EndIf
Next
If sub.length>0
o.lines.AddLast(sub)
o.width=Max(o.width,TGUIFont.font.TextWidth(sub))
o.height:+TGUIFont.font.TextHeight(sub)
EndIf
Return o
End Function
EndType
|