haiku/headers/libs/alm
2010-10-03 20:05:52 +00:00
..
ALMLayout.h - Add a alternative method to setup a group layout. BLayoutItem / BView are wrapped into a GroupItem. GroupItem overloads the | (horizontal tiling) and / (vertical tiling) operators. In this manner you can create a group layout using these operators, e.g. GroupItem item = GroupItem(button1) | (GroupItem(button2) / GroupItem(button3)); would layout button1 at the left and button2 and button3 at the right in a vertical layout. All the layout information is stored in the GroupItem item, to setup the final layout you have to call BuildLayout(item). If you like it it could also be added to the BGroupLayout. 2010-10-03 20:05:52 +00:00
Area.h - Add a alternative method to setup a group layout. BLayoutItem / BView are wrapped into a GroupItem. GroupItem overloads the | (horizontal tiling) and / (vertical tiling) operators. In this manner you can create a group layout using these operators, e.g. GroupItem item = GroupItem(button1) | (GroupItem(button2) / GroupItem(button3)); would layout button1 at the left and button2 and button3 at the right in a vertical layout. All the layout information is stored in the GroupItem item, to setup the final layout you have to call BuildLayout(item). If you like it it could also be added to the BGroupLayout. 2010-10-03 20:05:52 +00:00
Column.h - Rework the ALM layout api. The AddItemTo* function are now related to the current Area. On default the current Area is the last added Area. 2010-09-29 03:30:47 +00:00
Row.h - Rework the ALM layout api. The AddItemTo* function are now related to the current Area. On default the current Area is the last added Area. 2010-09-29 03:30:47 +00:00
Tab.h - Add helper functions to get the tabs of a view or a layout item. 2010-09-30 01:32:48 +00:00