| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
Arguments: common-status-bar
Returns the list of section widths for common-status-bar. Each width in the list may be either:
a fixnum indicating a fixed pixel-width.
a float between 0 and 1 (non-inclusive), to indicate what portion of the extra space that was not used up by the fixed sections is allocated to that part.
the symbol t. Any extra width of the status-bar that was not used up by the fixed and float sections will be divided evenly amongst any "t" sections.
For example,
(setf (parts my-status-bar) '(60 40 .5 .3 t))
This would allocate the first 100 pixels of my-status-bar's width to the first two sections, then 50% and 30% of the remaining width would go to the next two sections, and whatever is left would go to the last section.
Copyright (c) 1998-2016, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.1 page.
Created 2010.1.21.
| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |