tdesktop/Telegram/SourceFiles/window/notifications_utilities.h

54 lines
1.0 KiB
C
Raw 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 11:26:43 +00:00
#include "base/timer.h"
2020-05-29 15:10:25 +00:00
namespace Data {
class CloudImageView;
} // namespace Data
namespace Window {
namespace Notifications {
class CachedUserpics : public QObject {
public:
enum class Type {
Rounded,
Circled,
};
2020-05-29 15:10:25 +00:00
CachedUserpics(Type type);
~CachedUserpics();
2020-05-29 15:10:25 +00:00
[[nodiscard]] QString get(
const InMemoryKey &key,
not_null<PeerData*> peer,
std::shared_ptr<Data::CloudImageView> &view);
private:
2020-05-29 15:10:25 +00:00
void clear();
void clearInMs(int ms);
crl::time clear(crl::time ms);
Type _type = Type::Rounded;
struct Image {
2020-05-28 14:32:10 +00:00
crl::time until = 0;
QString path;
};
using Images = QMap<InMemoryKey, Image>;
Images _images;
bool _someSavedFlag = false;
2019-01-18 11:26:43 +00:00
base::Timer _clearTimer;
};
} // namesapce Notifications
} // namespace Window