home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 21 / IOPROG_21.ISO / SOFT / DEMOT.ZIP / Src / Include / MDIFrameWndEx.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-23  |  1.8 KB  |  68 lines

  1. // MDIFrameWndEx.h : header file
  2. // Copyright ⌐1998 - Kirk Stowell
  3. // All Rights Reserved.
  4. //
  5. // Email: kstowel@sprynet.com
  6. // URL:   www.geocities.com/SiliconValley/Haven/8230
  7. //
  8. // You are free to use, modify and distribute this source, as long as
  9. // it is not sold for profit, and this HEADER stays intact. This source is
  10. // supplied "AS-IS", and without WARRANTY OF ANY KIND. The user
  11. // agrees to hold the author(s) blameless from any or all problems that
  12. // may arise from the use or distribution of this code.
  13. //
  14. /////////////////////////////////////////////////////////////////////////////
  15.  
  16. #if !defined(MDIFRAMEWNDEX_H_INCLUDED)
  17. #define MDIFRAMEWNDEX_H_INCLUDED
  18.  
  19. #if _MSC_VER >= 1000
  20. #pragma once
  21. #endif // _MSC_VER >= 1000
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CMDIFrameWndEx class
  25.  
  26. class CLASS_EXPORT CMDIFrameWndEx : public CMDIFrameWnd
  27. {
  28.     DECLARE_DYNAMIC(CMDIFrameWndEx)
  29.  
  30. // Construction
  31. public:
  32.     CMDIFrameWndEx();
  33.  
  34. // Attributes
  35. public:
  36.  
  37. // Operations
  38. public:
  39.     void DockControlBarLeftOf(CControlBar* Bar, CControlBar* LeftOf);
  40.  
  41. // Overrides
  42.     // ClassWizard generated virtual function overrides
  43.     //{{AFX_VIRTUAL(CMDIFrameWndEx)
  44.     public:
  45.     virtual void EnableDocking(DWORD dwDockStyle);
  46.     //}}AFX_VIRTUAL
  47.  
  48. // Implementation
  49. public:
  50.     virtual ~CMDIFrameWndEx();
  51.  
  52. // Generated message map functions
  53. protected:
  54.     //{{AFX_MSG(CMDIFrameWndEx)
  55.         // NOTE - the ClassWizard will add and remove member functions here.
  56.         //    DO NOT EDIT what you see in these blocks of generated code !
  57.     //}}AFX_MSG
  58.     DECLARE_MESSAGE_MAP()
  59. };
  60.  
  61. /////////////////////////////////////////////////////////////////////////////
  62.  
  63. //{{AFX_INSERT_LOCATION}}
  64. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  65.  
  66. #endif // !defined(MDIFRAMEWNDEX_H_INCLUDED)
  67.  
  68.