From 4b24638802385816fb5f90c95f175b30ae2398a8 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 4 Aug 2019 02:28:33 +0200 Subject: Add youtube video playing, page navigation --- plugins/Plugin.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/Plugin.hpp b/plugins/Plugin.hpp index 9d62356..dd50998 100644 --- a/plugins/Plugin.hpp +++ b/plugins/Plugin.hpp @@ -7,12 +7,14 @@ namespace QuickMedia { class BodyItem { public: - BodyItem(const std::string &_title): title(_title) { + BodyItem(const std::string &_title): title(_title), visible(true) { } std::string title; - std::string cover_url; + std::string url; + std::string thumbnail_url; + bool visible; }; enum class SearchResult { -- cgit v1.2.3