twain2/hugaotwainds/BasicSetting.h

44 lines
2.0 KiB
C++
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
//CStringArray arr_PixType=
// BasicSetting 对话框
#include "AboutHuaGoDlg.h"
class BasicSetting : public CDialog
{
DECLARE_DYNAMIC(BasicSetting)
public:
BasicSetting(CWnd* pParent = NULL);
// 标准构造函数
virtual ~BasicSetting();
CComboBox cmBoxColorMode;
CComboBox cmBoxSS;
CComboBox cmBoxResultion;
CComboBox cmBoxDuplex;
//CWnd* m_pParent;
// 对话框数据
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_DIALOG_PAGEBASIC};
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
virtual BOOL OnInitDialog();
void OnInitColorMode(int selectIndex);
void OnInitSS(int selectIndex);
void OnInitReslution(int selectIndex);
void OnInitDuplex(int selectIndex);
afx_msg void OnCbnSelchangeCmbcolortype();
CWnd * m_pBrightWin;
CWnd* m_pImagePrcWin;
CWnd* m_pFeedWin;
afx_msg void OnCbnSelchangeCmbduplex();
afx_msg void OnCbnSelchangeCmbss();
afx_msg void OnCbnSelchangeCmbreslution();
afx_msg void OnBnClickedBtnabout();
};