05fc3aef53
Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Task-number: QTBUG-67283 Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef BINDABLESUBSCRIPTION_H
|
|
#define BINDABLESUBSCRIPTION_H
|
|
|
|
#include <QPointer>
|
|
#include <QProperty>
|
|
|
|
class BindableUser;
|
|
|
|
//! [bindable-subscription-class]
|
|
|
|
class BindableSubscription
|
|
{
|
|
public:
|
|
enum Duration { Monthly = 1, Quarterly = 4, Yearly = 12 };
|
|
|
|
BindableSubscription(BindableUser *user);
|
|
BindableSubscription(const BindableSubscription &) = delete;
|
|
|
|
int price() const { return m_price; }
|
|
QBindable<int> bindablePrice() { return &m_price; }
|
|
|
|
Duration duration() const { return m_duration; }
|
|
void setDuration(Duration newDuration);
|
|
QBindable<Duration> bindableDuration() { return &m_duration; }
|
|
|
|
bool isValid() const { return m_isValid; }
|
|
QBindable<bool> bindableIsValid() { return &m_isValid; }
|
|
|
|
private:
|
|
double calculateDiscount() const;
|
|
int basePrice() const;
|
|
|
|
BindableUser *m_user;
|
|
QProperty<Duration> m_duration { Monthly };
|
|
QProperty<int> m_price { 0 };
|
|
QProperty<bool> m_isValid { false };
|
|
};
|
|
|
|
//! [bindable-subscription-class]
|
|
|
|
#endif // BNDABLESUBSCRIPTION_H
|