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

ListView/ListBox

开发平台:

Visual C++

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