44.1 Overview

Scrollgroup class is a special variant of Group class which adds scrollbars to groups to make it possible to use groups which are larger than the available GUI space. The user can simply scroll through the group then using the scrollbars attached to the group. When there is enough space for the complete group, the scrollbars are automatically hidden unless explicitly configured not to do so.

Scrollgroups can be created in a similar fashion to normal groups. Here is an XML example:

 
<scrollgroup>
    <radio>
       <item>Amiga 500</item>
       <item>Amiga 1200</item>
       <item>Amiga 4000</item>
    </radio>
    <listview>
       <column/>
    </listview>
</scrollgroup>

The XML code above embeds a radio and a listview object inside a scrollgroup.


Show TOC