You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
#ifndef TESTVIEWMODEL_H
|
|
#define TESTVIEWMODEL_H
|
|
|
|
#include <QtMvvmCore/ViewModel>
|
|
|
|
class TestViewModel : public QtMvvm::ViewModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Q_INVOKABLE explicit TestViewModel(QObject *parent = nullptr);
|
|
|
|
void presenChild(const QVariantHash ¶ms = {});
|
|
void presentResult(quint32 code);
|
|
|
|
QList<std::tuple<quint32, QVariant>> results;
|
|
|
|
public Q_SLOTS:
|
|
void onInit(const QVariantHash ¶ms) override;
|
|
void onResult(quint32 requestCode, const QVariant &result) override;
|
|
};
|
|
Q_DECLARE_METATYPE(TestViewModel*)
|
|
|
|
class TestSingleViewModel : public QtMvvm::ViewModel
|
|
{
|
|
Q_OBJECT
|
|
QTMVVM_SINGLETON
|
|
|
|
public:
|
|
Q_INVOKABLE explicit TestSingleViewModel(QObject *parent = nullptr);
|
|
};
|
|
Q_DECLARE_METATYPE(TestSingleViewModel*)
|
|
|
|
class TestContainedViewModel : public QtMvvm::ViewModel
|
|
{
|
|
Q_OBJECT
|
|
QTMVVM_CONTAINER_VM(TestViewModel)
|
|
|
|
public:
|
|
Q_INVOKABLE explicit TestContainedViewModel(QObject *parent = nullptr);
|
|
};
|
|
|
|
class TestContainedSingleViewModel : public QtMvvm::ViewModel
|
|
{
|
|
Q_OBJECT
|
|
QTMVVM_CONTAINER_VM(TestSingleViewModel)
|
|
|
|
public:
|
|
Q_INVOKABLE explicit TestContainedSingleViewModel(QObject *parent = nullptr);
|
|
};
|
|
|
|
#endif // TESTVIEWMODEL_H
|
|
|