mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
33 lines
818 B
C++
33 lines
818 B
C++
#include "StreamView.hpp"
|
|
|
|
#include "common/Channel.hpp"
|
|
#include "util/Helpers.hpp"
|
|
#include "util/LayoutCreator.hpp"
|
|
#include "widgets/splits/Split.hpp"
|
|
|
|
#ifdef USEWEBENGINE
|
|
#include <QtWebEngineWidgets>
|
|
#endif
|
|
|
|
namespace chatterino {
|
|
|
|
StreamView::StreamView(ChannelPtr channel, const QUrl &url)
|
|
{
|
|
LayoutCreator<StreamView> layoutCreator(this);
|
|
|
|
#ifdef USEWEBENGINE
|
|
auto web = layoutCreator.emplace<QWebEngineView>(this).assign(&this->stream);
|
|
web->setUrl(url);
|
|
web->settings()->setAttribute(QWebEngineSettings::FullScreenSupportEnabled, true);
|
|
#endif
|
|
|
|
auto chat = layoutCreator.emplace<ChannelView>();
|
|
chat->setFixedWidth(300);
|
|
chat->setChannel(channel);
|
|
|
|
this->layout()->setSpacing(0);
|
|
this->layout()->setMargin(0);
|
|
}
|
|
|
|
} // namespace chatterino
|