comparison gtk3/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 923af93e4084
children e19b93a8229b
comparison
equal deleted inserted replaced
1677:60f8ae42a0be 1678:896f377a47c7
8766 8766
8767 /* 8767 /*
8768 * Pack windows (widgets) into a box at an arbitrary location. 8768 * Pack windows (widgets) into a box at an arbitrary location.
8769 * Parameters: 8769 * Parameters:
8770 * box: Window handle of the box to be packed into. 8770 * box: Window handle of the box to be packed into.
8771 * item: Window handle of the item to be back. 8771 * item: Window handle of the item to pack.
8772 * index: 0 based index of packed items. 8772 * index: 0 based index of packed items.
8773 * width: Width in pixels of the item or -1 to be self determined. 8773 * width: Width in pixels of the item or -1 to be self determined.
8774 * height: Height in pixels of the item or -1 to be self determined. 8774 * height: Height in pixels of the item or -1 to be self determined.
8775 * hsize: TRUE if the window (widget) should expand horizontally to fill space given. 8775 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
8776 * vsize: TRUE if the window (widget) should expand vertically to fill space given. 8776 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
8783 8783
8784 /* 8784 /*
8785 * Pack windows (widgets) into a box from the start (or top). 8785 * Pack windows (widgets) into a box from the start (or top).
8786 * Parameters: 8786 * Parameters:
8787 * box: Window handle of the box to be packed into. 8787 * box: Window handle of the box to be packed into.
8788 * item: Window handle of the item to be back. 8788 * item: Window handle of the item to pack.
8789 * width: Width in pixels of the item or -1 to be self determined. 8789 * width: Width in pixels of the item or -1 to be self determined.
8790 * height: Height in pixels of the item or -1 to be self determined. 8790 * height: Height in pixels of the item or -1 to be self determined.
8791 * hsize: TRUE if the window (widget) should expand horizontally to fill space given. 8791 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
8792 * vsize: TRUE if the window (widget) should expand vertically to fill space given. 8792 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
8793 * pad: Number of pixels of padding around the item. 8793 * pad: Number of pixels of padding around the item.
8802 8802
8803 /* 8803 /*
8804 * Pack windows (widgets) into a box from the end (or bottom). 8804 * Pack windows (widgets) into a box from the end (or bottom).
8805 * Parameters: 8805 * Parameters:
8806 * box: Window handle of the box to be packed into. 8806 * box: Window handle of the box to be packed into.
8807 * item: Window handle of the item to be back. 8807 * item: Window handle of the item to pack.
8808 * width: Width in pixels of the item or -1 to be self determined. 8808 * width: Width in pixels of the item or -1 to be self determined.
8809 * height: Height in pixels of the item or -1 to be self determined. 8809 * height: Height in pixels of the item or -1 to be self determined.
8810 * hsize: TRUE if the window (widget) should expand horizontally to fill space given. 8810 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
8811 * vsize: TRUE if the window (widget) should expand vertically to fill space given. 8811 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
8812 * pad: Number of pixels of padding around the item. 8812 * pad: Number of pixels of padding around the item.