qt5base-lts/examples/corelib/bindableproperties/subscription/subscription.h
James DeLisle ed6a3ce0af Update the bindable properties example
- Fix the number of months in each duration
- Move the user Country enum to use QLocale::Territory
- Properly calculate the cost per month to match the UI label
- Use QLocale to format the price display text
- Fix some misspellings and grammar in the doc

Pick-to: 6.2 6.5
Change-Id: I78a64f344073070cd94d5cb4a8a4c7c13afa337f
Reviewed-by: Paul Wicking <paul.wicking@qt.io>
2023-03-09 12:27:00 -05:00

49 lines
966 B
C++

// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef SUBSCRIPTION_H
#define SUBSCRIPTION_H
#include <QObject>
#include <QPointer>
class User;
//! [subscription-class]
class Subscription : public QObject
{
Q_OBJECT
public:
enum Duration { Monthly = 1, Quarterly = 3, Yearly = 12 };
Subscription(User *user);
void calculatePrice();
int price() const { return m_price; }
Duration duration() const { return m_duration; }
void setDuration(Duration newDuration);
bool isValid() const { return m_isValid; }
void updateValidity();
signals:
void priceChanged();
void durationChanged();
void isValidChanged();
private:
double calculateDiscount() const;
int basePrice() const;
QPointer<User> m_user;
Duration m_duration = Monthly;
int m_price = 0;
bool m_isValid = false;
};
//! [subscription-class]
#endif // SUBSCRIPTION_H