Home | History | Annotate | Download | only in include

Lines Matching refs:user

53   // This structure is used for the panel's user data field to link the
54 // PANEL* to the C++ object and to provide extra space for a user pointer.
56 void* m_user; // the pointer for the user's data
71 void set_user(void *user)
75 uptr->m_user = user;
77 // Set the user pointer of the panel.
222 * user data with a panel. A NCursesUserPanel<T> is a panel
223 * associated with some user data of type T.
238 // This creates an user panel of the requested size with associated
239 // user data pointed to by p_UserData.
246 // This creates an user panel associated with the ::stdscr and user data
255 // Retrieve the user data associated with the panel.
262 // Associate the user panel with the user data pointed to by p_UserData.