twain2/hugaotwainds/FeederPaper.h

49 lines
2.3 KiB
C
Raw Permalink Normal View History

2020-03-11 02:53:30 +00:00
<EFBFBD><EFBFBD>#pragma once
// FeederPaper <EFBFBD>[݋Fh
class FeederPaper : public CDialog
{
DECLARE_DYNAMIC(FeederPaper)
public:
FeederPaper(CWnd* pParent = nullptr); // h<EFBFBD>Q<EFBFBD>g <EFBFBD><EFBFBD>Qpe
virtual ~FeederPaper();
// <EFBFBD>[݋Fhpenc
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_DIALOG_PAGEFEEDPAPER };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV /ec
DECLARE_MESSAGE_MAP()
public:
virtual BOOL OnInitDialog();
bool getDoubleFeeder();
bool getBindingDetectable();
bool getBackFlip180();
bool getSkrewDetect();
int getSkrewDetectLevel();
int getOrentation();
int getScanCount();
private:
CComboBox m_cmBoxOrentation;
CSliderCtrl m_sldSkrewDetecttion;
void OnInitcmBoxOrentation(int selectIndex);
void OnInitsldSkrewDetection(int value);
bool m_DoubleFeeder;// = false;
bool m_BingdingDetect;// = false;
bool m_BackFlip;// = false;
bool m_SkrewDetect;// = false;
int m_Orentation;// = -1;
int m_ScanCount;// = 0;
public:
afx_msg void OnBnClickedRdconsistscan();
afx_msg void OnBnClickedRdspecifyscannum();
afx_msg void OnBnClickedCkskewdetect();
virtual BOOL PreTranslateMessage(MSG* pMsg);
};