| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #pragma once
- #include "IntRangeClr.h"
- #include "DoubleRangeClr.h"
- #include "OTSImageProcessParam.h"
- namespace OTSINTERFACE {
- using namespace System;
- using namespace OTSDATA;
- using namespace OTSMODEL;
- public ref class COTSImgProcPrmClr : public Object
- {
- public:
- COTSImgProcPrmClr();
- COTSImgProcPrmClr(COTSImageProcessParam*); // copy constructor
- COTSImgProcPrmClr(COTSImageProcessParamPtr); // copy constructor
- !COTSImgProcPrmClr();
- ~COTSImgProcPrmClr();
-
- COTSImageProcessParamPtr GetImgPrcPrmPtr();
- CDoubleRangeClr^ GetIncArea();
- void SetIncArea(CDoubleRangeClr^ a_oVal);
- bool GetShowAreaUp();
- void SetShowAreaUp(bool a_bValue);
- bool GetShowAreaLow();
- void SetShowAreaLow(bool a_bValue);
- CIntRangeClr^ GetBGGray();
- void SetBGGray(CIntRangeClr^ a_oVal);
- bool GetShowBGUp();
- void SetShowBGUp(bool a_bValue);
- bool GetShowBGLow();
- void SetShowBGLow(bool a_bValue);
- CIntRangeClr^ GetParticleGray();
- void SetParticleGray(CIntRangeClr^ a_oVal);
- bool GetShowPGUp();
- void SetShowPGUp(bool a_bValue);
- bool GetShowPGLow();
- void SetShowPGLow(bool a_bValue);
- protected:
- COTSImageProcessParamPtr* m_LpImgProParam;
- };
- }
|