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.
37 lines
707 B
37 lines
707 B
7 years ago
|
#ifndef QTMVVM_IDENTITYEDITDIALOG_P_H
|
||
|
#define QTMVVM_IDENTITYEDITDIALOG_P_H
|
||
|
|
||
|
#include <QtCore/QScopedPointer>
|
||
|
|
||
|
#include <QtWidgets/QDialog>
|
||
|
|
||
|
#include <QtMvvmDataSyncCore/private/identityeditviewmodel_p.h>
|
||
|
|
||
|
#include "qtmvvmdatasyncwidgets_global.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class IdentityEditDialog;
|
||
|
}
|
||
|
|
||
|
namespace QtMvvm {
|
||
|
|
||
|
class Q_MVVMDATASYNCWIDGETS_EXPORT IdentityEditDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
Q_INVOKABLE explicit IdentityEditDialog(QtMvvm::ViewModel *viewModel, QWidget *parent = nullptr);
|
||
|
~IdentityEditDialog();
|
||
|
|
||
|
public Q_SLOTS:
|
||
|
void accept() override;
|
||
|
|
||
|
private:
|
||
|
IdentityEditViewModel *_viewModel;
|
||
|
QScopedPointer<Ui::IdentityEditDialog> ui;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // QTMVVM_IDENTITYEDITDIALOG_P_H
|