comparison gtk/dw.c @ 487:d6e07d292145

Implemented taskbar icons on windows, so I can keep feature for feature with InJoy Firewall.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 08 Nov 2003 15:30:19 +0000
parents 3bc712d2c362
children fafd37119db4
comparison
equal deleted inserted replaced
486:3bc712d2c362 487:d6e07d292145
5472 } 5472 }
5473 DW_MUTEX_UNLOCK; 5473 DW_MUTEX_UNLOCK;
5474 } 5474 }
5475 5475
5476 /* 5476 /*
5477 * Inserts an icon into the taskbar.
5478 * Parameters:
5479 * handle: Window handle that will handle taskbar icon messages.
5480 * icon: Icon handle to display in the taskbar.
5481 * bubbletext: Text to show when the mouse is above the icon.
5482 */
5483 void dw_taskbar_insert(HWND handle, unsigned long icon, char *bubbletext)
5484 {
5485 /* TODO */
5486 }
5487
5488 /*
5489 * Deletes an icon from the taskbar.
5490 * Parameters:
5491 * handle: Window handle that was used with dw_taskbar_insert().
5492 * icon: Icon handle that was used with dw_taskbar_insert().
5493 */
5494 void dw_taskbar_delete(HWND handle, unsigned long icon)
5495 {
5496 /* TODO */
5497 }
5498
5499 /*
5477 * Creates a rendering context widget (window) to be packed. 5500 * Creates a rendering context widget (window) to be packed.
5478 * Parameters: 5501 * Parameters:
5479 * id: An id to be used with dw_window_from_id. 5502 * id: An id to be used with dw_window_from_id.
5480 * Returns: 5503 * Returns:
5481 * A handle to the widget or NULL on failure. 5504 * A handle to the widget or NULL on failure.