$toolbar » History » Revision 14
Revision 13 (Per Amundsen, 04/30/2022 01:20 AM) → Revision 14/15 (Per Amundsen, 04/30/2022 01:31 AM)
_Added in 1.9.3_
*$toolbar*
Returns [[$true]] if the [[Toolbar_Control|Toolbar]] is visible, otherwise [[$false]].
_See also [[/toolbar]], [[Toolbar_Control|Toolbar]]._
-----------------------------------------------------------------------------
*$toolbar(name||N)*
Returns properties for a [[Toolbar_Control|Toolbar]] button.
*Parameters*
name||N - Toolbar item name or the Nth item, if N = 0, number of [[Toolbar_Control|Toolbar]] items.
*Properties*
.name - [[Toolbar_Control|Toolbar]] item name.
.type - button or separator.
.tip - [[Toolbar_Control|Toolbar]] tooltip text.
.alias - [[Toolbar_Control|Toolbar]] alias.
.popup - [[Toolbar_Control|Toolbar]] popup name.
.width - [[Toolbar_Control|Toolbar]] item width.
.height - [[Toolbar_Control|Toolbar]] item height.
.wide - *TODO* ($true)
.enabled - [[$true]] if the Toolbar item is enabled, otherwise [[$false]].
.visible - [[$true]] if the Toolbar item is visible, otherwise [[$false]].
.checked - [[$true]] if the Toolbar item is checked, otherwise [[$false]].
.alpha - *TODO* (0)
.iconfile - Returns the icon file, if any. *(AdiIRC only)*
.x - Horizontal position of the [[Toolbar_Control|Toolbar]] item relative to the main AdiIRC window. *(AdiIRC only)*
.y - Vertical position of the [[Toolbar_Control|Toolbar]] item relative to the main AdiIRC window. *(AdiIRC only)*
.w - [[Toolbar_Control|Toolbar]] item width. *(AdiIRC only)*
.h - [[Toolbar_Control|Toolbar]] item height. *(AdiIRC only)*
.dx - Horizontal position of the [[Toolbar_Control|Toolbar]] item relative to the desktop. *(AdiIRC only)*
.dy - Vertical position of the [[Toolbar_Control|Toolbar]] item relative to the desktop. *(AdiIRC only)*
*Example*
<pre>
; Print number of Toolbar items.
//echo -ag $toolbar(0)
; Print the first Toolbar item name.
//echo -ag $toolbar(1)
</pre>