/* * Copyright (C) 2016-2019 Savoir-faire Linux Inc. * Author: Stepan Salenikovich * Author: Alexandre Viau * Author: Nicolas Jäger * Author: Sébastien Blin * Author: Hugo Lefeuvre * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "chatview.h" // std #include #include // GTK #include // Qt #include // LRC #include #include #include #include #include // Client #include "marshals.h" #include "utils/files.h" #include "native/pixbufmanipulator.h" /* size of avatar */ static constexpr int AVATAR_WIDTH = 150; /* px */ static constexpr int AVATAR_HEIGHT = 150; /* px */ struct CppImpl { struct Interaction { std::string conv; uint64_t id; lrc::api::interaction::Info info; }; std::vector interactionsBuffer_; }; struct _ChatView { GtkBox parent; }; struct _ChatViewClass { GtkBoxClass parent_class; }; typedef struct _ChatViewPrivate ChatViewPrivate; struct _ChatViewPrivate { GtkWidget *box_webkit_chat_container; GtkWidget *webkit_chat_container; GSettings *settings; lrc::api::conversation::Info* conversation_; AccountInfoPointer const * accountInfo_; QMetaObject::Connection new_interaction_connection; QMetaObject::Connection interaction_removed; QMetaObject::Connection update_interaction_connection; QMetaObject::Connection update_add_to_conversations; gulong webkit_ready; gulong webkit_send_text; gulong webkit_drag_drop; bool ready_ {false}; CppImpl* cpp_; }; G_DEFINE_TYPE_WITH_PRIVATE(ChatView, chat_view, GTK_TYPE_BOX); #define CHAT_VIEW_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), CHAT_VIEW_TYPE, ChatViewPrivate)) enum { NEW_MESSAGES_DISPLAYED, HIDE_VIEW_CLICKED, PLACE_CALL_CLICKED, PLACE_AUDIO_CALL_CLICKED, ADD_CONVERSATION_CLICKED, SEND_TEXT_CLICKED, LAST_SIGNAL }; static guint chat_view_signals[LAST_SIGNAL] = { 0 }; static void chat_view_dispose(GObject *object) { ChatView *view; ChatViewPrivate *priv; view = CHAT_VIEW(object); priv = CHAT_VIEW_GET_PRIVATE(view); QObject::disconnect(priv->new_interaction_connection); QObject::disconnect(priv->update_interaction_connection); QObject::disconnect(priv->interaction_removed); QObject::disconnect(priv->update_add_to_conversations); /* Destroying the box will also destroy its children, and we wouldn't * want that. So we remove the webkit_chat_container from the box. */ if (priv->webkit_chat_container) { /* disconnect for webkit signals */ g_signal_handler_disconnect(priv->webkit_chat_container, priv->webkit_ready); priv->webkit_ready = 0; g_signal_handler_disconnect(priv->webkit_chat_container, priv->webkit_send_text); priv->webkit_send_text = 0; g_signal_handler_disconnect(priv->webkit_chat_container, priv->webkit_drag_drop); priv->webkit_drag_drop = 0; gtk_container_remove( GTK_CONTAINER(priv->box_webkit_chat_container), GTK_WIDGET(priv->webkit_chat_container) ); priv->webkit_chat_container = nullptr; } G_OBJECT_CLASS(chat_view_parent_class)->dispose(object); } static void hide_chat_view(G_GNUC_UNUSED GtkWidget *widget, ChatView *self) { g_signal_emit(G_OBJECT(self), chat_view_signals[HIDE_VIEW_CLICKED], 0); } static void display_links_toggled(ChatView *self) { auto priv = CHAT_VIEW_GET_PRIVATE(self); if (priv->webkit_chat_container) { webkit_chat_container_set_display_links( WEBKIT_CHAT_CONTAINER(priv->webkit_chat_container), g_settings_get_boolean(priv->settings, "enable-display-links") ); } } static void placecall_clicked(ChatView *self) { auto priv = CHAT_VIEW_GET_PRIVATE(self); if (!priv->conversation_) return; g_signal_emit(G_OBJECT(self), chat_view_signals[PLACE_CALL_CLICKED], 0, priv->conversation_->uid.c_str()); } static void place_audio_call_clicked(ChatView *self) { auto priv = CHAT_VIEW_GET_PRIVATE(self); if (!priv->conversation_) return; g_signal_emit(G_OBJECT(self), chat_view_signals[PLACE_AUDIO_CALL_CLICKED], 0, priv->conversation_->uid.c_str()); } static void add_to_conversations_clicked(ChatView *self) { auto priv = CHAT_VIEW_GET_PRIVATE(self); if (!priv->conversation_) return; g_signal_emit(G_OBJECT(self), chat_view_signals[ADD_CONVERSATION_CLICKED], 0, priv->conversation_->uid.c_str()); } static void send_text_clicked(ChatView *self, const std::string& body) { auto priv = CHAT_VIEW_GET_PRIVATE(self); if (!priv->conversation_) return; g_signal_emit(G_OBJECT(self), chat_view_signals[SEND_TEXT_CLICKED], 0, priv->conversation_->uid.c_str(), body.c_str()); } static gchar* file_to_manipulate(GtkWindow* top_window, bool send) { GtkWidget* dialog; GtkFileChooserAction action = send? GTK_FILE_CHOOSER_ACTION_OPEN : GTK_FILE_CHOOSER_ACTION_SAVE; gint res; gchar* filename = nullptr; dialog = gtk_file_chooser_dialog_new(send? _("Send File") : _("Save File"), top_window, action, _("_Cancel"), GTK_RESPONSE_CANCEL, send? _("_Open"): _("_Save"), GTK_RESPONSE_ACCEPT, nullptr); res = gtk_dialog_run (GTK_DIALOG(dialog)); if (res == GTK_RESPONSE_ACCEPT) { auto chooser = GTK_FILE_CHOOSER(dialog); filename = gtk_file_chooser_get_filename(chooser); } gtk_widget_destroy (dialog); return filename; } static void update_chatview_frame(ChatView *self); static void webkit_chat_container_script_dialog(GtkWidget* webview, gchar *interaction, ChatView* self) { auto priv = CHAT_VIEW_GET_PRIVATE(self); auto order = std::string(interaction); if (!priv->conversation_) return; if (order == "ACCEPT") { (*priv->accountInfo_)->conversationModel->makePermanent(priv->conversation_->uid); } else if (order == "REFUSE") { (*priv->accountInfo_)->conversationModel->removeConversation(priv->conversation_->uid); } else if (order == "BLOCK") { (*priv->accountInfo_)->conversationModel->removeConversation(priv->conversation_->uid, true); } else if (order == "UNBLOCK") { try { auto contactUri = priv->conversation_->participants.front(); auto& contact = (*priv->accountInfo_)->contactModel->getContact(contactUri); (*priv->accountInfo_)->contactModel->addContact(contact); } catch (std::out_of_range&) { g_debug("webkit_chat_container_script_dialog: oor while retrieving invalid contact info. Chatview bug ?"); } } else if (order.find("PLACE_CALL") == 0) { placecall_clicked(self); } else if (order.find("PLACE_AUDIO_CALL") == 0) { place_audio_call_clicked(self); } else if (order.find("CLOSE_CHATVIEW") == 0) { hide_chat_view(webview, self); } else if (order.find("SEND:") == 0) { auto toSend = order.substr(std::string("SEND:").size()); if ((*priv->accountInfo_)->profileInfo.type == lrc::api::profile::Type::RING) { (*priv->accountInfo_)->conversationModel->sendMessage(priv->conversation_->uid, toSend); } else { // For SIP accounts, we need to wait that the conversation is created to send text send_text_clicked(self, toSend); } } else if (order.find("SEND_FILE") == 0) { if (auto model = (*priv->accountInfo_)->conversationModel.get()) { if (auto filename = file_to_manipulate(GTK_WINDOW(gtk_widget_get_toplevel(GTK_WIDGET(self))), true)) model->sendFile(priv->conversation_->uid, filename, g_path_get_basename(filename)); } } else if (order.find("ACCEPT_FILE:") == 0) { if (auto model = (*priv->accountInfo_)->conversationModel.get()) { try { auto interactionId = std::stoull(order.substr(std::string("ACCEPT_FILE:").size())); lrc::api::datatransfer::Info info = {}; (*priv->accountInfo_)->conversationModel->getTransferInfo(interactionId, info); // get preferred directory destination. auto* download_directory_variant = g_settings_get_value(priv->settings, "download-folder"); char* download_directory_value; g_variant_get(download_directory_variant, "&s", &download_directory_value); std::string default_download_dir = g_get_user_special_dir (G_USER_DIRECTORY_DOWNLOAD); auto current_value = std::string(download_directory_value); if (current_value.empty()) { g_settings_set_value(priv->settings, "download-folder", g_variant_new("s", default_download_dir.c_str())); } // get full path std::string filename = current_value.empty()? default_download_dir.c_str() : download_directory_value; if (!filename.empty() && filename.back() != '/') filename += "/"; auto wantedFilename = filename + info.displayName; auto duplicate = 0; while (std::ifstream(wantedFilename).good()) { ++duplicate; auto extensionIdx = info.displayName.find_last_of("."); if (extensionIdx == std::string::npos) wantedFilename = filename + info.displayName + " (" + std::to_string(duplicate) + ")"; else wantedFilename = filename + info.displayName.substr(0, extensionIdx) + " (" + std::to_string(duplicate) + ")" + info.displayName.substr(extensionIdx); } model->acceptTransfer(priv->conversation_->uid, interactionId, wantedFilename); } catch (...) { // ignore } } } else if (order.find("REFUSE_FILE:") == 0) { if (auto model = (*priv->accountInfo_)->conversationModel.get()) { try { auto interactionId = std::stoull(order.substr(std::string("REFUSE_FILE:").size())); model->cancelTransfer(priv->conversation_->uid, interactionId); } catch (...) { // ignore } } } else if (order.find("OPEN_FILE:") == 0) { // Get text body auto filename {"file://" + order.substr(std::string("OPEN_FILE:").size())}; filename.erase(std::find_if(filename.rbegin(), filename.rend(), std::not1(std::ptr_fun(std::isspace))).base(), filename.end()); GError* error = nullptr; if (!gtk_show_uri(nullptr, filename.c_str(), GDK_CURRENT_TIME, &error)) { g_debug("Could not open file: %s", error->message); g_error_free(error); } } else if (order.find("ADD_TO_CONVERSATIONS") == 0) { add_to_conversations_clicked(self); } else if (order.find("DELETE_INTERACTION:") == 0) { try { auto interactionId = std::stoull(order.substr(std::string("DELETE_INTERACTION:").size())); if (!priv->conversation_) return; (*priv->accountInfo_)->conversationModel->clearInteractionFromConversation(priv->conversation_->uid, interactionId); } catch (...) { g_warning("delete interaction failed: can't find %s", order.substr(std::string("DELETE_INTERACTION:").size()).c_str()); } } else if (order.find("RETRY_INTERACTION:") == 0) { try { auto interactionId = std::stoull(order.substr(std::string("RETRY_INTERACTION:").size())); if (!priv->conversation_) return; (*priv->accountInfo_)->conversationModel->retryInteraction(priv->conversation_->uid, interactionId); } catch (...) { g_warning("delete interaction failed: can't find %s", order.substr(std::string("RETRY_INTERACTION:").size()).c_str()); } } } static void chat_view_init(ChatView *view) { gtk_widget_init_template(GTK_WIDGET(view)); ChatViewPrivate *priv = CHAT_VIEW_GET_PRIVATE(view); priv->settings = g_settings_new_full(get_settings_schema(), NULL, NULL); } static void chat_view_class_init(ChatViewClass *klass) { G_OBJECT_CLASS(klass)->dispose = chat_view_dispose; gtk_widget_class_set_template_from_resource(GTK_WIDGET_CLASS (klass), "/net/jami/JamiGnome/chatview.ui"); gtk_widget_class_bind_template_child_private(GTK_WIDGET_CLASS (klass), ChatView, box_webkit_chat_container); chat_view_signals[NEW_MESSAGES_DISPLAYED] = g_signal_new ( "new-interactions-displayed", G_TYPE_FROM_CLASS(klass), (GSignalFlags) (G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), 0, nullptr, nullptr, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); chat_view_signals[HIDE_VIEW_CLICKED] = g_signal_new ( "hide-view-clicked", G_TYPE_FROM_CLASS(klass), (GSignalFlags) (G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), 0, nullptr, nullptr, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); chat_view_signals[PLACE_CALL_CLICKED] = g_signal_new ( "place-call-clicked", G_TYPE_FROM_CLASS(klass), (GSignalFlags) (G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED), 0, nullptr, nullptr, g_cclosure_marshal_VOID__STRING, G_TYPE_NONE, 1, G_TYPE_STRING); chat_view_signals[PLACE_AUDIO_CALL_CLICKED] = g_signal_new ( "place-audio-call-clicked", G_TYPE_FROM_CLASS(klass), (GSignalFlags) (G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), 0, nullptr, nullptr, g_cclosure_marshal_VOID__STRING, G_TYPE_NONE, 1, G_TYPE_STRING); chat_view_signals[ADD_CONVERSATION_CLICKED] = g_signal_new ( "add-conversation-clicked", G_TYPE_FROM_CLASS(klass), (GSignalFlags) (G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), 0, nullptr, nullptr, g_cclosure_marshal_VOID__STRING, G_TYPE_NONE, 1, G_TYPE_STRING); chat_view_signals[SEND_TEXT_CLICKED] = g_signal_new ( "send-text-clicked", G_TYPE_FROM_CLASS(klass), (GSignalFlags) (G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), 0, nullptr, nullptr, g_cclosure_user_marshal_VOID__STRING_STRING, G_TYPE_NONE, 2, G_TYPE_STRING, G_TYPE_STRING); } static void print_interaction_to_buffer(ChatView* self, uint64_t interactionId, const lrc::api::interaction::Info& interaction) { ChatViewPrivate *priv = CHAT_VIEW_GET_PRIVATE(self); if (!priv->conversation_) return; if (!interaction.isRead) (*priv->accountInfo_)->conversationModel->setInteractionRead(priv->conversation_->uid, interactionId); webkit_chat_container_print_new_interaction( WEBKIT_CHAT_CONTAINER(priv->webkit_chat_container), *(*priv->accountInfo_)->conversationModel, interactionId, interaction ); } static void update_interaction(ChatView* self, uint64_t interactionId, const lrc::api::interaction::Info& interaction) { ChatViewPrivate *priv = CHAT_VIEW_GET_PRIVATE(self); webkit_chat_container_update_interaction( WEBKIT_CHAT_CONTAINER(priv->webkit_chat_container), *(*priv->accountInfo_)->conversationModel, interactionId, interaction ); } static void remove_interaction(ChatView* self, uint64_t interactionId) { ChatViewPrivate *priv = CHAT_VIEW_GET_PRIVATE(self); webkit_chat_container_remove_interaction( WEBKIT_CHAT_CONTAINER(priv->webkit_chat_container), interactionId ); } static void load_participants_images(ChatView *self) { g_return_if_fail(IS_CHAT_VIEW(self)); ChatViewPrivate *priv = CHAT_VIEW_GET_PRIVATE(self); // Contact if (!priv->conversation_) return; auto contactUri = priv->conversation_->participants.front(); try{ auto& contact = (*priv->accountInfo_)->contactModel->getContact(contactUri); std::string avatar_str = contact.profileInfo.avatar; if (avatar_str.empty()) { auto var_photo = Interfaces::PixbufManipulator().conversationPhoto( *priv->conversation_, **(priv->accountInfo_), QSize(AVATAR_WIDTH, AVATAR_HEIGHT), contact.isPresent ); auto image = var_photo.value>(); auto ba = Interfaces::PixbufManipulator().toByteArray(var_photo); avatar_str = ba.toBase64().toStdString(); } webkit_chat_container_set_sender_image( WEBKIT_CHAT_CONTAINER(priv->webkit_chat_container), contactUri, avatar_str ); } catch (const std::out_of_range&) { // ContactModel::getContact() exception } // For this account std::string avatar_str = (*priv->accountInfo_)->profileInfo.avatar; if (avatar_str.empty()) { auto default_photo = QVariant::fromValue(Interfaces::PixbufManipulator().scaleAndFrame( Interfaces::PixbufManipulator().generateAvatar("", "").get(), QSize(AVATAR_WIDTH, AVATAR_HEIGHT), false)); auto ba = Interfaces::PixbufManipulator().toByteArray(default_photo); avatar_str = ba.toBase64().toStdString(); } webkit_chat_container_set_sender_image( WEBKIT_CHAT_CONTAINER(priv->webkit_chat_container), (*priv->accountInfo_)->profileInfo.uri, avatar_str ); } static void print_text_recording(ChatView *self) { g_return_if_fail(IS_CHAT_VIEW(self)); ChatViewPrivate *priv = CHAT_VIEW_GET_PRIVATE(self); // Read interactions if (!priv->conversation_) return; for (const auto& it: priv->conversation_->interactions) { if (!it.second.isRead) (*priv->accountInfo_)->conversationModel->setInteractionRead(priv->conversation_->uid, it.first); } webkit_chat_container_print_history( WEBKIT_CHAT_CONTAINER(priv->webkit_chat_container), *(*priv->accountInfo_)->conversationModel, priv->conversation_->interactions ); } static void webkit_chat_container_ready(ChatView* self) { /* The webkit chat container has loaded the javascript libraries, we can * now use it. */ ChatViewPrivate *priv = CHAT_VIEW_GET_PRIVATE(self); webkit_chat_container_clear( WEBKIT_CHAT_CONTAINER(priv->webkit_chat_container) ); display_links_toggled(self); print_text_recording(self); load_participants_images(self); priv->ready_ = true; for (const auto& interaction: priv->cpp_->interactionsBuffer_) { if (interaction.conv == priv->conversation_->uid) { print_interaction_to_buffer(self, interaction.id, interaction.info); } } priv->update_interaction_connection = QObject::connect( &*(*priv->accountInfo_)->conversationModel, &lrc::api::ConversationModel::interactionStatusUpdated, [self, priv](const std::string& uid, uint64_t msgId, lrc::api::interaction::Info msg) { if (!priv->conversation_) return; if (uid == priv->conversation_->uid) { update_interaction(self, msgId, msg); } }); priv->interaction_removed = QObject::connect( &*(*priv->accountInfo_)->conversationModel, &lrc::api::ConversationModel::interactionRemoved, [self, priv](const std::string& convUid, uint64_t interactionId) { if (!priv->conversation_) return; if (convUid == priv->conversation_->uid) { remove_interaction(self, interactionId); } }); if (!priv->conversation_) return; auto contactUri = priv->conversation_->participants.front(); try { auto contactInfo = (*priv->accountInfo_)->contactModel->getContact(contactUri); auto bestName = contactInfo.profileInfo.alias; if (bestName.empty()) bestName = contactInfo.registeredName; if (bestName.empty()) bestName = contactInfo.profileInfo.uri; bestName.erase(std::remove(bestName.begin(), bestName.end(), '\r'), bestName.end()); } catch (const std::out_of_range&) { // ContactModel::getContact() exception } update_chatview_frame(self); } static void update_chatview_frame(ChatView* self) { g_return_if_fail(IS_CHAT_VIEW(self)); ChatViewPrivate *priv = CHAT_VIEW_GET_PRIVATE(self); if (!priv->conversation_) return; auto contactUri = priv->conversation_->participants.front(); lrc::api::contact::Info contactInfo; try { contactInfo = (*priv->accountInfo_)->contactModel->getContact(contactUri); } catch (const std::out_of_range&) { g_debug("update_chatview_frame: failed to retrieve contactInfo"); return; } // get alias and bestName auto alias = contactInfo.profileInfo.alias; auto bestName = contactInfo.registeredName; if (bestName.empty()) bestName = contactInfo.profileInfo.uri; if (bestName == alias) alias = ""; bestName.erase(std::remove(bestName.begin(), bestName.end(), '\r'), bestName.end()); alias.erase(std::remove(alias.begin(), alias.end(), '\r'), alias.end()); // get temporary status bool temp = contactInfo.profileInfo.type == lrc::api::profile::Type::TEMPORARY || contactInfo.profileInfo.type == lrc::api::profile::Type::PENDING; webkit_chat_update_chatview_frame(WEBKIT_CHAT_CONTAINER(priv->webkit_chat_container), (*priv->accountInfo_)->enabled, contactInfo.isBanned, temp, alias.c_str(), bestName.c_str()); webkit_chat_container_set_invitation(WEBKIT_CHAT_CONTAINER(priv->webkit_chat_container), (contactInfo.profileInfo.type == lrc::api::profile::Type::PENDING), bestName, contactInfo.profileInfo.uri); // hide navbar if we are in call try { std::string callId; if (priv->conversation_->confId.empty()) { callId = priv->conversation_->callId; } else { callId = priv->conversation_->confId; } if (*priv->accountInfo_) { const lrc::api::call::Status& status = (*priv->accountInfo_)->callModel->getCall(callId).status; if (status != lrc::api::call::Status::ENDED && status != lrc::api::call::Status::INVALID && status != lrc::api::call::Status::TERMINATING) { g_debug("call has status %s, hiding", lrc::api::call::to_string(status).c_str()); chat_view_set_header_visible(self, FALSE); } else { chat_view_set_header_visible(self, TRUE); } } } catch (const std::out_of_range&) {} } static void on_webkit_drag_drop(GtkWidget*, gchar* data, ChatView* self) { g_return_if_fail(IS_CHAT_VIEW(self)); ChatViewPrivate *priv = CHAT_VIEW_GET_PRIVATE(self); if (!priv->conversation_) return; if (!data) return; GError *error = nullptr; auto* filename_uri = g_filename_from_uri(data, nullptr, &error); if (error) { g_warning("Unable to exec g_filename_from_uri on %s", data); g_error_free(error); return; } std::string data_str = filename_uri; g_free(filename_uri); // Only take files if (data_str.find("\r\n") == std::string::npos) return; const auto LEN_END = std::string("\r\n").length(); if (data_str.length() > LEN_END) { // remove \r\n from the string data_str = data_str.substr(0, data_str.length() - LEN_END); } else { // Nothing valid to drop, abort. return; } if (auto model = (*priv->accountInfo_)->conversationModel.get()) { model->sendFile(priv->conversation_->uid, data_str, g_path_get_basename(data_str.c_str())); } } static void build_chat_view(ChatView* self) { ChatViewPrivate *priv = CHAT_VIEW_GET_PRIVATE(self); gtk_container_add(GTK_CONTAINER(priv->box_webkit_chat_container), priv->webkit_chat_container); gtk_widget_show(priv->webkit_chat_container); update_chatview_frame(self); priv->webkit_ready = g_signal_connect_swapped( priv->webkit_chat_container, "ready", G_CALLBACK(webkit_chat_container_ready), self ); priv->webkit_send_text = g_signal_connect(priv->webkit_chat_container, "script-dialog", G_CALLBACK(webkit_chat_container_script_dialog), self); priv->webkit_drag_drop = g_signal_connect( priv->webkit_chat_container, "data-dropped", G_CALLBACK(on_webkit_drag_drop), self ); priv->new_interaction_connection = QObject::connect( &*(*priv->accountInfo_)->conversationModel, &lrc::api::ConversationModel::newInteraction, [self, priv](const std::string& uid, uint64_t interactionId, lrc::api::interaction::Info interaction) { if (!priv->conversation_) return; if (!priv->ready_ && priv->cpp_) { priv->cpp_->interactionsBuffer_.emplace_back(CppImpl::Interaction { uid, interactionId, interaction}); } else if (uid == priv->conversation_->uid) { print_interaction_to_buffer(self, interactionId, interaction); } }); priv->cpp_ = new CppImpl(); if (webkit_chat_container_is_ready(WEBKIT_CHAT_CONTAINER(priv->webkit_chat_container))) webkit_chat_container_ready(self); } GtkWidget * chat_view_new (WebKitChatContainer* webkit_chat_container, AccountInfoPointer const & accountInfo, lrc::api::conversation::Info* conversation) { ChatView *self = CHAT_VIEW(g_object_new(CHAT_VIEW_TYPE, NULL)); ChatViewPrivate *priv = CHAT_VIEW_GET_PRIVATE(self); priv->webkit_chat_container = GTK_WIDGET(webkit_chat_container); priv->conversation_ = conversation; priv->accountInfo_ = &accountInfo; build_chat_view(self); return (GtkWidget *)self; } void chat_view_update_temporary(ChatView* self) { g_return_if_fail(IS_CHAT_VIEW(self)); update_chatview_frame(self); } lrc::api::conversation::Info chat_view_get_conversation(ChatView *self) { g_return_val_if_fail(IS_CHAT_VIEW(self), lrc::api::conversation::Info()); auto priv = CHAT_VIEW_GET_PRIVATE(self); return *priv->conversation_; } void chat_view_set_header_visible(ChatView *self, gboolean visible) { auto priv = CHAT_VIEW_GET_PRIVATE(self); webkit_chat_set_header_visible(WEBKIT_CHAT_CONTAINER(priv->webkit_chat_container), visible); }