![]() |
Add elements to UI - Printable Version +- Wings 3D Development Forum (https://www.wings3d.com/forum) +-- Forum: Wings 3D (https://www.wings3d.com/forum/forumdisplay.php?fid=1) +--- Forum: Programming (https://www.wings3d.com/forum/forumdisplay.php?fid=7) +--- Thread: Add elements to UI (/showthread.php?tid=347) |
Add elements to UI - povmaniac - 06-15-2013 Because it is so complicated to add new elements to the interface, due to 'split_list'. Is there no a better system of doing this (in Erlang)? Code: export_dialog_loop({Op,Fun}=Keep, Attr) -> Or there... Code: %%% Increase split_list # +1 per line if add Modulator to Dialog ![]() RE: Add elements to UI - micheus - 06-17-2013 povmaniac, I'm not sure I can help you with this, but have you took a look in the Ask dialogs examples (wpc_test_ask.erl) at /wings/plugin_src? There is an sample about add components dynamically: dynamic_dialog/1 Maybe it can help you. You also can load the module by typing at the Erlang console (after you start your Wings3d): Code: 1> wpc_test_ask:enable(). RE: Add elements to UI - povmaniac - 06-17-2013 Ok. My Erlang is not good, atm ![]() Thanks |