comparison mac/dw.c @ 508:078a40ba2e41

Added dw_container_get_column_type and dw_filesystem_get_column_type.
author mhessling@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 18 Feb 2004 10:26:49 +0000
parents bc156294dd16
children 710f82598210
comparison
equal deleted inserted replaced
507:c607eb385e58 508:078a40ba2e41
2259 { 2259 {
2260 dw_container_set_item(handle, pointer, column + 2, row, data); 2260 dw_container_set_item(handle, pointer, column + 2, row, data);
2261 } 2261 }
2262 2262
2263 /* 2263 /*
2264 * Gets column type for a container column
2265 * Parameters:
2266 * handle: Handle to the container window (widget).
2267 * column: Zero based column.
2268 */
2269 int API dw_container_get_column_type(HWND handle, int column)
2270 {
2271 return 0;
2272 }
2273
2274 /*
2275 * Gets column type for a filesystem container column
2276 * Parameters:
2277 * handle: Handle to the container window (widget).
2278 * column: Zero based column.
2279 */
2280 int API dw_filesystem_get_column_type(HWND handle, int column)
2281 {
2282 return dw_container_get_column_type( handle, column + 1 );
2283 }
2284
2285 /*
2264 * Sets the width of a column in the container. 2286 * Sets the width of a column in the container.
2265 * Parameters: 2287 * Parameters:
2266 * handle: Handle to window (widget) of container. 2288 * handle: Handle to window (widget) of container.
2267 * column: Zero based column of width being set. 2289 * column: Zero based column of width being set.
2268 * width: Width of column in pixels. 2290 * width: Width of column in pixels.