Qbasicnews.com
FB GUI with on-demand plumbing? - Printable Version

+- Qbasicnews.com (http://qbasicnews.com/newforum)
+-- Forum: Qbasic "like" compilers/interpreters (http://qbasicnews.com/newforum/forum-5.html)
+--- Forum: FB Discussion & Programming Help (http://qbasicnews.com/newforum/forum-15.html)
+--- Thread: FB GUI with on-demand plumbing? (/thread-9026.html)



FB GUI with on-demand plumbing? - Agamemnus - 03-15-2006

Hi folks,

I need a GUI system that lets me place standardized graphic user interface elements.

I also need the GUI system to have on-demand plumbing, that is, nothing in the GUI changes unless I tell it to change. For instance, say I am moving along a scrollbar. So the system would have a function that checks whether I clicked in the scrollbar. I call the function, then I call one that calculates by how much I should scroll, and one that updates the scrollbar picture. I do NOT want a pre-set arrangement that "automatically" adjusts the scrollbar as I click on it like in VB.

Any suggestions? Big Grin


FB GUI with on-demand plumbing? - Antoni Gual - 03-15-2006

Windows API?


FB GUI with on-demand plumbing? - Anonymous - 03-15-2006

Port a QB "OS" to FB.


FB GUI with on-demand plumbing? - NecrosIhsan - 03-15-2006

GTK.


FB GUI with on-demand plumbing? - na_th_an - 03-15-2006

Allegro comes with a GUI which is pretty flexible plus "skinnable".


FB GUI with on-demand plumbing? - Agamemnus - 03-18-2006

Thanks, I'll look into those.