home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / beaversweeper_v101.zip / src / MyDialogBar.h < prev    next >
C/C++ Source or Header  |  2003-01-06  |  1KB  |  54 lines

  1. #if !defined(AFX_MYDIALOGBAR_H__8D261852_ABF3_438E_B787_599202F6C96C__INCLUDED_)
  2. #define AFX_MYDIALOGBAR_H__8D261852_ABF3_438E_B787_599202F6C96C__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // MyDialogBar.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMyDialogBar dialog
  12.  
  13. class CMyDialogBar : public CDialogBar
  14. {
  15. protected:
  16.   DECLARE_DYNCREATE(CMyDialogBar)
  17.  
  18.   CString caption;
  19.     
  20. // Construction
  21. public:
  22.   virtual ~CMyDialogBar();
  23.   CMyDialogBar();   // standard constructor
  24.   void SetCaption(CString _caption);
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CMyDialogBar)
  28.         // NOTE: the ClassWizard will add data members here
  29.     //}}AFX_DATA
  30.  
  31.  
  32. // Overrides
  33.     // ClassWizard generated virtual function overrides
  34.     //{{AFX_VIRTUAL(CMyDialogBar)
  35.     protected:
  36.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37.     //}}AFX_VIRTUAL
  38.  
  39.     // Implementation
  40. protected:
  41.   virtual LRESULT WindowProc( UINT message, WPARAM wParam, LPARAM lParam );
  42.   
  43.     // Generated message map functions
  44.     //{{AFX_MSG(CMyDialogBar)
  45.         // NOTE: the ClassWizard will add member functions here
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52.  
  53. #endif // !defined(AFX_MYDIALOGBAR_H__8D261852_ABF3_438E_B787_599202F6C96C__INCLUDED_)
  54.