| 88 | QQPlotDock::~QQPlotDock() = default; |
| 89 | |
| 90 | void QQPlotDock::setModel() { |
| 91 | auto* model = aspectModel(); |
| 92 | model->enablePlottableColumnsOnly(true); |
| 93 | model->enableShowPlotDesignation(true); |
| 94 | model->setSelectableAspects({AspectType::Column}); |
| 95 | cbDataColumn->setTopLevelClasses(TreeViewComboBox::plotColumnTopLevelClasses()); |
| 96 | cbDataColumn->setModel(model); |
| 97 | } |
| 98 | |
| 99 | void QQPlotDock::setPlots(QList<QQPlot*> list) { |
| 100 | Lock lock(m_initializing); |
nothing calls this directly
no test coverage detected