mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-07-25 06:54:43 +00:00
38 lines
804 B
C++
38 lines
804 B
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 "ui/widgets/menu/menu_action.h"
|
|
|
|
namespace Ui {
|
|
class DynamicImage;
|
|
} // namespace Ui
|
|
|
|
namespace Menu {
|
|
|
|
class ActionWithThumbnail final : public Ui::Menu::Action {
|
|
public:
|
|
ActionWithThumbnail(
|
|
not_null<Ui::Menu::Menu*> parent,
|
|
const style::Menu &st,
|
|
not_null<QAction*> action,
|
|
std::shared_ptr<Ui::DynamicImage> thumbnail,
|
|
int thumbnailSize);
|
|
~ActionWithThumbnail();
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
private:
|
|
std::shared_ptr<Ui::DynamicImage> _thumbnail;
|
|
int _thumbnailSize = 0;
|
|
|
|
};
|
|
|
|
} // namespace Menu
|