diff dw.h @ 63:a6801a2260af

Synched up with the latest dynamic windows, has new slider support and transparency, focus, and other bug fixes on various platforms.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 14 Jan 2002 00:48:08 +0000
parents 2be5174bdb5d
children ab9b0fa6c66e
line wrap: on
line diff
--- a/dw.h	Sat Dec 08 04:47:43 2001 +0000
+++ b/dw.h	Mon Jan 14 00:48:08 2002 +0000
@@ -614,6 +614,7 @@
 HWND dw_spinbutton_new(char *text, unsigned long id);
 HWND dw_radiobutton_new(char *text, ULONG id);
 HWND dw_percent_new(unsigned long id);
+HWND dw_slider_new(int vertical, int increments, ULONG id);
 HWND dw_checkbox_new(char *text, unsigned long id);
 HWND dw_listbox_new(unsigned long id, int multi);
 void dw_listbox_append(HWND handle, char *text);
@@ -628,6 +629,8 @@
 int dw_listbox_selected_multi(HWND handle, int where);
 unsigned int dw_percent_query_range(HWND handle);
 void dw_percent_set_pos(HWND handle, unsigned int position);
+unsigned int dw_slider_query_pos(HWND handle);
+void dw_slider_set_pos(HWND handle, unsigned int position);
 void dw_window_set_pos(HWND handle, unsigned long x, unsigned long y);
 void dw_window_set_usize(HWND handle, unsigned long width, unsigned long height);
 void dw_window_set_pos_size(HWND handle, unsigned long x, unsigned long y, unsigned long width, unsigned long height);