2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-25 11:47:29 +00:00
tdesktop/Telegram/SourceFiles/payments/ui/payments_form_summary.h

81 lines
2.1 KiB
C
Raw Normal View History

2021-03-23 16:34:34 +04:00
/*
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/rp_widget.h"
#include "payments/ui/payments_panel_data.h"
#include "base/object_ptr.h"
2021-04-02 15:46:48 +04:00
#include "styles/style_widgets.h"
2021-03-23 16:34:34 +04:00
namespace Ui {
class ScrollArea;
class FadeShadow;
class RoundButton;
2021-03-26 17:05:31 +04:00
class VerticalLayout;
2021-03-23 16:34:34 +04:00
} // namespace Ui
namespace Payments::Ui {
using namespace ::Ui;
class PanelDelegate;
class FormSummary final : public RpWidget {
public:
FormSummary(
QWidget *parent,
const Invoice &invoice,
const RequestedInformation &current,
const PaymentMethodDetails &method,
const ShippingOptions &options,
2021-04-02 15:46:48 +04:00
not_null<PanelDelegate*> delegate,
int scrollTop);
2021-03-23 16:34:34 +04:00
2021-03-26 17:05:31 +04:00
void updateThumbnail(const QImage &thumbnail);
2021-04-02 15:46:48 +04:00
[[nodiscard]] rpl::producer<int> scrollTopValue() const;
2021-03-26 17:05:31 +04:00
2021-03-23 16:34:34 +04:00
private:
void resizeEvent(QResizeEvent *e) override;
void setupControls();
[[nodiscard]] not_null<Ui::RpWidget*> setupContent();
2021-03-26 17:05:31 +04:00
void setupCover(not_null<VerticalLayout*> layout);
void setupPrices(not_null<VerticalLayout*> layout);
2021-04-02 15:46:48 +04:00
void setupSuggestedTips(not_null<VerticalLayout*> layout);
2021-03-26 17:05:31 +04:00
void setupSections(not_null<VerticalLayout*> layout);
2021-03-23 16:34:34 +04:00
void updateControlsGeometry();
2021-04-02 15:46:48 +04:00
[[nodiscard]] QString formatAmount(
int64 amount,
bool forceStripDotZero = false) const;
2021-03-26 17:05:31 +04:00
[[nodiscard]] int64 computeTotalAmount() const;
2021-03-23 16:34:34 +04:00
const not_null<PanelDelegate*> _delegate;
Invoice _invoice;
PaymentMethodDetails _method;
ShippingOptions _options;
RequestedInformation _information;
2021-03-23 16:34:34 +04:00
object_ptr<ScrollArea> _scroll;
object_ptr<FadeShadow> _topShadow;
object_ptr<FadeShadow> _bottomShadow;
object_ptr<RoundButton> _submit;
object_ptr<RoundButton> _cancel;
2021-03-26 17:05:31 +04:00
rpl::event_stream<QImage> _thumbnails;
2021-03-23 16:34:34 +04:00
2021-04-02 15:46:48 +04:00
style::complex_color _tipLightBg;
style::complex_color _tipLightRipple;
style::complex_color _tipChosenBg;
style::complex_color _tipChosenRipple;
style::RoundButton _tipButton;
style::RoundButton _tipChosen;
int _initialScrollTop = 0;
2021-03-23 16:34:34 +04:00
};
} // namespace Payments::Ui