home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / TIPS.ZIP / prj / ToolTips / ToolTipsDlg.h < prev   
Encoding:
C/C++ Source or Header  |  1998-10-14  |  1.3 KB  |  51 lines

  1. // ToolTipsDlg.h : header file
  2. //
  3.  
  4. #if !defined(AFX_TOOLTIPSDLG_H__2DCF84ED_633D_11D2_BBBE_00A0C9A341EC__INCLUDED_)
  5. #define AFX_TOOLTIPSDLG_H__2DCF84ED_633D_11D2_BBBE_00A0C9A341EC__INCLUDED_
  6.  
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10.  
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CToolTipsDlg dialog
  13.  
  14. class CToolTipsDlg : public CToolTipDialog
  15. {
  16. // Construction
  17. public:
  18.     CToolTipsDlg(CWnd* pParent = NULL);    // standard constructor
  19.  
  20. // Dialog Data
  21.     //{{AFX_DATA(CToolTipsDlg)
  22.     enum { IDD = IDD_TOOLTIPS_DIALOG };
  23.     BOOL    m_bEnableToolTips;
  24.     //}}AFX_DATA
  25.  
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CToolTipsDlg)
  28.     protected:
  29.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30.     //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33. protected:
  34.     HICON m_hIcon;
  35.  
  36.     // Generated message map functions
  37.     //{{AFX_MSG(CToolTipsDlg)
  38.     virtual BOOL OnInitDialog();
  39.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  40.     afx_msg void OnPaint();
  41.     afx_msg HCURSOR OnQueryDragIcon();
  42.     afx_msg void OnCheckShowtooltips();
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49.  
  50. #endif // !defined(AFX_TOOLTIPSDLG_H__2DCF84ED_633D_11D2_BBBE_00A0C9A341EC__INCLUDED_)
  51.