Files
bar/include/widgets/todoPopover.hpp
2025-12-21 00:36:00 +01:00

19 lines
371 B
C++

#pragma once
#include "components/popover.hpp"
#include "services/todo.hpp"
#include <string>
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;
};