Changes between Version 1 and Version 2 of FRAME_SIZE_R0
- Timestamp:
- 12/12/08 17:15:46 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FRAME_SIZE_R0
v1 v2 7 7 8 8 == Overview == 9 The frame`s size is the width and hight of the frame. They are measured including paddings and the !FrameBorder but neither the visual component`s border nor the margins. A frame could have different sizes and could be evenbigger than the page. In that case the frame`s parts which are outside the page`s range will be clipped out and wont be seen in reader mode. In author mode however all frames should be seen in whole.9 The frame`s size is the width and hight of the frame. In default mode they are the measurements of the frame content. The frame should be able to calculate its size in different modes (including paddings, border and/or margins). A frame could even be bigger than the page. In that case the frame`s parts which are outside the page`s range will be clipped out and wont be seen in reader mode. In author mode however all frames should be seen in whole. 10 10 11 11 == Task requirements == 12 12 * The frame should have properties describing width and hight. 13 13 * Those properties should be equal or grater than 0. 14 * The frame should be able to set and get its size in all modes. 14 15 15 16 == Task result == … … 18 19 == Implementation idea == 19 20 * Create width and hight value properties in the Frame. 21 * Create enums for modes if needed. 20 22 21 23 == Related ==