PROPDLG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // PropDlg.h : Declaration of the CPropDlg
  2. //
  3. // This is a part of the Active Template Library.
  4. // Copyright (C) 1996-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Active Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Active Template Library product.
  12. #ifndef __PROPDLG_H_
  13. #define __PROPDLG_H_
  14. #include "resource.h"       // main symbols
  15. #include "commctrl.h"
  16. #include "firewnd.h"
  17. class CFireWnd;
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CPropDlg
  20. class CPropDlg :
  21. public CDialogImpl<CPropDlg>
  22. {
  23. public:
  24. CPropDlg(CFireWnd* p);
  25. ~CPropDlg();
  26. enum { IDD = IDD_PROPDLG };
  27. BEGIN_MSG_MAP(CPropDlg)
  28. MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
  29. COMMAND_HANDLER(IDC_EDIT1, EN_CHANGE, OnPropertyChanged)
  30. COMMAND_ID_HANDLER(IDOK, OnOK)
  31. COMMAND_ID_HANDLER(IDCANCEL, OnCancel)
  32. COMMAND_ID_HANDLER(IDC_APPLY, OnApply)
  33. NOTIFY_CODE_HANDLER(TVN_SELCHANGED, OnSelChanged)
  34. NOTIFY_CODE_HANDLER(TVN_SELCHANGING, OnSelChanging)
  35. END_MSG_MAP()
  36. // Message/Notification handlers
  37. LRESULT OnSelChanged(int idCtrl, LPNMHDR pnmh, BOOL& bHandled);
  38. LRESULT OnSelChanging(int idCtrl, LPNMHDR pnmh, BOOL& bHandled);
  39. LRESULT OnPropertyChanged(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
  40. LRESULT OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
  41. LRESULT OnOK(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
  42. LRESULT OnCancel(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
  43. LRESULT OnApply(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
  44. void Apply();
  45. HWND m_hTreeViewCtl;
  46. HWND m_hSettingCtl;
  47. HWND m_hSetting;
  48. long m_nDecay;
  49. long m_nFlammability;
  50. long m_nMaxHeat;
  51. long m_nSpreadRate;
  52. long m_nSize;
  53. long m_nSmoothness;
  54. long m_nDistribution;
  55. long m_nChaos;
  56. int m_nCurSel;
  57. CFireWnd* m_Display;
  58. };
  59. #endif //__PROPDLG_H_