ed6a3ce0af
- 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>
37 lines
812 B
C++
37 lines
812 B
C++
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef BINDABLEUSER_H
|
|
#define BINDABLEUSER_H
|
|
|
|
#include <QLocale>
|
|
#include <QProperty>
|
|
|
|
//! [bindable-user-class]
|
|
|
|
class BindableUser
|
|
{
|
|
public:
|
|
using Country = QLocale::Territory;
|
|
|
|
public:
|
|
BindableUser() = default;
|
|
BindableUser(const BindableUser &) = delete;
|
|
|
|
Country country() const { return m_country; }
|
|
void setCountry(Country country);
|
|
QBindable<Country> bindableCountry() { return &m_country; }
|
|
|
|
int age() const { return m_age; }
|
|
void setAge(int age);
|
|
QBindable<int> bindableAge() { return &m_age; }
|
|
|
|
private:
|
|
QProperty<Country> m_country { QLocale::AnyTerritory };
|
|
QProperty<int> m_age { 0 };
|
|
};
|
|
|
|
//! [bindable-user-class]
|
|
|
|
#endif // BINDABLEUSER_H
|