Rose
Image.h
Go to the documentation of this file.
1 
8 #pragma once
9 
10 #include "ImageStore.h"
11 #include "Theme.h"
12 
13 namespace rose {
14 
19  class Image {
20  protected:
21  ImageId mImageId{ImageId::NoImage};
22 
23  public:
24  Image() = default;
25 
26  virtual ~Image() = default;
27 
28  explicit Image(ImageId id) : mImageId(id) {
29  std::cout << __PRETTY_FUNCTION__ << '\n';
30  }
31 
32  };
33 }
34 
Definition: Image.h:19
ToDo: There is an issue that the initial scroll interaction is lost if the click/press lands on a Wid...
Definition: CelestialOverlay.cpp:13