Files
tdesktop/Telegram/SourceFiles/calls/group/calls_group_viewport_raster.h
allhaileris afb81b8278
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
init
2026-02-16 15:50:16 +03:00

68 lines
1.4 KiB
C++

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#include "calls/group/calls_group_viewport.h"
#include "ui/round_rect.h"
#include "ui/effects/cross_line.h"
#include "ui/gl/gl_surface.h"
#include "ui/text/text.h"
namespace Calls::Group {
class Viewport::RendererSW final : public Ui::GL::Renderer {
public:
explicit RendererSW(not_null<Viewport*> owner);
void paintFallback(
Painter &p,
const QRegion &clip,
Ui::GL::Backend backend) override;
private:
struct TileData {
QImage userpicFrame;
QImage blurredFrame;
bool stale = false;
};
void paintTile(
Painter &p,
not_null<VideoTile*> tile,
const QRect &clip,
QRegion &bg);
void paintTileOutline(
Painter &p,
int x,
int y,
int width,
int height,
not_null<VideoTile*> tile);
void paintTileControls(
Painter &p,
int x,
int y,
int width,
int height,
not_null<VideoTile*> tile);
void validateUserpicFrame(
not_null<VideoTile*> tile,
TileData &data);
const not_null<Viewport*> _owner;
QImage _shadow;
bool _userpicFrame = false;
bool _pausedFrame = false;
base::flat_map<not_null<VideoTile*>, TileData> _tileData;
Ui::CrossLineAnimation _pinIcon;
Ui::RoundRect _pinBackground;
};
} // namespace Calls::Group