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.
28 lines
644 B
28 lines
644 B
3 years ago
|
#ifndef BMODEDISPLAYVIEWMODEL_H
|
||
|
#define BMODEDISPLAYVIEWMODEL_H
|
||
|
|
||
|
#include "viewModel/BaseViewModel.h"
|
||
|
|
||
|
#include "viewModel/bMode/display/tint/TintMapManager.h"
|
||
|
#include "viewModel/bMode/display/gray/GrayMapManager.h"
|
||
|
|
||
|
|
||
|
class BModeDisplayViewModel : public BaseViewModel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
US_VIEW_MODEL(BModeDisplayViewModel)
|
||
|
SINGLETON(BModeDisplayViewModel)
|
||
|
|
||
|
private:
|
||
|
US_PROPERTY_VIEW_ONLY(TintMapManager*, tintManager, new TintMapManager)
|
||
|
US_PROPERTY_VIEW_ONLY(GrayMapManager*, grayMapManager, new GrayMapManager)
|
||
|
|
||
|
//uncrustify off
|
||
|
public slots:
|
||
|
//uncrustify on
|
||
|
void newTintMap();
|
||
|
void newGrayMap();
|
||
|
};
|
||
|
|
||
|
#endif //BMODEDISPLAYVIEWMODEL_H
|