Hi guys,
I'm an experienced Qt programmer wanting to try FLTK for my hobby project.
I'm really struggling with understanding how the layout system works more specifically how to approach building a complex UI. My main concern is that every code I met on the internet positions widgets manually (i.e. specifying x, y, width, hight) and put them into FL_Groups.
In Qt you never position your widget, the layout system does it for you, you just have to tell it how you want this to be done.
So my question is is this a normal way of writing a UI - by calculating all widgets coordinates manually? (I don't like using builders like FLUID)
Another question - I haven't seen a single example with FL_Pack - which seems to have some automatic positioning. Is deprecated or why wasn't it used in the examples I met?
Maybe someone knows any resources for those coming from Qt?
Thanks!