Add adds a child panel to the client area of this window
(ichild IPanel)
| 118 | |
| 119 | // Add adds a child panel to the client area of this window |
| 120 | func (w *Window) Add(ichild IPanel) *Window { |
| 121 | |
| 122 | w.client.Add(ichild) |
| 123 | return w |
| 124 | } |
| 125 | |
| 126 | // Removes a child from the client (content) panel |
| 127 | func (w *Window) Remove(ichild IPanel) bool { |
no outgoing calls
no test coverage detected