Lines Matching refs:panel
2 * Interface to the ncurses panel library
17 #include <panel.h>
85 /* Definition of the panel object and panel type */
94 associated with a panel. To ensure that Python's GC doesn't pull
101 pan = win.panel()
109 dozens of panel objects within a typical program. */
118 /* Insert a new panel object into lop */
134 /* Remove the panel object from lop */
160 /* Return the panel object that corresponds to pan */
172 class _curses_panel.panel "PyCursesPanelObject *" "&PyCursesPanel_Type"
181 _curses_panel.panel.bottom
185 Push the panel to the bottom of the stack.
197 _curses_panel.panel.hide
201 Hide the panel.
215 _curses_panel.panel.show
219 Display the panel (which might have been hidden).
231 _curses_panel.panel.top
235 Push panel to the top of the stack.
289 /* panel_above(NULL) returns the bottom panel in the stack. To get
290 this behaviour we use curses.panel.bottom_panel(). */
292 _curses_panel.panel.above
294 Return the panel above the current panel.
306 if (pan == NULL) { /* valid output, it means the calling panel
320 /* panel_below(NULL) returns the top panel in the stack. To get
321 this behaviour we use curses.panel.top_panel(). */
323 _curses_panel.panel.below
325 Return the panel below the current panel.
337 if (pan == NULL) { /* valid output, it means the calling panel
352 _curses_panel.panel.hidden
354 Return True if the panel is hidden (not visible), False otherwise.
368 _curses_panel.panel.move
375 Move the panel to the screen coordinates (y, x).
388 _curses_panel.panel.window
390 Return the window object associated with the panel.
402 _curses_panel.panel.replace
408 Change the window associated with the panel to the window win.
437 _curses_panel.panel.set_userptr
443 Set the panel's user pointer to obj.
468 _curses_panel.panel.userptr
472 Return the user pointer for the panel.
521 .name = "_curses_panel.panel",
528 panel of the stack, so it's renamed to bottom_panel().
529 panel.above() *requires* a panel object in the first place which
534 Return the bottom panel in the panel stack.
549 there's no panel at all */
568 Return a panel object, associating it with the given window win.
586 /* Wrapper for panel_below(NULL). This function returns the top panel
587 of the stack, so it's renamed to top_panel(). panel.below()
588 *requires* a panel object in the first place which may be
593 Return the top panel in the panel stack.
608 there's no panel at all */
624 Updates the virtual screen after changes in the panel stack.