Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
2.4 KiB

  1. /**********************************************************************/
  2. /** Microsoft Windows/NT **/
  3. /** Copyright(c) Microsoft Corporation, 1997 - 1999 **/
  4. /**********************************************************************/
  5. /*
  6. pushtrib.h
  7. confirm push trigger dialog
  8. FILE HISTORY:
  9. */
  10. #if !defined(AFX_PUSHTRIG_H__815C103D_4D77_11D1_B9AF_00C04FBF914A__INCLUDED_)
  11. #define AFX_PUSHTRIG_H__815C103D_4D77_11D1_B9AF_00C04FBF914A__INCLUDED_
  12. #if _MSC_VER >= 1000
  13. #pragma once
  14. #endif // _MSC_VER >= 1000
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CPushTrig dialog
  17. #ifndef _DIALOG_H
  18. #include "dialog.h"
  19. #endif
  20. class CPushTrig : public CBaseDialog
  21. {
  22. // Construction
  23. public:
  24. CPushTrig(CWnd* pParent = NULL); // standard constructor
  25. // Dialog Data
  26. //{{AFX_DATA(CPushTrig)
  27. enum { IDD = IDD_SEND_PUSH_TRIGGER };
  28. CButton m_buttonThisPartner;
  29. //}}AFX_DATA
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CPushTrig)
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. // Generated message map functions
  39. //{{AFX_MSG(CPushTrig)
  40. virtual BOOL OnInitDialog();
  41. virtual void OnOK();
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. BOOL m_fPropagate;
  45. public:
  46. BOOL GetPropagate()
  47. {
  48. return m_fPropagate;
  49. }
  50. public:
  51. virtual DWORD * GetHelpMap() { return WinsGetHelpMap(CPushTrig::IDD);};
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CPullTrig dialog
  55. class CPullTrig : public CBaseDialog
  56. {
  57. // Construction
  58. public:
  59. CPullTrig(CWnd* pParent = NULL); // standard constructor
  60. // Dialog Data
  61. //{{AFX_DATA(CPullTrig)
  62. enum { IDD = IDD_PULL_TRIGGER };
  63. //}}AFX_DATA
  64. // Overrides
  65. // ClassWizard generated virtual function overrides
  66. //{{AFX_VIRTUAL(CPullTrig)
  67. protected:
  68. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  69. //}}AFX_VIRTUAL
  70. // Implementation
  71. protected:
  72. // Generated message map functions
  73. //{{AFX_MSG(CPullTrig)
  74. virtual BOOL OnInitDialog();
  75. //}}AFX_MSG
  76. DECLARE_MESSAGE_MAP()
  77. public:
  78. virtual DWORD * GetHelpMap() { return WinsGetHelpMap(CPullTrig::IDD);};
  79. };
  80. //{{AFX_INSERT_LOCATION}}
  81. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  82. #endif // !defined(AFX_PUSHTRIG_H__815C103D_4D77_11D1_B9AF_00C04FBF914A__INCLUDED_)