comparison gtk/dw.c @ 1211:70dca53cb071

Updated GTK3 with the behavior change just commited for Mac. Also updated the comments in all the source files to reflect the change.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 08 Oct 2011 20:47:34 +0000
parents 53547c9c99a2
children f87e5a44f45e
comparison
equal deleted inserted replaced
1210:5a016a5a7412 1211:70dca53cb071
7119 /* 7119 /*
7120 * Sets the alternating row colors for container window (widget) handle. 7120 * Sets the alternating row colors for container window (widget) handle.
7121 * Parameters: 7121 * Parameters:
7122 * handle: The window (widget) handle. 7122 * handle: The window (widget) handle.
7123 * oddcolor: Odd row background color in DW_RGB format or a default color index. 7123 * oddcolor: Odd row background color in DW_RGB format or a default color index.
7124 * DW_CLR_DEFAULT will disable coloring odd rows.
7125 * evencolor: Even row background color in DW_RGB format or a default color index. 7124 * evencolor: Even row background color in DW_RGB format or a default color index.
7126 * DW_CLR_DEFAULT will disable coloring even rows. 7125 * DW_RGB_TRANSPARENT will disable coloring rows.
7126 * DW_CLR_DEFAULT will use the system default alternating row colors.
7127 */ 7127 */
7128 void API dw_container_set_row_bg(HWND handle, unsigned long oddcolor, unsigned long evencolor) 7128 void API dw_container_set_row_bg(HWND handle, unsigned long oddcolor, unsigned long evencolor)
7129 { 7129 {
7130 } 7130 }
7131 7131