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"
|
2023-07-31 20:47:22 +02:00
|
|
|
#include "./texture_cache.hpp"
|
2023-08-01 13:21:16 +02:00
|
|
|
#include "./tox_avatar_loader.hpp"
|
2023-08-02 16:36:34 +02:00
|
|
|
#include "./message_image_loader.hpp"
|
2023-07-28 18:03:45 +02:00
|
|
|
#include "./file_selector.hpp"
|
2023-10-04 02:11:06 +02:00
|
|
|
#include "./send_image_popup.hpp"
|
2023-07-28 18:03:45 +02:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
class ChatGui4 {
|
2023-07-29 20:07:59 +02:00
|
|
|
ConfigModelI& _conf;
|
2023-07-28 18:03:45 +02:00
|
|
|
RegistryMessageModel& _rmm;
|
|
|
|
Contact3Registry& _cr;
|
|
|
|
|
2023-08-01 13:21:16 +02:00
|
|
|
ToxAvatarLoader _tal;
|
|
|
|
TextureCache<void*, Contact3, ToxAvatarLoader> _contact_tc;
|
2023-08-02 16:36:34 +02:00
|
|
|
MessageImageLoader _mil;
|
|
|
|
TextureCache<void*, Message3Handle, MessageImageLoader> _msg_tc;
|
2023-07-31 20:47:22 +02:00
|
|
|
|
2023-07-28 18:03:45 +02:00
|
|
|
FileSelector _fss;
|
2023-10-04 02:11:06 +02:00
|
|
|
SendImagePopup _sip;
|
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;
|
|
|
|
|
2023-07-28 18:03:45 +02:00
|
|
|
bool _show_chat_extra_info {true};
|
|
|
|
|
|
|
|
float TEXT_BASE_WIDTH {1};
|
|
|
|
float TEXT_BASE_HEIGHT {1};
|
|
|
|
|
|
|
|
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
|
|
|
|
);
|
|
|
|
|
|
|
|
public:
|
|
|
|
void render(void);
|
|
|
|
|
2023-10-04 02:11:06 +02:00
|
|
|
public:
|
|
|
|
bool any_unread {false};
|
|
|
|
|
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;
|
2023-07-28 18:03:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|