mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
61 lines
1.7 KiB
C++
61 lines
1.7 KiB
C++
|
#include "widgets/dialogs/switcher/NewTabItem.hpp"
|
||
|
|
||
|
#include "Application.hpp"
|
||
|
#include "providers/twitch/TwitchIrcServer.hpp"
|
||
|
#include "singletons/Fonts.hpp"
|
||
|
#include "singletons/Theme.hpp"
|
||
|
#include "singletons/WindowManager.hpp"
|
||
|
#include "widgets/Notebook.hpp"
|
||
|
#include "widgets/Window.hpp"
|
||
|
#include "widgets/helper/NotebookTab.hpp"
|
||
|
#include "widgets/splits/Split.hpp"
|
||
|
|
||
|
namespace chatterino {
|
||
|
|
||
|
NewTabItem::NewTabItem(const QString &channelName)
|
||
|
: AbstractSwitcherItem(QIcon(":/switcher/plus.svg"))
|
||
|
, channelName_(channelName)
|
||
|
, text_(QString(TEXT_FORMAT).arg(channelName))
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void NewTabItem::action()
|
||
|
{
|
||
|
auto &nb = getApp()->windows->getMainWindow().getNotebook();
|
||
|
SplitContainer *container = nb.addPage(true);
|
||
|
|
||
|
Split *split = new Split(container);
|
||
|
split->setChannel(
|
||
|
getApp()->twitch.server->getOrAddChannel(this->channelName_));
|
||
|
container->appendSplit(split);
|
||
|
}
|
||
|
|
||
|
void NewTabItem::paint(QPainter *painter, const QRect &rect) const
|
||
|
{
|
||
|
painter->save();
|
||
|
|
||
|
painter->setRenderHint(QPainter::Antialiasing, true);
|
||
|
|
||
|
// TODO(leon): Right pen/brush/font settings?
|
||
|
painter->setPen(getApp()->themes->splits.header.text);
|
||
|
painter->setBrush(Qt::SolidPattern);
|
||
|
painter->setFont(getApp()->fonts->getFont(FontStyle::UiMediumBold, 1.0));
|
||
|
|
||
|
QRect iconRect(rect.topLeft(), ICON_SIZE);
|
||
|
this->icon_.paint(painter, iconRect, Qt::AlignLeft | Qt::AlignVCenter);
|
||
|
|
||
|
QRect textRect =
|
||
|
QRect(iconRect.topRight(),
|
||
|
QSize(rect.width() - iconRect.width(), iconRect.height()));
|
||
|
painter->drawText(textRect, Qt::AlignLeft | Qt::AlignVCenter, this->text_);
|
||
|
|
||
|
painter->restore();
|
||
|
}
|
||
|
|
||
|
QSize NewTabItem::sizeHint(const QRect &rect) const
|
||
|
{
|
||
|
return QSize(rect.width(), ICON_SIZE.height());
|
||
|
}
|
||
|
|
||
|
} // namespace chatterino
|