forked from Green-Sky/tomato
add hacky tox add by id + use ips instead of dns names for bsnodes and relays
This commit is contained in:
21
src/tox_ui_utils.hpp
Normal file
21
src/tox_ui_utils.hpp
Normal 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);
|
||||
};
|
||||
|
Reference in New Issue
Block a user