Some checks failed
ContinuousDelivery / linux-ubuntu (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Has been cancelled
ContinuousDelivery / windows (push) Has been cancelled
ContinuousDelivery / windows-asan (push) Has been cancelled
ContinuousIntegration / linux (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Has been cancelled
ContinuousIntegration / macos (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled
29 lines
410 B
C++
29 lines
410 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class ToxClient;
|
|
struct ConfigModelI;
|
|
struct ToxPrivateI;
|
|
|
|
class ToxUIUtils {
|
|
bool _show_add_friend_window {false};
|
|
bool _show_add_group_window {false};
|
|
|
|
ToxClient& _tc;
|
|
ConfigModelI& _conf;
|
|
ToxPrivateI* _tp {nullptr};
|
|
|
|
char _chat_id[32*2+1] {};
|
|
|
|
public:
|
|
ToxUIUtils(
|
|
ToxClient& tc,
|
|
ConfigModelI& conf,
|
|
ToxPrivateI* tp = nullptr
|
|
);
|
|
|
|
void render(void);
|
|
};
|
|
|