home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 58 / pcpp58a.iso / extras / quake 3 source / Q3A_ToolSource.exe / Main / RADEditWnd.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-02  |  1.3 KB  |  53 lines

  1. #if !defined(AFX_RADEDITWND_H__DC829124_812D_11D1_B548_00AA00A410FC__INCLUDED_)
  2. #define AFX_RADEDITWND_H__DC829124_812D_11D1_B548_00AA00A410FC__INCLUDED_
  3.  
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. // RADEditWnd.h : header file
  8. //
  9.  
  10. #include "EditWnd.h"
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CRADEditWnd window
  13.  
  14. class CRADEditWnd : public CWnd
  15. {
  16. // Construction
  17. public:
  18.     CRADEditWnd();
  19.  
  20. // Attributes
  21. public:
  22.   CEdit* GetEditWnd() {return dynamic_cast<CEdit*>(&m_wndEdit); };
  23. protected:
  24.   CEditWnd m_wndEdit;
  25. // Operations
  26. public:
  27.  
  28. // Overrides
  29.     // ClassWizard generated virtual function overrides
  30.     //{{AFX_VIRTUAL(CRADEditWnd)
  31.     //}}AFX_VIRTUAL
  32.  
  33. // Implementation
  34. public:
  35.     virtual ~CRADEditWnd();
  36.  
  37.  
  38.     // Generated message map functions
  39. protected:
  40.     //{{AFX_MSG(CRADEditWnd)
  41.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  42.     afx_msg void OnSize(UINT nType, int cx, int cy);
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48.  
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  51.  
  52. #endif // !defined(AFX_RADEDITWND_H__DC829124_812D_11D1_B548_00AA00A410FC__INCLUDED_)
  53.