comparison 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
comparison
equal deleted inserted replaced
62:2be5174bdb5d 63:a6801a2260af
612 HWND dw_combobox_new(char *text, unsigned long id); 612 HWND dw_combobox_new(char *text, unsigned long id);
613 HWND dw_button_new(char *text, unsigned long id); 613 HWND dw_button_new(char *text, unsigned long id);
614 HWND dw_spinbutton_new(char *text, unsigned long id); 614 HWND dw_spinbutton_new(char *text, unsigned long id);
615 HWND dw_radiobutton_new(char *text, ULONG id); 615 HWND dw_radiobutton_new(char *text, ULONG id);
616 HWND dw_percent_new(unsigned long id); 616 HWND dw_percent_new(unsigned long id);
617 HWND dw_slider_new(int vertical, int increments, ULONG id);
617 HWND dw_checkbox_new(char *text, unsigned long id); 618 HWND dw_checkbox_new(char *text, unsigned long id);
618 HWND dw_listbox_new(unsigned long id, int multi); 619 HWND dw_listbox_new(unsigned long id, int multi);
619 void dw_listbox_append(HWND handle, char *text); 620 void dw_listbox_append(HWND handle, char *text);
620 void dw_listbox_clear(HWND handle); 621 void dw_listbox_clear(HWND handle);
621 int dw_listbox_count(HWND handle); 622 int dw_listbox_count(HWND handle);
626 void dw_listbox_set_text(HWND handle, unsigned int index, char *buffer); 627 void dw_listbox_set_text(HWND handle, unsigned int index, char *buffer);
627 unsigned int dw_listbox_selected(HWND handle); 628 unsigned int dw_listbox_selected(HWND handle);
628 int dw_listbox_selected_multi(HWND handle, int where); 629 int dw_listbox_selected_multi(HWND handle, int where);
629 unsigned int dw_percent_query_range(HWND handle); 630 unsigned int dw_percent_query_range(HWND handle);
630 void dw_percent_set_pos(HWND handle, unsigned int position); 631 void dw_percent_set_pos(HWND handle, unsigned int position);
632 unsigned int dw_slider_query_pos(HWND handle);
633 void dw_slider_set_pos(HWND handle, unsigned int position);
631 void dw_window_set_pos(HWND handle, unsigned long x, unsigned long y); 634 void dw_window_set_pos(HWND handle, unsigned long x, unsigned long y);
632 void dw_window_set_usize(HWND handle, unsigned long width, unsigned long height); 635 void dw_window_set_usize(HWND handle, unsigned long width, unsigned long height);
633 void dw_window_set_pos_size(HWND handle, unsigned long x, unsigned long y, unsigned long width, unsigned long height); 636 void dw_window_set_pos_size(HWND handle, unsigned long x, unsigned long y, unsigned long width, unsigned long height);
634 void dw_window_get_pos_size(HWND handle, unsigned long *x, unsigned long *y, unsigned long *width, unsigned long *height); 637 void dw_window_get_pos_size(HWND handle, unsigned long *x, unsigned long *y, unsigned long *width, unsigned long *height);
635 void dw_window_set_style(HWND handle, unsigned long style, unsigned long mask); 638 void dw_window_set_style(HWND handle, unsigned long style, unsigned long mask);