2023-10-20 21:40:45 +02:00
|
|
|
#pragma once
|
|
|
|
|
2024-06-07 10:58:42 +02:00
|
|
|
class ToxClient;
|
2023-10-20 21:40:45 +02:00
|
|
|
struct ConfigModelI;
|
|
|
|
|
|
|
|
class ToxUIUtils {
|
|
|
|
bool _show_add_friend_window {false};
|
|
|
|
bool _show_add_group_window {false};
|
|
|
|
|
2024-06-07 10:58:42 +02:00
|
|
|
ToxClient& _tc;
|
2023-10-20 21:40:45 +02:00
|
|
|
ConfigModelI& _conf;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ToxUIUtils(
|
2024-06-07 10:58:42 +02:00
|
|
|
ToxClient& tc,
|
2023-10-20 21:40:45 +02:00
|
|
|
ConfigModelI& conf
|
|
|
|
);
|
|
|
|
|
|
|
|
void render(void);
|
|
|
|
};
|
|
|
|
|