comparison template/dw.c @ 1208:53547c9c99a2

Added dw_container_set_row_bg() stubs on the remaining platforms. It is possible but complicated to implement on Windows... will implement when I find time. Researching GTK1/2 support since they use GtkCList instead of GtkTreeView like GTK3. OS/2 I believe this is impossible to implement.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 08 Oct 2011 19:20:09 +0000
parents f86f556ff29d
children 70dca53cb071
comparison
equal deleted inserted replaced
1207:423da07c8f05 1208:53547c9c99a2
1845 { 1845 {
1846 return 0; 1846 return 0;
1847 } 1847 }
1848 1848
1849 /* 1849 /*
1850 * Sets the alternating row colors for container window (widget) handle.
1851 * Parameters:
1852 * handle: The window (widget) handle.
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.
1856 * DW_CLR_DEFAULT will disable coloring even rows.
1857 */
1858 void API dw_container_set_row_bg(HWND handle, unsigned long oddcolor, unsigned long evencolor)
1859 {
1860 }
1861
1862 /*
1850 * Sets the width of a column in the container. 1863 * Sets the width of a column in the container.
1851 * Parameters: 1864 * Parameters:
1852 * handle: Handle to window (widget) of container. 1865 * handle: Handle to window (widget) of container.
1853 * column: Zero based column of width being set. 1866 * column: Zero based column of width being set.
1854 * width: Width of column in pixels. 1867 * width: Width of column in pixels.