comparison mac/dw.m @ 1678:896f377a47c7

Added exports for building with MinGW on Windows and Watcom on OS/2. Updated some errorneous text in the source comments. Updated readme with information about the new functions.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 27 Apr 2012 15:49:16 +0000
parents db393069b27d
children e19b93a8229b
comparison
equal deleted inserted replaced
1677:60f8ae42a0be 1678:896f377a47c7
4036 4036
4037 /* 4037 /*
4038 * Pack windows (widgets) into a box at an arbitrary location. 4038 * Pack windows (widgets) into a box at an arbitrary location.
4039 * Parameters: 4039 * Parameters:
4040 * box: Window handle of the box to be packed into. 4040 * box: Window handle of the box to be packed into.
4041 * item: Window handle of the item to be back. 4041 * item: Window handle of the item to pack.
4042 * index: 0 based index of packed items. 4042 * index: 0 based index of packed items.
4043 * width: Width in pixels of the item or -1 to be self determined. 4043 * width: Width in pixels of the item or -1 to be self determined.
4044 * height: Height in pixels of the item or -1 to be self determined. 4044 * height: Height in pixels of the item or -1 to be self determined.
4045 * hsize: TRUE if the window (widget) should expand horizontally to fill space given. 4045 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
4046 * vsize: TRUE if the window (widget) should expand vertically to fill space given. 4046 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
4053 4053
4054 /* 4054 /*
4055 * Pack windows (widgets) into a box from the start (or top). 4055 * Pack windows (widgets) into a box from the start (or top).
4056 * Parameters: 4056 * Parameters:
4057 * box: Window handle of the box to be packed into. 4057 * box: Window handle of the box to be packed into.
4058 * item: Window handle of the item to be back. 4058 * item: Window handle of the item to pack.
4059 * width: Width in pixels of the item or -1 to be self determined. 4059 * width: Width in pixels of the item or -1 to be self determined.
4060 * height: Height in pixels of the item or -1 to be self determined. 4060 * height: Height in pixels of the item or -1 to be self determined.
4061 * hsize: TRUE if the window (widget) should expand horizontally to fill space given. 4061 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
4062 * vsize: TRUE if the window (widget) should expand vertically to fill space given. 4062 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
4063 * pad: Number of pixels of padding around the item. 4063 * pad: Number of pixels of padding around the item.
4072 4072
4073 /* 4073 /*
4074 * Pack windows (widgets) into a box from the end (or bottom). 4074 * Pack windows (widgets) into a box from the end (or bottom).
4075 * Parameters: 4075 * Parameters:
4076 * box: Window handle of the box to be packed into. 4076 * box: Window handle of the box to be packed into.
4077 * item: Window handle of the item to be back. 4077 * item: Window handle of the item to pack.
4078 * width: Width in pixels of the item or -1 to be self determined. 4078 * width: Width in pixels of the item or -1 to be self determined.
4079 * height: Height in pixels of the item or -1 to be self determined. 4079 * height: Height in pixels of the item or -1 to be self determined.
4080 * hsize: TRUE if the window (widget) should expand horizontally to fill space given. 4080 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
4081 * vsize: TRUE if the window (widget) should expand vertically to fill space given. 4081 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
4082 * pad: Number of pixels of padding around the item. 4082 * pad: Number of pixels of padding around the item.