tomato/src/chat_gui/contact_tree.hpp
2024-10-14 09:47:37 +02:00

24 lines
365 B
C++

#pragma once
#include <solanaceae/contact/contact_model3.hpp>
#include "./texture_cache_defs.hpp"
// fwd
struct Theme;
class ContactTreeWindow {
bool _show_window {true};
Contact3Registry& _cr;
Theme& _theme;
ContactTextureCache& _ctc;
public:
ContactTreeWindow(Contact3Registry& cr, Theme& theme, ContactTextureCache& ctc);
void render(void);
};