tomato-testing/src/chat_gui4.hpp

86 lines
2.3 KiB
C++
Raw Normal View History

2023-07-28 18:03:45 +02:00
#pragma once
#include <solanaceae/message3/registry_message_model.hpp>
2023-07-29 20:07:59 +02:00
#include <solanaceae/util/config_model.hpp>
2023-07-28 18:03:45 +02:00
#include "./texture_uploader.hpp"
#include "./texture_cache.hpp"
2023-08-01 13:21:16 +02:00
#include "./tox_avatar_loader.hpp"
#include "./message_image_loader.hpp"
2024-04-20 17:57:11 +02:00
#include "./chat_gui/file_selector.hpp"
#include "./chat_gui/send_image_popup.hpp"
#include <entt/container/dense_map.hpp>
2023-07-28 18:03:45 +02:00
#include <cstdint>
2023-07-28 18:03:45 +02:00
#include <vector>
#include <string>
#include <mutex>
#include <memory>
2023-07-28 18:03:45 +02:00
using ContactTextureCache = TextureCache<void*, Contact3, ToxAvatarLoader>;
using MessageTextureCache = TextureCache<void*, Message3Handle, MessageImageLoader>;
2023-07-28 18:03:45 +02:00
class ChatGui4 {
2023-07-29 20:07:59 +02:00
ConfigModelI& _conf;
2023-07-28 18:03:45 +02:00
RegistryMessageModel& _rmm;
Contact3Registry& _cr;
ContactTextureCache& _contact_tc;
MessageTextureCache& _msg_tc;
2023-07-28 18:03:45 +02:00
FileSelector _fss;
SendImagePopup _sip;
2023-07-28 18:03:45 +02:00
// TODO: refactor this to allow multiple open contacts
2023-07-28 18:03:45 +02:00
std::optional<Contact3> _selected_contact;
2023-09-01 21:13:36 +02:00
// TODO: per contact
std::string _text_input_buffer;
bool _show_chat_extra_info {false};
bool _show_chat_avatar_tf {false};
2023-07-28 18:03:45 +02:00
float TEXT_BASE_WIDTH {1};
float TEXT_BASE_HEIGHT {1};
// mimetype -> data
entt::dense_map<std::string, std::shared_ptr<std::vector<uint8_t>>> _set_clipboard_data;
std::mutex _set_clipboard_data_mutex; // might be called out of order
friend const void* clipboard_callback(void* userdata, const char* mime_type, size_t* size);
void setClipboardData(std::vector<std::string> mime_types, std::shared_ptr<std::vector<uint8_t>>&& data);
2023-07-28 18:03:45 +02:00
public:
ChatGui4(
2023-07-29 20:07:59 +02:00
ConfigModelI& conf,
2023-07-28 18:03:45 +02:00
RegistryMessageModel& rmm,
Contact3Registry& cr,
TextureUploaderI& tu,
ContactTextureCache& contact_tc,
MessageTextureCache& msg_tc
2023-07-28 18:03:45 +02:00
);
~ChatGui4(void);
2023-07-28 18:03:45 +02:00
public:
float render(float time_delta);
2023-07-28 18:03:45 +02:00
public:
bool any_unread {false};
2023-10-18 14:23:27 +02:00
void sendFilePath(const char* file_path);
2023-07-28 18:03:45 +02:00
private:
void renderMessageBodyText(Message3Registry& reg, const Message3 e);
void renderMessageBodyFile(Message3Registry& reg, const Message3 e);
void renderMessageExtra(Message3Registry& reg, const Message3 e);
void renderContactList(void);
2023-08-06 16:07:50 +02:00
bool renderContactListContactBig(const Contact3 c, const bool selected);
bool renderContactListContactSmall(const Contact3 c, const bool selected) const;
bool renderSubContactListContact(const Contact3 c, const bool selected) const;
void pasteFile(const char* mime_type);
2023-07-28 18:03:45 +02:00
};