2016-11-08 14:07:25 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-11-08 14:07:25 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-11-08 14:07:25 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-02-28 10:51:00 +00:00
|
|
|
#include "platform/platform_window_title.h"
|
2016-11-08 14:07:25 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class PlainShadow;
|
|
|
|
} // namespace Ui
|
|
|
|
|
|
|
|
namespace Platform {
|
|
|
|
|
2016-11-09 08:34:38 +00:00
|
|
|
class MainWindow;
|
|
|
|
|
|
|
|
class TitleWidget : public Window::TitleWidget, private base::Subscriber {
|
2016-11-08 14:07:25 +00:00
|
|
|
public:
|
2016-11-09 08:34:38 +00:00
|
|
|
TitleWidget(MainWindow *parent, int height);
|
2016-11-08 14:07:25 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
2016-11-09 08:34:38 +00:00
|
|
|
void mouseDoubleClickEvent(QMouseEvent *e) override;
|
2016-11-08 14:07:25 +00:00
|
|
|
|
|
|
|
private:
|
2016-12-13 17:07:56 +00:00
|
|
|
object_ptr<Ui::PlainShadow> _shadow;
|
2016-11-09 08:34:38 +00:00
|
|
|
QFont _font;
|
2016-11-08 14:07:25 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
object_ptr<Window::TitleWidget> CreateTitleWidget(QWidget *parent);
|
2016-11-08 14:07:25 +00:00
|
|
|
|
2016-12-23 13:21:01 +00:00
|
|
|
int PreviewTitleHeight();
|
|
|
|
void PreviewWindowFramePaint(QImage &preview, const style::palette &palette, QRect body, int outerWidth);
|
|
|
|
|
2016-11-08 14:07:25 +00:00
|
|
|
} // namespace Platform
|