19 lines
371 B
C++
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;
|
|
}; |