Lines Matching refs:panel
1 :mod:`curses.panel` --- A panel stack extension for curses
4 .. module:: curses.panel
5 :synopsis: A panel stack extension that adds depth to curses windows.
19 The module :mod:`curses.panel` defines the following functions:
24 Returns the bottom panel in the panel stack.
29 Returns a panel object, associating it with the given window *win*. Be aware
30 that you need to keep the returned panel object referenced explicitly. If you
31 don't, the panel object is garbage collected and removed from the panel stack.
36 Returns the top panel in the panel stack.
41 Updates the virtual screen after changes in the panel stack. This does not call
45 .. _curses-panel-objects:
51 stacking order. There's always a window associated with a panel which determines
52 the content, while the panel methods are responsible for the window's depth in
53 the panel stack.
60 Returns the panel above the current panel.
65 Returns the panel below the current panel.
70 Push the panel to the bottom of the stack.
75 Returns true if the panel is hidden (not visible), false otherwise.
80 Hide the panel. This does not delete the object, it just makes the window on
86 Move the panel to the screen coordinates ``(y, x)``.
91 Change the window associated with the panel to the window *win*.
96 Set the panel's user pointer to *obj*. This is used to associate an arbitrary
97 piece of data with the panel, and can be any Python object.
102 Display the panel (which might have been hidden).
107 Push panel to the top of the stack.
112 Returns the user pointer for the panel. This might be any Python object.
117 Returns the window object associated with the panel.