Called by AbstractCoordinator to notify that state has changed. State changes can include: - variable sync change and therefore all lisa categories have changed - significance level has changed and therefore categories have changed - new randomization for p-vals and therefore categories have changed */
| 788 | - significance level has changed and therefore categories have changed |
| 789 | - new randomization for p-vals and therefore categories have changed */ |
| 790 | void AbstractMapFrame::update(AbstractCoordinator* o) |
| 791 | { |
| 792 | AbstractMapCanvas* lc = (AbstractMapCanvas*) template_canvas; |
| 793 | lc->SyncVarInfoFromCoordinator(); |
| 794 | lc->CreateAndUpdateCategories(); |
| 795 | if (template_legend) template_legend->Recreate(); |
| 796 | SetTitle(lc->GetCanvasTitle()); |
| 797 | lc->Refresh(); |
| 798 | lc->UpdateStatusBar(); |
| 799 | } |
| 800 | |
| 801 | void AbstractMapFrame::closeObserver(AbstractCoordinator* o) |
| 802 | { |
nothing calls this directly
no test coverage detected