home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / AUTODR.PAK / AUTODDLG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.6 KB  |  61 lines

  1. // autoddlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CAutoDrivDlg dialog
  15.  
  16. class CAutoDrivDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     CAutoDrivDlg(CWnd* pParent = NULL);    // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CAutoDrivDlg)
  24.     enum { IDD = IDD_AUTODRIV_DIALOG };
  25.     CString    m_szText;
  26.     int        m_x;
  27.     int        m_y;
  28.     //}}AFX_DATA
  29.  
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(CAutoDrivDlg)
  32.     protected:
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.     //}}AFX_VIRTUAL
  35.  
  36. // Implementation
  37. protected:
  38.     HICON m_hIcon;
  39.     CAutoClik m_autoClikObject;
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(CAutoDrivDlg)
  43.     virtual BOOL OnInitDialog();
  44.     afx_msg void OnPaint();
  45.     afx_msg HCURSOR OnQueryDragIcon();
  46.     afx_msg void OnClose();
  47.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  48.     afx_msg void OnAnimateXY();
  49.     afx_msg void OnAnimatePos();
  50.     afx_msg void OnSetAll();
  51.     afx_msg void OnSetPosition();
  52.     afx_msg void OnSetText();
  53.     afx_msg void OnSetX();
  54.     afx_msg void OnSetY();
  55.     afx_msg void OnRefresh();
  56.     afx_msg void OnGetAll();
  57.     afx_msg void OnGetPosition();
  58.     //}}AFX_MSG
  59.     DECLARE_MESSAGE_MAP()
  60. };
  61.