aboutsummaryrefslogtreecommitdiff
path: root/include/QuickMedia.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-04-06 22:54:12 +0200
committerdec05eba <dec05eba@protonmail.com>2021-04-06 22:54:12 +0200
commitd3543b4f6d654cae1d1d9ffe1f640106dad5cfed (patch)
treee51f99400cb67dd8643393f82f2e10478750e7ba /include/QuickMedia.hpp
parent04e852c45a3f309d5e139b0ca059b32277c250e4 (diff)
Add support for embedding the window into another application, such as suckless tabbed
Diffstat (limited to 'include/QuickMedia.hpp')
-rw-r--r--include/QuickMedia.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/QuickMedia.hpp b/include/QuickMedia.hpp
index c6cd7b5..a8692bf 100644
--- a/include/QuickMedia.hpp
+++ b/include/QuickMedia.hpp
@@ -95,7 +95,9 @@ namespace QuickMedia {
void manga_get_watch_history(const char *plugin_name, BodyItems &history_items);
void youtube_get_watch_history(BodyItems &history_items);
private:
+ void init(Window parent_window);
void load_plugin_by_name(std::vector<Tab> &tabs, const char *start_dir);
+ void handle_window_close();
void base_event_handler(sf::Event &event, PageType previous_page, Body *body, SearchBar *search_bar, bool handle_key_press = true, bool handle_searchbar = true);
void event_idle_handler(const sf::Event &event);
void idle_active_handler();
@@ -188,5 +190,8 @@ namespace QuickMedia {
bool idle = true;
bool low_cpu_mode = false;
std::string pipe_selected_text;
+ Window x11_window = None;
+ Atom wm_delete_window_atom;
+ XEvent xev;
};
} \ No newline at end of file