comparison gtk/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 fc87309372ef
children 70dca53cb071
comparison
equal deleted inserted replaced
1207:423da07c8f05 1208:53547c9c99a2
7115 { 7115 {
7116 return dw_container_get_column_type( handle, column + 1 ); 7116 return dw_container_get_column_type( handle, column + 1 );
7117 } 7117 }
7118 7118
7119 /* 7119 /*
7120 * Sets the alternating row colors for container window (widget) handle.
7121 * Parameters:
7122 * handle: The window (widget) handle.
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.
7126 * DW_CLR_DEFAULT will disable coloring even rows.
7127 */
7128 void API dw_container_set_row_bg(HWND handle, unsigned long oddcolor, unsigned long evencolor)
7129 {
7130 }
7131
7132 /*
7120 * Sets the width of a column in the container. 7133 * Sets the width of a column in the container.
7121 * Parameters: 7134 * Parameters:
7122 * handle: Handle to window (widget) of container. 7135 * handle: Handle to window (widget) of container.
7123 * column: Zero based column of width being set. 7136 * column: Zero based column of width being set.
7124 * width: Width of column in pixels. 7137 * width: Width of column in pixels.