clean up chatwidgetheader more

This commit is contained in:
Rasmus Karlsson
2017-06-11 09:11:55 +02:00
parent 85356cdd6b
commit 961f22819e
4 changed files with 96 additions and 86 deletions
+23
View File
@@ -235,5 +235,28 @@ void ChatWidget::doChangeChannel()
this->showChangeChannelPopup();
}
void ChatWidget::doPopup()
{
// TODO: Copy signals and stuff too
auto widget = new ChatWidget();
widget->setChannelName(this->getChannelName());
widget->show();
}
void ChatWidget::doClearChat()
{
qDebug() << "[UNIMPLEMENTED]: Clear chat";
}
void ChatWidget::doOpenChannel()
{
qDebug() << "[UNIMPLEMENTED]: Open twitch.tv/" << this->getChannelName();
}
void ChatWidget::doOpenPopupPlayer()
{
qDebug() << "[UNIMPLEMENTED]: Open twitch.tv/" << this->getChannelName() << "/popout";
}
} // namespace widgets
} // namespace chatterino