comparison dw.h @ 350:2216e65ad2ae

Removed slider flags and container selection flags from the header file. Added "multi" parameter to dw_container_new() to control multiple selection.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 14 Apr 2003 13:47:20 +0000
parents 81fae15885d7
children 39983df2b93d
comparison
equal deleted inserted replaced
349:5d3f2e2dcc6b 350:2216e65ad2ae
130 #define DW_CFA_HORZSEPARATOR CFA_HORZSEPARATOR 130 #define DW_CFA_HORZSEPARATOR CFA_HORZSEPARATOR
131 #define DW_CFA_SEPARATOR CFA_SEPARATOR 131 #define DW_CFA_SEPARATOR CFA_SEPARATOR
132 132
133 #define DW_CRA_SELECTED CRA_SELECTED 133 #define DW_CRA_SELECTED CRA_SELECTED
134 #define DW_CRA_CURSORED CRA_CURSORED 134 #define DW_CRA_CURSORED CRA_CURSORED
135
136 #define DW_SLS_READONLY SLS_READONLY
137 #define DW_SLS_RIBBONSTRIP SLS_RIBBONSTRIP
138
139 #define DW_CCS_SINGLESEL CCS_SINGLESEL
140 #define DW_CCS_EXTENDSEL CCS_EXTENDSEL
141 135
142 #define DW_LS_MULTIPLESEL LS_MULTIPLESEL 136 #define DW_LS_MULTIPLESEL LS_MULTIPLESEL
143 137
144 #define DW_LIT_NONE -1 138 #define DW_LIT_NONE -1
145 139
288 #define DW_CFA_SEPARATOR 0 282 #define DW_CFA_SEPARATOR 0
289 283
290 #define DW_CRA_SELECTED LVNI_SELECTED 284 #define DW_CRA_SELECTED LVNI_SELECTED
291 #define DW_CRA_CURSORED LVNI_FOCUSED 285 #define DW_CRA_CURSORED LVNI_FOCUSED
292 286
293 #define DW_SLS_READONLY 0
294 #define DW_SLS_RIBBONSTRIP 0
295
296 #define DW_CCS_SINGLESEL 0
297 #define DW_CCS_EXTENDSEL 0
298
299 #define DW_LS_MULTIPLESEL LBS_MULTIPLESEL 287 #define DW_LS_MULTIPLESEL LBS_MULTIPLESEL
300 288
301 #define DW_LIT_NONE -1 289 #define DW_LIT_NONE -1
302 290
303 #define DW_MLE_CASESENSITIVE 1 291 #define DW_MLE_CASESENSITIVE 1
485 #define DW_CFA_CENTER (1 << 5) 473 #define DW_CFA_CENTER (1 << 5)
486 #define DW_CFA_LEFT (1 << 6) 474 #define DW_CFA_LEFT (1 << 6)
487 #define DW_CFA_RIGHT (1 << 7) 475 #define DW_CFA_RIGHT (1 << 7)
488 #define DW_CFA_HORZSEPARATOR (1 << 8) 476 #define DW_CFA_HORZSEPARATOR (1 << 8)
489 #define DW_CFA_SEPARATOR (1 << 9) 477 #define DW_CFA_SEPARATOR (1 << 9)
490
491 #define DW_SLS_READONLY 1
492 #define DW_SLS_RIBBONSTRIP (1 << 1)
493
494 #define DW_CCS_SINGLESEL 1
495 #define DW_CCS_EXTENDSEL (1 << 1)
496 478
497 #define DW_CRA_SELECTED 1 479 #define DW_CRA_SELECTED 1
498 #define DW_CRA_CURSORED (1 << 1) 480 #define DW_CRA_CURSORED (1 << 1)
499 481
500 #define DW_LS_MULTIPLESEL 1 482 #define DW_LS_MULTIPLESEL 1
764 HWND API dw_groupbox_new(int type, int pad, char *title); 746 HWND API dw_groupbox_new(int type, int pad, char *title);
765 HWND API dw_mdi_new(unsigned long id); 747 HWND API dw_mdi_new(unsigned long id);
766 HWND API dw_bitmap_new(unsigned long id); 748 HWND API dw_bitmap_new(unsigned long id);
767 HWND API dw_bitmapbutton_new(char *text, unsigned long id); 749 HWND API dw_bitmapbutton_new(char *text, unsigned long id);
768 HWND API dw_bitmapbutton_new_from_file(char *text, unsigned long id, char *filename); 750 HWND API dw_bitmapbutton_new_from_file(char *text, unsigned long id, char *filename);
769 HWND API dw_container_new(unsigned long id); 751 HWND API dw_container_new(unsigned long id, int multi);
770 HWND API dw_tree_new(unsigned long id); 752 HWND API dw_tree_new(unsigned long id);
771 HWND API dw_text_new(char *text, unsigned long id); 753 HWND API dw_text_new(char *text, unsigned long id);
772 HWND API dw_status_text_new(char *text, unsigned long id); 754 HWND API dw_status_text_new(char *text, unsigned long id);
773 HWND API dw_mle_new(unsigned long id); 755 HWND API dw_mle_new(unsigned long id);
774 HWND API dw_entryfield_new(char *text, unsigned long id); 756 HWND API dw_entryfield_new(char *text, unsigned long id);