#pragma once #include class ToxClient; struct ConfigModelI; struct ToxPrivateI; class ToxUIUtils { bool _show_add_friend_window {false}; bool _show_add_group_window {false}; ToxClient& _tc; ConfigModelI& _conf; ToxPrivateI* _tp {nullptr}; char _chat_id[32*2+1] {}; public: ToxUIUtils( ToxClient& tc, ConfigModelI& conf, ToxPrivateI* tp = nullptr ); void render(void); };