comparison gtk/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 60f8ae42a0be
children e19b93a8229b
comparison
equal deleted inserted replaced
1677:60f8ae42a0be 1678:896f377a47c7
10498 10498
10499 /* 10499 /*
10500 * Pack windows (widgets) into a box at an arbitrary location. 10500 * Pack windows (widgets) into a box at an arbitrary location.
10501 * Parameters: 10501 * Parameters:
10502 * box: Window handle of the box to be packed into. 10502 * box: Window handle of the box to be packed into.
10503 * item: Window handle of the item to be back. 10503 * item: Window handle of the item to pack.
10504 * index: 0 based index of packed items. 10504 * index: 0 based index of packed items.
10505 * width: Width in pixels of the item or -1 to be self determined. 10505 * width: Width in pixels of the item or -1 to be self determined.
10506 * height: Height in pixels of the item or -1 to be self determined. 10506 * height: Height in pixels of the item or -1 to be self determined.
10507 * hsize: TRUE if the window (widget) should expand horizontally to fill space given. 10507 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
10508 * vsize: TRUE if the window (widget) should expand vertically to fill space given. 10508 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
10515 10515
10516 /* 10516 /*
10517 * Pack windows (widgets) into a box from the start (or top). 10517 * Pack windows (widgets) into a box from the start (or top).
10518 * Parameters: 10518 * Parameters:
10519 * box: Window handle of the box to be packed into. 10519 * box: Window handle of the box to be packed into.
10520 * item: Window handle of the item to be back. 10520 * item: Window handle of the item to pack.
10521 * width: Width in pixels of the item or -1 to be self determined. 10521 * width: Width in pixels of the item or -1 to be self determined.
10522 * height: Height in pixels of the item or -1 to be self determined. 10522 * height: Height in pixels of the item or -1 to be self determined.
10523 * hsize: TRUE if the window (widget) should expand horizontally to fill space given. 10523 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
10524 * vsize: TRUE if the window (widget) should expand vertically to fill space given. 10524 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
10525 * pad: Number of pixels of padding around the item. 10525 * pad: Number of pixels of padding around the item.
10534 10534
10535 /* 10535 /*
10536 * Pack windows (widgets) into a box from the end (or bottom). 10536 * Pack windows (widgets) into a box from the end (or bottom).
10537 * Parameters: 10537 * Parameters:
10538 * box: Window handle of the box to be packed into. 10538 * box: Window handle of the box to be packed into.
10539 * item: Window handle of the item to be back. 10539 * item: Window handle of the item to pack.
10540 * width: Width in pixels of the item or -1 to be self determined. 10540 * width: Width in pixels of the item or -1 to be self determined.
10541 * height: Height in pixels of the item or -1 to be self determined. 10541 * height: Height in pixels of the item or -1 to be self determined.
10542 * hsize: TRUE if the window (widget) should expand horizontally to fill space given. 10542 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
10543 * vsize: TRUE if the window (widget) should expand vertically to fill space given. 10543 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
10544 * pad: Number of pixels of padding around the item. 10544 * pad: Number of pixels of padding around the item.