HMXDialog.h
上传用户:yinguanfa
上传日期:2022-02-19
资源大小:400k
文件大小:2k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. #if !defined(AFX_HMXDIALOG_H__79797642_772B_11D5_BD28_0060520365FB__INCLUDED_)
  2. #define AFX_HMXDIALOG_H__79797642_772B_11D5_BD28_0060520365FB__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // HMXDialog.h : header file
  7. //
  8. #include "dib256.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CHMXDialog dialog
  11. class CHMXDialog : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CHMXDialog(UINT uResourceID, CWnd* pParent = NULL);
  16. CHMXDialog(LPCTSTR pszResourceID, CWnd* pParent = NULL);
  17. CHMXDialog();
  18. enum {
  19. BITMAP_TILE = 0, // tile the bitmap to fill the dialog
  20. BITMAP_STRETCH, // stretch the bitmap so it fits to the dialog
  21. BITMAP_CENTER // center the bitmap inside the dialog
  22. };
  23. enum {
  24. BKGND_NONE = 0, // bkgnd default
  25. BKGND_COLOR, // bkgnd is a color
  26. BKGND_IMAGE // bkgnd is an image
  27. };
  28. // Attributes
  29. public:
  30. bool SetBitmap(const CString& sFileName, int Type = CHMXDialog::BITMAP_TILE);
  31. bool SetBitmap(UINT uResource, int Type = CHMXDialog::BITMAP_TILE);
  32. bool SetBkClr(COLORREF clr);
  33. bool GetBkClr(COLORREF& clr);
  34. // Dialog Data
  35. protected:
  36. //{{AFX_DATA(CHMXDialog)
  37. // NOTE: the ClassWizard will add data members here
  38. //}}AFX_DATA
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CHMXDialog)
  42. protected:
  43. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. protected:
  47. CDIBitmap m_bmpBkGnd;
  48. int m_nType; // see enum above
  49. COLORREF m_clrBkGnd;
  50. CBrush m_brsBkGnd;
  51. int m_nBkGnd;
  52. // Generated message map functions
  53. //{{AFX_MSG(CHMXDialog)
  54. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  55. afx_msg BOOL OnQueryNewPalette();
  56. afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
  57. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  58. //}}AFX_MSG
  59. DECLARE_MESSAGE_MAP()
  60. private:
  61. void CommonConstruct();
  62. };
  63. //{{AFX_INSERT_LOCATION}}
  64. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  65. #endif // !defined(AFX_HMXDIALOG_H__79797642_772B_11D5_BD28_0060520365FB__INCLUDED_)