1 #ifndef QTMVVM_DATASYNCWINDOW_H     2 #define QTMVVM_DATASYNCWINDOW_H     4 #include <QtCore/QScopedPointer>     6 #include <QtWidgets/QWidget>     8 #include <QtMvvmDataSyncCore/DataSyncViewModel>    10 #include "QtMvvmDataSyncWidgets/qtmvvmdatasyncwidgets_global.h"    14 class DataSyncWindowPrivate;
    21     Q_PROPERTY(
double syncProgress READ syncProgress WRITE setSyncProgress)
    23     Q_PROPERTY(
QString errorText READ errorText WRITE setErrorText)
    31     double syncProgress() const;
    37     void setSyncProgress(
double syncProgress);
    39     void setErrorText(
QString errorText);
    43     virtual 
void viewModelReady();
    46     void removeCurrentDevice();
    54 #endif // QTMVVM_DATASYNCWINDOW_H 
The base class for all viewmodels. 
 
The primary namespace of the QtMvvm library. 
 
The widgets view implementation for the DataSyncViewModel.