comparison template/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 61d0c5f84644
comparison
equal deleted inserted replaced
1210:5a016a5a7412 1211:70dca53cb071
1849 /* 1849 /*
1850 * Sets the alternating row colors for container window (widget) handle. 1850 * Sets the alternating row colors for container window (widget) handle.
1851 * Parameters: 1851 * Parameters:
1852 * handle: The window (widget) handle. 1852 * handle: The window (widget) handle.
1853 * oddcolor: Odd row background color in DW_RGB format or a default color index. 1853 * oddcolor: Odd row background color in DW_RGB format or a default color index.
1854 * DW_CLR_DEFAULT will disable coloring odd rows.
1855 * evencolor: Even row background color in DW_RGB format or a default color index. 1854 * evencolor: Even row background color in DW_RGB format or a default color index.
1856 * DW_CLR_DEFAULT will disable coloring even rows. 1855 * DW_RGB_TRANSPARENT will disable coloring rows.
1856 * DW_CLR_DEFAULT will use the system default alternating row colors.
1857 */ 1857 */
1858 void API dw_container_set_row_bg(HWND handle, unsigned long oddcolor, unsigned long evencolor) 1858 void API dw_container_set_row_bg(HWND handle, unsigned long oddcolor, unsigned long evencolor)
1859 { 1859 {
1860 } 1860 }
1861 1861