mirror-chatterino2/src/widgets/chatwidget.cpp

275 lines
6.6 KiB
C++
Raw Normal View History

2017-06-11 09:31:45 +02:00
#include "widgets/chatwidget.hpp"
#include "channelmanager.hpp"
#include "colorscheme.hpp"
#include "notebookpage.hpp"
#include "settingsmanager.hpp"
#include "widgets/textinputdialog.hpp"
2017-01-17 00:15:44 +01:00
#include <QDebug>
2017-01-17 00:15:44 +01:00
#include <QFont>
#include <QFontDatabase>
#include <QPainter>
#include <QShortcut>
2017-01-17 00:15:44 +01:00
#include <QVBoxLayout>
#include <boost/signals2.hpp>
2016-12-29 17:31:07 +01:00
#include <functional>
2017-04-14 17:52:22 +02:00
using namespace chatterino::messages;
2017-04-12 17:46:44 +02:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
namespace widgets {
2017-01-18 21:30:23 +01:00
namespace {
template <typename T>
inline void ezShortcut(ChatWidget *w, const char *key, T t)
{
auto s = new QShortcut(QKeySequence(key), w);
s->setContext(Qt::WidgetWithChildrenShortcut);
QObject::connect(s, &QShortcut::activated, w, t);
}
} // namespace
static int index = 0;
ChatWidget::ChatWidget(ChannelManager &_channelManager, NotebookPage *parent)
: BaseWidget(parent)
, channelManager(_channelManager)
, completionManager(parent->completionManager)
2017-07-23 09:53:50 +02:00
, channel(_channelManager.emptyChannel)
, vbox(this)
, header(this)
, view(this)
, input(this)
, channelName("/chatWidgets/" + std::to_string(index++) + "/channelName")
2016-12-29 17:31:07 +01:00
{
this->vbox.setSpacing(0);
this->vbox.setMargin(1);
2017-01-01 02:30:42 +01:00
this->vbox.addWidget(&this->header);
this->vbox.addWidget(&this->view, 1);
this->vbox.addWidget(&this->input);
// Initialize chat widget-wide hotkeys
// CTRL+T: Create new split (Add page)
ezShortcut(this, "CTRL+T", &ChatWidget::doAddSplit);
// CTRL+W: Close Split
ezShortcut(this, "CTRL+W", &ChatWidget::doCloseSplit);
// CTRL+R: Change Channel
ezShortcut(this, "CTRL+R", &ChatWidget::doChangeChannel);
this->channelName.getValueChangedSignal().connect(
std::bind(&ChatWidget::channelNameUpdated, this, std::placeholders::_1));
this->channelNameUpdated(this->channelName.getValue());
2017-01-01 02:30:42 +01:00
}
ChatWidget::~ChatWidget()
{
this->detachChannel();
2016-12-29 17:31:07 +01:00
}
2017-05-27 16:16:39 +02:00
std::shared_ptr<Channel> ChatWidget::getChannel() const
2017-04-12 17:46:44 +02:00
{
return this->channel;
2017-04-12 17:46:44 +02:00
}
std::shared_ptr<Channel> &ChatWidget::getChannelRef()
{
return this->channel;
}
void ChatWidget::setChannel(std::shared_ptr<Channel> _newChannel)
2017-04-12 17:46:44 +02:00
{
this->channel = _newChannel;
2017-04-12 17:46:44 +02:00
// on new message
this->messageAppendedConnection =
this->channel->messageAppended.connect([this](SharedMessage &message) {
SharedMessageRef deleted;
auto messageRef = new MessageRef(message);
if (this->messages.appendItem(SharedMessageRef(messageRef), deleted)) {
qreal value = std::max(0.0, this->view.getScrollBar().getDesiredValue() - 1);
this->view.getScrollBar().setDesiredValue(value, false);
}
});
2017-04-12 17:46:44 +02:00
// on message removed
this->messageRemovedConnection =
this->channel->messageRemovedFromStart.connect([](SharedMessage &) {
//
});
auto snapshot = this->channel->getMessageSnapshot();
for (int i = 0; i < snapshot.getLength(); i++) {
2017-04-12 17:46:44 +02:00
SharedMessageRef deleted;
2017-04-12 17:46:44 +02:00
auto messageRef = new MessageRef(snapshot[i]);
this->messages.appendItem(SharedMessageRef(messageRef), deleted);
2017-01-17 00:15:44 +01:00
}
2017-04-12 17:46:44 +02:00
}
2017-05-29 21:02:01 +02:00
void ChatWidget::detachChannel()
2017-04-12 17:46:44 +02:00
{
// on message added
this->messageAppendedConnection.disconnect();
2017-01-26 04:26:40 +01:00
2017-04-12 17:46:44 +02:00
// on message removed
this->messageRemovedConnection.disconnect();
2017-04-12 17:46:44 +02:00
}
void ChatWidget::channelNameUpdated(const std::string &newChannelName)
{
// remove current channel
if (!this->channel->isEmpty()) {
2017-07-23 09:53:50 +02:00
this->channelManager.removeChannel(this->channel->name);
this->detachChannel();
}
// update messages
this->messages.clear();
if (newChannelName.empty()) {
2017-07-23 09:53:50 +02:00
this->channel = this->channelManager.emptyChannel;
} else {
this->setChannel(this->channelManager.addChannel(QString::fromStdString(newChannelName)));
}
// update header
this->header.updateChannelText();
// update view
this->layoutMessages(true);
}
2017-05-27 16:16:39 +02:00
LimitedQueueSnapshot<SharedMessageRef> ChatWidget::getMessagesSnapshot()
2017-04-12 17:46:44 +02:00
{
return this->messages.getSnapshot();
2017-01-17 00:15:44 +01:00
}
bool ChatWidget::showChangeChannelPopup(const char *dialogTitle, bool empty)
2017-01-17 00:15:44 +01:00
{
2017-04-12 17:46:44 +02:00
// create new input dialog and execute it
2017-01-17 00:15:44 +01:00
TextInputDialog dialog(this);
dialog.setWindowTitle(dialogTitle);
if (!empty) {
dialog.setText(QString::fromStdString(this->channelName));
}
2017-01-17 00:15:44 +01:00
if (dialog.exec() == QDialog::Accepted) {
QString newChannelName = dialog.getText().trimmed();
this->channelName = newChannelName.toStdString();
return true;
2017-01-17 00:15:44 +01:00
}
return false;
2017-01-17 00:15:44 +01:00
}
2017-07-02 14:40:36 +02:00
void ChatWidget::layoutMessages(bool forceUpdate)
2017-04-12 17:46:44 +02:00
{
2017-07-02 14:40:36 +02:00
if (this->view.layoutMessages() || forceUpdate) {
this->view.update();
2017-04-12 17:46:44 +02:00
}
}
2017-05-27 16:16:39 +02:00
void ChatWidget::updateGifEmotes()
2017-04-12 17:46:44 +02:00
{
this->view.updateGifEmotes();
2017-04-12 17:46:44 +02:00
}
void ChatWidget::giveFocus()
{
this->input.textInput.setFocus();
}
2017-05-27 16:16:39 +02:00
void ChatWidget::paintEvent(QPaintEvent *)
2016-12-29 17:31:07 +01:00
{
2017-04-12 17:46:44 +02:00
// color the background of the chat
2017-01-11 18:52:09 +01:00
QPainter painter(this);
2016-12-29 17:31:07 +01:00
painter.fillRect(this->rect(), this->colorScheme.ChatBackground);
2016-12-29 17:31:07 +01:00
}
2017-01-29 11:38:00 +01:00
2017-05-27 16:16:39 +02:00
void ChatWidget::load(const boost::property_tree::ptree &tree)
2017-01-29 11:38:00 +01:00
{
2017-04-12 17:46:44 +02:00
// load tab text
2017-01-29 11:38:00 +01:00
try {
this->channelName = tree.get<std::string>("channelName");
2017-01-29 11:38:00 +01:00
} catch (boost::property_tree::ptree_error) {
}
2017-01-18 21:30:23 +01:00
}
2017-01-29 11:38:00 +01:00
2017-05-27 16:16:39 +02:00
boost::property_tree::ptree ChatWidget::save()
2017-01-29 11:38:00 +01:00
{
boost::property_tree::ptree tree;
tree.put("channelName", this->channelName.getValue());
2017-01-29 11:38:00 +01:00
return tree;
2017-01-18 21:30:23 +01:00
}
2017-01-29 11:38:00 +01:00
/// Slots
void ChatWidget::doAddSplit()
{
NotebookPage *page = static_cast<NotebookPage *>(this->parentWidget());
page->addChat(true);
}
void ChatWidget::doCloseSplit()
{
NotebookPage *page = static_cast<NotebookPage *>(this->parentWidget());
page->removeFromLayout(this);
}
void ChatWidget::doChangeChannel()
{
this->showChangeChannelPopup("Change channel");
}
2017-06-11 09:11:55 +02:00
void ChatWidget::doPopup()
{
// TODO: Copy signals and stuff too
auto widget =
new ChatWidget(this->channelManager, static_cast<NotebookPage *>(this->parentWidget()));
widget->channelName = this->channelName;
2017-06-11 09:11:55 +02:00
widget->show();
}
void ChatWidget::doClearChat()
{
2017-07-02 14:40:36 +02:00
// Clear all stored messages in this chat widget
this->messages.clear();
// Layout chat widget messages, and force an update regardless if there are no messages
this->layoutMessages(true);
2017-06-11 09:11:55 +02:00
}
void ChatWidget::doOpenChannel()
{
qDebug() << "[UNIMPLEMENTED] Open twitch.tv/"
<< QString::fromStdString(this->channelName.getValue());
2017-06-11 09:11:55 +02:00
}
void ChatWidget::doOpenPopupPlayer()
{
qDebug() << "[UNIMPLEMENTED] Open twitch.tv/"
<< QString::fromStdString(this->channelName.getValue()) << "/popout";
2017-06-11 09:11:55 +02:00
}
2017-04-14 17:52:22 +02:00
} // namespace widgets
} // namespace chatterino