From: Foster B. <fos...@us...> - 2005-03-29 23:29:49
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/headers/win In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1768/adobe-source/adobe/test/visual/headers/win Modified Files: ui_core_implementation.hpp Log Message: Link widgets / tab groups / ASL 1.0.2 prep; other bugs fixed Index: ui_core_implementation.hpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/headers/win/ui_core_implementation.hpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ui_core_implementation.hpp 28 Mar 2005 19:33:27 -0000 1.4 --- ui_core_implementation.hpp 29 Mar 2005 23:29:39 -0000 1.5 *************** *** 127,134 **** bool is_focused(); void signal_focus(const implementation::control_focus_proc_t& proc); - void set_min_value(long value); - void set_max_value(long value); - void set_value(long value); - void trap_window_proc(WNDPROC new_window_proc); --- 127,130 ---- *************** *** 385,388 **** --- 381,387 ---- bool is_vertical); virtual rectangle_t best_bounds(); + void set_min_value(long min_value); + void set_max_value(long max_value); + void set_value(long value); ADOBE_SERIALIZABLE_TOTAL_ORDERING_BOILERPLATE_FRIEND_DECLARATION(adobe::progress_bar_t::implementation_t); *************** *** 575,578 **** --- 574,580 ---- virtual rectangle_t best_bounds(); void set_bounds(const point_t& position, const rectangle_t& geometry); + void set_min_value(long min_value); + void set_max_value(long max_value); + void set_value(long value); void signal_value_change(const implementation::slider_value_proc_t& proc); *************** *** 606,609 **** --- 608,612 ---- void set_bevel_amount(bevel_button_bevel_amount_t amount); void set_current_menu_item(const value_t& item); + void set_value(bool) { /* stubbed out */ } void signal_hit(const implementation::bevel_button_hit_proc_t& proc); void signal_value_change(const implementation::bevel_button_popup_value_proc_t& proc); |