BRIGHTNESS.H
上传用户:alisonmail
上传日期:2013-02-28
资源大小:500k
文件大小:1k
源码类别:

图片显示

开发平台:

Visual C++

  1. #ifndef __BRIGHTNESS_H__
  2. #define __BRIGHTNESS_H__
  3. // Brightness.h : header file
  4. //
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CBrightness dialog
  7. class CBrightness : public CDialog
  8. {
  9. // Construction
  10. public:
  11. CBrightness(CWnd* pParent = NULL);   // standard constructor
  12. int m_nBrightness;
  13. void UpdateBrightness( void );
  14. char m_szTitle[120], m_szLabel[120];
  15. // Dialog Data
  16. //{{AFX_DATA(CBrightness)
  17. enum { IDD = IDD_BRIGHTNESS };
  18. CScrollBar m_BrightnessScroll;
  19. //}}AFX_DATA
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CBrightness)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. // Generated message map functions
  29. //{{AFX_MSG(CBrightness)
  30. virtual BOOL OnInitDialog();
  31. virtual void OnOK();
  32. afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. //{{AFX_INSERT_LOCATION}}
  37. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  38. #endif // __BRIGHTNESS_H__