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

37 lines
632 B
C++

// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef USER_H
#define USER_H
#include <QLocale>
#include <QObject>
//! [user-class]
class User : public QObject
{
Q_OBJECT
public:
using Country = QLocale::Territory;
public:
Country country() const { return m_country; }
void setCountry(Country country);
int age() const { return m_age; }
void setAge(int age);
signals:
void countryChanged();
void ageChanged();
private:
Country m_country { QLocale::AnyTerritory };
int m_age { 0 };
};
//! [user-class]
#endif // USER_H