(cls, parent, help_entries)
| 1343 | |
| 1344 | @classmethod |
| 1345 | def show(cls, parent, help_entries): |
| 1346 | # if no dialog is shown, create one; otherwise just re-raise it |
| 1347 | if cls._instance: |
| 1348 | cls._instance.Raise() |
| 1349 | return |
| 1350 | cls._instance = cls(parent, help_entries) |
| 1351 | cls._instance.Show() |
| 1352 | |
| 1353 | |
| 1354 | @backend_tools._register_tool_class(_FigureCanvasWxBase) |
no outgoing calls