comparison os2/dw.c @ 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 007bced14910
children e19b93a8229b
comparison
equal deleted inserted replaced
1677:60f8ae42a0be 1678:896f377a47c7
7300 7300
7301 /* 7301 /*
7302 * Pack windows (widgets) into a box at an arbitrary location. 7302 * Pack windows (widgets) into a box at an arbitrary location.
7303 * Parameters: 7303 * Parameters:
7304 * box: Window handle of the box to be packed into. 7304 * box: Window handle of the box to be packed into.
7305 * item: Window handle of the item to be back. 7305 * item: Window handle of the item to pack.
7306 * index: 0 based index of packed items. 7306 * index: 0 based index of packed items.
7307 * width: Width in pixels of the item or -1 to be self determined. 7307 * width: Width in pixels of the item or -1 to be self determined.
7308 * height: Height in pixels of the item or -1 to be self determined. 7308 * height: Height in pixels of the item or -1 to be self determined.
7309 * hsize: TRUE if the window (widget) should expand horizontally to fill space given. 7309 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
7310 * vsize: TRUE if the window (widget) should expand vertically to fill space given. 7310 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
7317 7317
7318 /* 7318 /*
7319 * Pack windows (widgets) into a box from the start (or top). 7319 * Pack windows (widgets) into a box from the start (or top).
7320 * Parameters: 7320 * Parameters:
7321 * box: Window handle of the box to be packed into. 7321 * box: Window handle of the box to be packed into.
7322 * item: Window handle of the item to be back. 7322 * item: Window handle of the item to pack.
7323 * width: Width in pixels of the item or -1 to be self determined. 7323 * width: Width in pixels of the item or -1 to be self determined.
7324 * height: Height in pixels of the item or -1 to be self determined. 7324 * height: Height in pixels of the item or -1 to be self determined.
7325 * hsize: TRUE if the window (widget) should expand horizontally to fill space given. 7325 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
7326 * vsize: TRUE if the window (widget) should expand vertically to fill space given. 7326 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
7327 * pad: Number of pixels of padding around the item. 7327 * pad: Number of pixels of padding around the item.
7336 7336
7337 /* 7337 /*
7338 * Pack windows (widgets) into a box from the end (or bottom). 7338 * Pack windows (widgets) into a box from the end (or bottom).
7339 * Parameters: 7339 * Parameters:
7340 * box: Window handle of the box to be packed into. 7340 * box: Window handle of the box to be packed into.
7341 * item: Window handle of the item to be back. 7341 * item: Window handle of the item to pack.
7342 * width: Width in pixels of the item or -1 to be self determined. 7342 * width: Width in pixels of the item or -1 to be self determined.
7343 * height: Height in pixels of the item or -1 to be self determined. 7343 * height: Height in pixels of the item or -1 to be self determined.
7344 * hsize: TRUE if the window (widget) should expand horizontally to fill space given. 7344 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
7345 * vsize: TRUE if the window (widget) should expand vertically to fill space given. 7345 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
7346 * pad: Number of pixels of padding around the item. 7346 * pad: Number of pixels of padding around the item.