abaddon/components/chatmessage.hpp

91 lines
2.8 KiB
C++
Raw Normal View History

#pragma once
#include <gtkmm.h>
#include "../discord/discord.hpp"
2020-09-26 03:02:13 +00:00
class ChatMessageItemContainer : public Gtk::Box {
public:
Snowflake ID;
2020-09-26 03:02:13 +00:00
Snowflake ChannelID;
2020-08-29 05:14:07 +00:00
2020-09-26 03:02:13 +00:00
ChatMessageItemContainer();
static ChatMessageItemContainer *FromMessage(Snowflake id);
2020-08-30 06:00:56 +00:00
2020-09-26 03:02:13 +00:00
// attributes = edited, deleted
void UpdateAttributes();
void UpdateContent();
void UpdateImage(std::string url, Glib::RefPtr<Gdk::Pixbuf> buf);
2020-08-30 06:00:56 +00:00
protected:
bool EmitImageLoad(std::string url);
2020-09-30 04:12:38 +00:00
void AddClickHandler(Gtk::Widget *widget, std::string);
Gtk::TextView *CreateTextComponent(const Message *data); // Message.Content
2020-10-05 06:09:15 +00:00
void UpdateTextComponent(Gtk::TextView *tv);
2020-09-30 04:12:38 +00:00
Gtk::EventBox *CreateEmbedComponent(const Message *data); // Message.Embeds[0]
Gtk::Image *CreateImageComponent(const AttachmentData &data);
Gtk::Box *CreateAttachmentComponent(const AttachmentData &data); // non-image attachments
void HandleImage(const AttachmentData &data, Gtk::Image *img, std::string url);
2020-10-05 06:09:15 +00:00
// expects content run through Glib::Markup::escape_text
std::string ParseMessageContent(std::string content);
std::string ParseMentions(std::string content);
2020-09-30 04:12:38 +00:00
std::unordered_map<std::string, std::pair<Gtk::Image *, AttachmentData>> m_img_loadmap;
2020-08-30 06:00:56 +00:00
void AttachMenuHandler(Gtk::Widget *widget);
2020-09-26 03:02:13 +00:00
void ShowMenu(GdkEvent *event);
2020-08-30 06:00:56 +00:00
Gtk::Menu m_menu;
Gtk::MenuItem *m_menu_copy_id;
Gtk::MenuItem *m_menu_delete_message;
2020-08-31 02:55:36 +00:00
Gtk::MenuItem *m_menu_edit_message;
2020-09-07 06:45:46 +00:00
2020-09-26 03:02:13 +00:00
void on_menu_copy_id();
void on_menu_delete_message();
void on_menu_edit_message();
2020-08-31 00:24:02 +00:00
2020-09-26 03:02:13 +00:00
Gtk::Box *m_main;
Gtk::Label *m_attrib_label = nullptr;
2020-09-30 04:12:38 +00:00
Gtk::Image *m_embed_img = nullptr; // yes this is hacky no i dont care (for now)
std::string m_embed_imgurl;
2020-08-31 00:24:02 +00:00
2020-09-26 03:02:13 +00:00
Gtk::TextView *m_text_component = nullptr;
Gtk::EventBox *m_embed_component = nullptr;
2020-09-03 05:54:40 +00:00
public:
2020-09-30 04:12:38 +00:00
typedef sigc::signal<void, std::string> type_signal_image_load;
2020-09-26 03:02:13 +00:00
typedef sigc::signal<void> type_signal_action_delete;
typedef sigc::signal<void> type_signal_action_edit;
2020-09-03 05:54:40 +00:00
2020-09-26 03:02:13 +00:00
type_signal_action_delete signal_action_delete();
type_signal_action_edit signal_action_edit();
2020-09-03 05:54:40 +00:00
2020-09-30 04:12:38 +00:00
type_signal_image_load signal_image_load();
2020-09-26 03:02:13 +00:00
private:
type_signal_action_delete m_signal_action_delete;
type_signal_action_edit m_signal_action_edit;
2020-09-30 04:12:38 +00:00
type_signal_image_load m_signal_image_load;
2020-09-03 05:54:40 +00:00
};
2020-09-22 01:01:32 +00:00
2020-09-26 03:02:13 +00:00
class ChatMessageHeader : public Gtk::ListBoxRow {
2020-09-22 01:01:32 +00:00
public:
2020-09-26 03:02:13 +00:00
Snowflake UserID;
Snowflake ChannelID;
2020-09-22 01:01:32 +00:00
2020-09-26 03:02:13 +00:00
ChatMessageHeader(const Message *data);
void SetAvatarFromPixbuf(Glib::RefPtr<Gdk::Pixbuf> pixbuf);
void AddContent(Gtk::Widget *widget, bool prepend);
void UpdateNameColor();
2020-09-22 01:01:32 +00:00
protected:
2020-09-26 03:02:13 +00:00
Gtk::Box *m_main_box;
Gtk::Box *m_content_box;
Gtk::Box *m_meta_box;
Gtk::Label *m_author;
Gtk::Label *m_timestamp;
Gtk::Image *m_avatar;
2020-09-22 01:01:32 +00:00
};