| 59 | } |
| 60 | |
| 61 | QString keyForTopic(PJ::CatalogModel& catalog, PJ::TopicId topic_id) { |
| 62 | for (const PJ::CurveDescriptor& descriptor : catalog.curves()) { |
| 63 | if (descriptor.topic_id == topic_id) { |
| 64 | return descriptor.name; |
| 65 | } |
| 66 | } |
| 67 | return {}; |
| 68 | } |
| 69 | |
| 70 | class TestPlaceholderWidget : public PJ::VisualizationPlaceholderWidget { |
| 71 | public: |