2016-04-08 07:12:48 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2017-01-11 18:31:31 +00:00
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
2016-04-08 07:12:48 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
namespace Toast {
|
|
|
|
|
|
|
|
namespace internal {
|
|
|
|
class Manager;
|
|
|
|
class Widget;
|
|
|
|
} // namespace internal
|
|
|
|
|
|
|
|
static constexpr const int DefaultDuration = 1500;
|
|
|
|
struct Config {
|
|
|
|
QString text;
|
|
|
|
int durationMs = DefaultDuration;
|
2016-12-23 13:21:01 +00:00
|
|
|
int maxWidth = 0;
|
|
|
|
QMargins padding;
|
2016-04-08 07:12:48 +00:00
|
|
|
};
|
2016-04-12 21:31:28 +00:00
|
|
|
void Show(QWidget *parent, const Config &config);
|
2016-04-08 07:12:48 +00:00
|
|
|
|
|
|
|
class Instance {
|
|
|
|
struct Private {
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
Instance(const Config &config, QWidget *widgetParent, const Private &);
|
|
|
|
Instance(const Instance &other) = delete;
|
|
|
|
Instance &operator=(const Instance &other) = delete;
|
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
void hideAnimated();
|
2016-04-08 07:12:48 +00:00
|
|
|
void hide();
|
|
|
|
|
|
|
|
private:
|
2016-12-07 13:32:25 +00:00
|
|
|
void opacityAnimationCallback();
|
|
|
|
|
|
|
|
bool _hiding = false;
|
|
|
|
Animation _a_opacity;
|
2016-04-08 07:12:48 +00:00
|
|
|
|
2016-12-01 19:20:33 +00:00
|
|
|
const TimeMs _hideAtMs;
|
2016-04-08 07:12:48 +00:00
|
|
|
|
|
|
|
// ToastManager should reset _widget pointer if _widget is destroyed.
|
|
|
|
friend class internal::Manager;
|
2016-04-12 21:31:28 +00:00
|
|
|
friend void Show(QWidget *parent, const Config &config);
|
2016-04-10 19:20:48 +00:00
|
|
|
std_::unique_ptr<internal::Widget> _widget;
|
2016-04-08 07:12:48 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Toast
|
|
|
|
} // namespace Ui
|