add hacky tox add by id + use ips instead of dns names for bsnodes and relays

This commit is contained in:
2023-10-20 21:40:45 +02:00
parent dce42b866a
commit 869edb8d84
7 changed files with 144 additions and 4 deletions

21
src/tox_ui_utils.hpp Normal file
View File

@ -0,0 +1,21 @@
#pragma once
struct ToxI;
struct ConfigModelI;
class ToxUIUtils {
bool _show_add_friend_window {false};
bool _show_add_group_window {false};
ToxI& _t;
ConfigModelI& _conf;
public:
ToxUIUtils(
ToxI& t,
ConfigModelI& conf
);
void render(void);
};