mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
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
|