tomato/src/tox_ui_utils.hpp

29 lines
410 B
C++
Raw Normal View History

#pragma once
#include <string>
2024-06-07 10:58:42 +02:00
class ToxClient;
struct ConfigModelI;
struct ToxPrivateI;
class ToxUIUtils {
bool _show_add_friend_window {false};
bool _show_add_group_window {false};
2024-06-07 10:58:42 +02:00
ToxClient& _tc;
ConfigModelI& _conf;
ToxPrivateI* _tp {nullptr};
char _chat_id[32*2+1] {};
public:
ToxUIUtils(
2024-06-07 10:58:42 +02:00
ToxClient& tc,
ConfigModelI& conf,
ToxPrivateI* tp = nullptr
);
void render(void);
};