(title, view, para)
| 153 | return rst == wx.ID_OK if para!=None else path |
| 154 | |
| 155 | def get_para(title, view, para): |
| 156 | from .ui.panelconfig import ParaDialog |
| 157 | pd = ParaDialog(curapp, title) |
| 158 | pd.init_view(view, para) |
| 159 | rst = pd.ShowModal() |
| 160 | pd.Destroy() |
| 161 | return rst == wx.ID_OK |
| 162 | |
| 163 | def showtable(data, title): |
| 164 | from .core import TablePlus |
nothing calls this directly
no test coverage detected