rest25/library/curses.panel.rst => rest262/library/curses.panel.rst
51Panel objects, as returned by :func:`new_panel` above, are windows with a
52stacking order. There's always a window associated with a panel which determines
53the content, while the panel methods are responsible for the window's depth in
54the panel stack.
55
56Panel objects have the following methods:
57
58
n59-.. method:: XXX Class.above()
n59+.. method:: Panel.above()
60
61   Returns the panel above the current panel.
62
63
n64-.. method:: XXX Class.below()
n64+.. method:: Panel.below()
65
66   Returns the panel below the current panel.
67
68
n69-.. method:: XXX Class.bottom()
n69+.. method:: Panel.bottom()
70
71   Push the panel to the bottom of the stack.
72
73
n74-.. method:: XXX Class.hidden()
n74+.. method:: Panel.hidden()
75
76   Returns true if the panel is hidden (not visible), false otherwise.
77
78
n79-.. method:: XXX Class.hide()
n79+.. method:: Panel.hide()
80
81   Hide the panel. This does not delete the object, it just makes the window on
82   screen invisible.
83
84
n85-.. method:: XXX Class.move(y, x)
n85+.. method:: Panel.move(y, x)
86
87   Move the panel to the screen coordinates ``(y, x)``.
88
89
n90-.. method:: XXX Class.replace(win)
n90+.. method:: Panel.replace(win)
91
92   Change the window associated with the panel to the window *win*.
93
94
n95-.. method:: XXX Class.set_userptr(obj)
n95+.. method:: Panel.set_userptr(obj)
96
97   Set the panel's user pointer to *obj*. This is used to associate an arbitrary
98   piece of data with the panel, and can be any Python object.
99
100
n101-.. method:: XXX Class.show()
n101+.. method:: Panel.show()
102
103   Display the panel (which might have been hidden).
104
105
n106-.. method:: XXX Class.top()
n106+.. method:: Panel.top()
107
108   Push panel to the top of the stack.
109
110
n111-.. method:: XXX Class.userptr()
n111+.. method:: Panel.userptr()
112
113   Returns the user pointer for the panel.  This might be any Python object.
114
115
t116-.. method:: XXX Class.window()
t116+.. method:: Panel.window()
117
118   Returns the window object associated with the panel.
119
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op