7 changed files with 79 additions and 4 deletions
@ -0,0 +1,17 @@ |
|||||
|
#ifndef MARKERMODEVIEWMODEL_H |
||||
|
#define MARKERMODEVIEWMODEL_H |
||||
|
|
||||
|
#include "viewModel/BaseViewModel.h" |
||||
|
|
||||
|
class MarkerModeViewModel : public BaseViewModel |
||||
|
{ |
||||
|
Q_OBJECT |
||||
|
US_VIEW_MODEL(MarkerModeViewModel) |
||||
|
SINGLETON(MarkerModeViewModel) |
||||
|
|
||||
|
|
||||
|
US_PROPERTY_VIEW_ONLY(bool, isMarkerModeActive, true) |
||||
|
|
||||
|
}; |
||||
|
|
||||
|
#endif |
@ -0,0 +1,46 @@ |
|||||
|
#include "viewModel/markerMode/MarkerModeViewModel.h" |
||||
|
|
||||
|
#include "viewModel/UsmMimic.h" |
||||
|
|
||||
|
|
||||
|
SINGLETON_DEF(MarkerModeViewModel) |
||||
|
|
||||
|
MarkerModeViewModel::MarkerModeViewModel() |
||||
|
{ |
||||
|
} |
||||
|
void MarkerModeViewModel::init() |
||||
|
{ |
||||
|
} |
||||
|
void MarkerModeViewModel::setInitialValue() |
||||
|
{ |
||||
|
|
||||
|
} |
||||
|
|
||||
|
/*************************************************************************************************/ |
||||
|
/**
|
||||
|
* @brief BModeSettingViewModel::sendData |
||||
|
*/ |
||||
|
/*************************************************************************************************/ |
||||
|
void MarkerModeViewModel::sendData(bool sync) |
||||
|
{ |
||||
|
|
||||
|
} |
||||
|
|
||||
|
/*************************************************************************************************/ |
||||
|
/**
|
||||
|
* @brief BModeSettingViewModel::prepareData |
||||
|
*/ |
||||
|
/*************************************************************************************************/ |
||||
|
void MarkerModeViewModel::prepareData() |
||||
|
{ |
||||
|
|
||||
|
} |
||||
|
void MarkerModeViewModel::turnOnMinimalMode() |
||||
|
{ |
||||
|
|
||||
|
} |
||||
|
|
||||
|
/*************************************************************************************************/ |
||||
|
void MarkerModeViewModel::turnOffMinimalMode() |
||||
|
{ |
||||
|
} |
@ -1 +1 @@ |
|||||
Subproject commit e361ecad782962e70840bddafe593e0b212a716c |
Subproject commit 9bc1a9945ffb929f13c1803b85e641fab1e73def |
Loading…
Reference in new issue