Home | History | Annotate | Download | only in gpxe

Lines Matching refs:box

6  * Editable text box widget
15 /** An editable text box widget */
33 /** Editable text box widget flags */
39 extern void init_editbox ( struct edit_box *box, char *buf, size_t len,
43 extern void draw_editbox ( struct edit_box *box ) __nonnull;
44 static inline int edit_editbox ( struct edit_box *box, int key ) __nonnull;
47 * Edit text box widget
49 * @v box Editable text box widget
57 static inline int edit_editbox ( struct edit_box *box, int key ) {
58 return edit_string ( &box->string, key );