6 #include "renderwindow.h" 8 #include "../annotations/image.h" 9 #include "../core/topic.h" 10 #include "../core/tracks.h" 11 #include "../render/renderer.h" 12 #include "../render/texture.h" 19 STRUCT_PROPERTY(x, min = 0, max = 1);
20 STRUCT_PROPERTY(y, min = 0, max = 1);
26 std::shared_ptr<Subscriber<Message>> subscriber;
27 static constexpr
double minZoom() {
return 0.01; }
28 static constexpr
double maxZoom() {
return 1000000; }
31 std::shared_ptr<ImageAnnotationBase> new_annotation;
32 std::shared_ptr<AnnotationSpan> new_annotation_span;
33 std::shared_ptr<Type> annotation_type;
34 std::unordered_map<std::shared_ptr<ImageAnnotationBase>,
AnnotationView *>
37 PROPERTY(std::string, topic,
"");
39 PROPERTY(
double, zoom, 1.0, min = minZoom(), max = maxZoom());