2015-03-05 3:49 GMT+01:00 Offray Vladimir Luna Cárdenas <[email protected]>:
> Hi,
>
> I would like to add a fixed tool bar in the upper side of the word in
> Pharo, similar to the one that is in Squeak. I think that having this kind
> of fixed places with tools help newbies to find help and launch stuff.
> There is any place where I can install or look for a functionality like
> this one?
>
> Thanks,
>
> Offray
>
>
There is DockingBarMorph, for example:
|d|
"World deleteDockingBars."
d:=
DockingBarMorph new.
World worldMenu items copy select:[:i| i hasSubMenu] thenDo:[:i|
d
add: i contents
icon: i icon
help: i contents
subMenu: i subMenu].
d adhereToTop;
openInWorld.
Although this does not work at the moment due to issue
14829 <https://pharo.fogbugz.com/default.asp?14829>
Spec MenuModel submenu not working