SkinTestDlg.h
上传用户:vipseo
上传日期:2010-02-15
资源大小:137k
文件大小:2k
源码类别:

组合框控件

开发平台:

Visual C++

  1. // SkinTestDlg.h : header file
  2. //
  3. #if !defined(AFX_SKINTESTDLG_H__3379ED5A_FA9B_4761_B9D8_9F545346D1F3__INCLUDED_)
  4. #define AFX_SKINTESTDLG_H__3379ED5A_FA9B_4761_B9D8_9F545346D1F3__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CSkinTestDlg dialog
  10. // CAboutDlg dialog used for App About
  11. //include header for skin win
  12. #include "SkinWinSkinWin.h"
  13. #include "SkinWinSkinButton.h"
  14. class CSkinTestDlg : public CDialog
  15. {
  16. // Construction
  17. public:
  18. BOOL SetSkin( CString file );
  19. BOOL SubClassButton( HWND hwnd );
  20. CSkinTestDlg(CWnd* pParent = NULL); // standard constructor
  21. // Dialog Data
  22. //{{AFX_DATA(CSkinTestDlg)
  23. enum { IDD = IDD_SKINTEST_DIALOG };
  24. // NOTE: the ClassWizard will add data members here
  25. //}}AFX_DATA
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CSkinTestDlg)
  28. protected:
  29. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33. HICON m_hIcon;
  34. CSkinButtonResource m_btnres; //skin button resource
  35. CSkinWin m_skinWin; //skin win
  36. BOOL m_bFirst; //first time call
  37. CObList m_wndList;
  38. // Generated message map functions
  39. //{{AFX_MSG(CSkinTestDlg)
  40. virtual BOOL OnInitDialog();
  41. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  42. afx_msg void OnPaint();
  43. afx_msg HCURSOR OnQueryDragIcon();
  44. afx_msg void OnDestroy();
  45. afx_msg void OnNeosytle();
  46. afx_msg void OnXpstyle();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_SKINTESTDLG_H__3379ED5A_FA9B_4761_B9D8_9F545346D1F3__INCLUDED_)