mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
c82254aa9e
Remove some UUID remnants
35 lines
856 B
C++
35 lines
856 B
C++
#include "streamview.hpp"
|
|
|
|
#include "channel.hpp"
|
|
#include "util/helpers.hpp"
|
|
#include "util/layoutcreator.hpp"
|
|
#include "widgets/split.hpp"
|
|
|
|
#ifdef USEWEBENGINE
|
|
#include <QtWebEngineWidgets>
|
|
#endif
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
StreamView::StreamView(ChannelPtr channel, const QUrl &url)
|
|
{
|
|
util::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 widgets
|
|
} // namespace chatterino
|