1 // puList.hxx - a scrolling PUI list box.
14 * A scrolling list for PUI.
16 * Believe it or not, PUI does not have one of these.
18 class puList : public puGroup
21 puList (int x, int y, int w, int h);
22 puList (int x, int y, int w, int h, char ** contents);
25 virtual void newList (char ** contents);
26 // TODO: other string value funcs
27 virtual char * getStringValue ();
30 virtual void init (int w, int h);
35 puListBox * _list_box;
37 puArrowButton * _up_arrow;
38 puArrowButton * _down_arrow;
41 #endif // __PULIST_HXX