|
|
|
|
|
by weinzierl
2611 days ago
|
|
> A few problems with this GUI style are: > You have to write lots of code to manage the the creation and destruction of GUI objects. [..] > The creation and destruction problem leads to slow unresponsive UIs [..] > You have to marshal your data into and out of the widgets. [..] My biggest pain point with the retained mode GUIs I worked with was none of the issues mentioned above. It was always the centralized GUI thread and the consequential synchronization complications. I don't know if this is an inherent problem of retained mode GUI frameworks and if there are some that don't force all widgets into a single thread. If not, this alone is a reason to for me to find immediate mode interesting. |
|