comparison template/dw.c @ 1389:0512fbb08abf

Added dw_window_set_tooltip() for adding bubble help to most controls. Mac, Windows and GTK should be supported... OS/2 coming soon.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 26 Nov 2011 21:00:14 +0000
parents 156e32814c83
children fbaec6e5df63
comparison
equal deleted inserted replaced
1388:8fe15c1648c9 1389:0512fbb08abf
2805 void API dw_window_set_text(HWND handle, char *text) 2805 void API dw_window_set_text(HWND handle, char *text)
2806 { 2806 {
2807 } 2807 }
2808 2808
2809 /* 2809 /*
2810 * Sets the text used for a given window's floating bubble help.
2811 * Parameters:
2812 * handle: Handle to the window (widget).
2813 * bubbletext: The text in the floating bubble tooltip.
2814 */
2815 void API dw_window_set_tooltip(HWND handle, char *bubbletext)
2816 {
2817 }
2818
2819 /*
2810 * Disables given window (widget). 2820 * Disables given window (widget).
2811 * Parameters: 2821 * Parameters:
2812 * handle: Handle to the window. 2822 * handle: Handle to the window.
2813 */ 2823 */
2814 void API dw_window_disable(HWND handle) 2824 void API dw_window_disable(HWND handle)