change some labels and display tox status in main menu bar

based on user feedback
This commit is contained in:
Green Sky
2024-11-15 00:07:15 +01:00
parent 9bf9753bd1
commit 9277ef34f6
5 changed files with 44 additions and 9 deletions

View File

@@ -2,6 +2,7 @@
class ToxClient;
struct ConfigModelI;
struct ToxPrivateI;
class ToxUIUtils {
bool _show_add_friend_window {false};
@@ -9,11 +10,13 @@ class ToxUIUtils {
ToxClient& _tc;
ConfigModelI& _conf;
ToxPrivateI* _tp{nullptr};
public:
ToxUIUtils(
ToxClient& tc,
ConfigModelI& conf
ConfigModelI& conf,
ToxPrivateI* tp = nullptr
);
void render(void);