Lines Matching defs:privateitem
45 struct privateitem { struct
46 const char *label; /* formitem.label */
47 unsigned int ylabel; /* formitem.ylabel */
48 unsigned int xlabel; /* formitem.xlabel */
49 unsigned int yfield; /* formitem.yfield */
50 unsigned int xfield; /* formitem.xfield */
51 bool secure; /* formitem.flags & BSDDIALOG_FIELDHIDDEN */
52 bool readonly; /* formitem.flags & BSDDIALOG_FIELDREADONLY */
53 bool fieldnocolor; /* formitem.flags & BSDDIALOG_FIELDNOCOLOR */
54 bool extendfield; /* formitem.flags & BSDDIALOG_FIELDEXTEND */
55 bool fieldonebyte; /* formitem.flags & BSDDIALOG_FIELDSINGLEBYTE */
56 bool cursorend; /* formitem.flags & BSDDIALOG_FIELDCURSOREND */
57 bool cursor; /* field cursor visibility */
58 const char *bottomdesc; /* formitem.bottomdesc */
60 wchar_t *privwbuf; /* formitem.value */
61 wchar_t *pubwbuf; /* string for drawitem() */
62 unsigned int maxletters; /* formitem.maxvaluelen, [priv|pub]wbuf size */
86 struct privateitem *pritems; argument