2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 18:57:12 +00:00
tdesktop/Telegram/SourceFiles/window/notifications_utilities.h

50 lines
1008 B
C
Raw Permalink Normal View History

/*
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 "window/notifications_manager.h"
2019-01-18 15:26:43 +04:00
#include "base/timer.h"
namespace Ui {
struct PeerUserpicView;
} // namespace Ui
2020-05-29 19:10:25 +04:00
namespace Window::Notifications {
[[nodiscard]] QImage GenerateUserpic(
not_null<PeerData*> peer,
Ui::PeerUserpicView &view);
class CachedUserpics : public QObject {
public:
CachedUserpics();
~CachedUserpics();
2020-05-29 19:10:25 +04:00
[[nodiscard]] QString get(
const InMemoryKey &key,
not_null<PeerData*> peer,
Ui::PeerUserpicView &view);
private:
2020-05-29 19:10:25 +04:00
void clear();
void clearInMs(int ms);
crl::time clear(crl::time ms);
struct Image {
2020-05-28 18:32:10 +04:00
crl::time until = 0;
QString path;
};
using Images = QMap<InMemoryKey, Image>;
Images _images;
bool _someSavedFlag = false;
2019-01-18 15:26:43 +04:00
base::Timer _clearTimer;
};
} // namespace Window::Notifications