#pragma once #include "components/popover.hpp" #include "services/todo.hpp" #include class TodoPopover : public Popover { public: TodoPopover(std::string icon, std::string title); void update(); private: std::string name; TodoService* todoService = nullptr; Gtk::Box container; Gtk::Box inputArea; Gtk::Box* todoList = nullptr; };