Gadgets in statusbar

BlitzMax Forums/MaxGUI Module/Gadgets in statusbar

Ghost Dancer(Posted 2010) [#1]
Is there anyway of doing this? It would be nice to add labels & progress bars in the statusbar for the app I'm writing.

I've tried simply adding gadgets parented to the main window but no joy.


skn3(Posted 2010) [#2]
You can do it by making a fake status bar using panels but I think that is all that is available to you with maxgui


jsp(Posted 2010) [#3]
Here you go:




Ghost Dancer(Posted 2010) [#4]
Nice one. Thanks jsp :) Is there a way of doing this on a Mac too?


Zeke(Posted 2010) [#5]

this is also one solution. (forgot to use SetLayout) but this show how to use panel as statusbar.


Ghost Dancer(Posted 2010) [#6]
Thanks Zeke, thats an good workaround, but by manually coding the status bar there is no resize handle.

I'm leaning more towards jps's method but there is a good chance I will need to do a Mac version so need to work out how to do that.