aboutsummaryrefslogtreecommitdiff
path: root/include/BodyItem.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-11-18 23:32:08 +0100
committerdec05eba <dec05eba@protonmail.com>2022-11-18 23:32:12 +0100
commitde45f6d8d7d777244006a7998ec971157e51296e (patch)
tree93ab54b196bda4af7d7fe16d74fb25f08c37a931 /include/BodyItem.hpp
parentc56cb5d25388d938fce485ff02b067a2fd70e096 (diff)
Readd meme gpg encryption in matrix, this time asynchronous decryption
of only visible items
Diffstat (limited to 'include/BodyItem.hpp')
-rw-r--r--include/BodyItem.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/BodyItem.hpp b/include/BodyItem.hpp
index 647d344..89adc5d 100644
--- a/include/BodyItem.hpp
+++ b/include/BodyItem.hpp
@@ -36,13 +36,16 @@ namespace QuickMedia {
mgl::vec2f size;
};
+ class BodyItem;
struct Widgets {
+ BodyItem *body_item = nullptr;
std::optional<ThumbnailWidget> thumbnail;
};
// TODO: Remove and create an Userdata class instead to replace the void* userdata in BodyItem
class BodyItemExtra {
public:
+ BodyItemExtra() = default;
virtual ~BodyItemExtra() = default;
virtual void draw_overlay(mgl::Window &window, const Widgets &widgets) {