toolbar - A toolbar handle
tips$ - The 'tips' to set for the toolbar |
SetToolBarTips allows you attach textual 'tips' to toolbar buttons.
Toolbar tips appear as small rectangular popups when the mouse pointer is held over a toolbar button for about a second. Their purpose is to let the user know what those buttons really mean! Tips for multiple buttons on the toolbar should be separated by commas - see the example below for details. See also: CreateToolbar. |
; Example provided by Mag, added to documentation by Mark Tiffany
; get bitmap icon from the Blitz directory appdir$=SystemProperty("appdir") blitzdir$=Left(appdir,Len(appdir)-5) BMP$=blitzdir$+"\cfg\dbg_toolbar.bmp" Notify "We will use this bitmap for our ToolBar: "+Chr$(13)+BMP$ ; create a window to put the toolbar in WinHandle=CreateWindow("Test CreateToolbar",0,0,400,200) ; and create the toolbar toolHandle=CreateToolBar(BMP$,0,0,0,0,WinHandle) ; create the tooltips SetToolBarTips toolHandle,"Red Light,Green Light,Step Next,Step Into,Step Over,BOOM!" ; and now a loop to demonstrate it in action Repeat event=WaitEvent() If event=$803 Then End ; exit when we receive a Window Close event If event=$401 Then ; Button action event. EventData contains the toolbar button hit. ; Note that if we had more than just the toolbar on the form, we would check EventSource too If EventData()=0 Then Notify "Red Light selected" If EventData()=1 Then Notify "Green Light selected" If EventData()=2 Then Notify "Step Next selected" If EventData()=3 Then Notify "Step Into selected" If EventData()=4 Then Notify "Step Over selected" If EventData()=5 Then Notify "Boom selected" End If Forever End |