
23 Dec
2004
23 Dec
'04
6:17 p.m.
I'd like to expand this list: http://www.cs.washington.edu/research/constraints/index.html I think a layout manager should be based on something like constraint-based system. boost::ui::layout_manager mngr(this); mngr.insert_window( "ResultsGrid" ) .insert_window( "Divider1" ) .min_distance( "Parent.left", "Parent.right", 11130 ) .min_distance( "Parent.top", "Parent.bottom", 5115 ) .const_height( "Divider1" ) .offset( "Divider1.right", "Parent.right", 120 ) .offset( "Divider1.left", "Parent.left", -120 ) .offset( "Divider1.top", "Parent.top", -510 ) .setup() ; ---- Aleksey Chernoraenko