Lines Matching defs:user
29 /// This is a minimal state immediate mode graphical user interface toolkit
31 /// embeddable user interface for application and does not have any dependencies,
39 /// - Graphical user interface toolkit
71 /// - Can be easily modified to only update on user input instead of frame updates
546 /// __nk_set_user_data__| Utility function to pass user data to draw command
680 /// expects more work from the user and complicates usage but on the other hand
924 /// that then need to be executed by the user and his own render backend.
1322 /// user input by being clicked on or programmatically by calling `nk_window_focus`.
1324 /// `NK_WINDOW_HIDDEN`, the user clicked the close button on windows with flag
1433 /// NK_WINDOW_MOVABLE | The movable flag indicates that a window can be moved by user input or by dragging the window header
1434 /// NK_WINDOW_SCALABLE | The scalable flag indicates that a window can be scaled by user input by dragging a scaler icon at the button of the window
1439 /// NK_WINDOW_SCROLL_AUTO_HIDE | Automatically hides the window scrollbar if no user interaction: also requires delta time in `nk_context` to be set each frame
2774 /// user to selectively minimize the current set of visible UI to comprehend.
2787 /// by `__FILE__` and a user provided ID generated for example by loop index with
2788 /// function `nk_tree_push_id` or completely provided from outside by user with
3462 NK_API void nk_plot_function(struct nk_context*, enum nk_chart_type, void *userdata, float(*value_getter)(void* user, int index), int count, int offset);
3665 /* color (conversion nuklear --> user) */
3917 /* user provided font handle */
4068 the hand of the user while also making sure the library is easy to use if
4070 In general all memory inside this library can be provided from the user in
4074 size memory block. In this case all control lies in the hand of the user
4224 * user text input. Main upside is complete control over memory while the biggest
4335 that then need to be executed by the user and his own render backend.
4847 /* optional user callbacks */
4877 /* optional user callbacks */
4912 /* optional user callbacks */
4951 /* optional user callbacks */
4977 /* optional user callbacks */
5010 /* optional user callbacks */
5075 /* optional user callbacks */
10590 /* we allocate two extra nodes so optimal user-node-count is 'width' not 'width+2' */
12771 /* pack custom user data first so it will be in the upper left corner*/
15990 /* hide scroll if no user input */
16927 /* close the popup if user pressed outside or in the header */
22934 /* handle user input */
24180 /* user selection of current data point */
24231 /* user chart bar selection */
24317 float(*value_getter)(void* user, int index), int count, int offset)
25587 /// the hands of the user. From now on users don't have to care
25645 /// instead made it user provided. The range of types to convert
25773 /// and his original immediate mode graphical user interface idea and Sean