Nana ++ Library An open-source C++ framework project The Nana Programmer's Guide |
|||||||||||||||||||||||||||||||||||||||||||||
nana::gui::combox Description This widget is a combo box which consists of a list box combined with a textbox, the list box should drop down when the user selects thr drop-down arrow next to the control.
Model of Widget Window Public base classes class widget_object<widget_tag, DrawerTrigger>: public widget Typedefs
Members
File nana/gui/widgets/combox.hpp Notes 1, The class ext_event is coming with the combox, its definition is struct ext_event_type { nana::functor_group<void(nana::gui::combox&)> selected; //Selects a new item. }; This class provides a method to implement that a program may respond to the combox special event or state. It seems like the events registered by make_event member function. But the answering registered by make_event is used for general-purpose, such as mouse_down, mouse_move, click and so on, the combox ext_event_type is used for the own providing event. 2, Refer nana::gui::float_listbox for details of item_renderer. See also None. Move to The Nana Programmer's Guide Main Page |
|||||||||||||||||||||||||||||||||||||||||||||