RightFrame.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. FinalSun/FinalAlert 2 Mission Editor
  3. Copyright (C) 1999-2024 Electronic Arts, Inc.
  4. Authored by Matthias Wagner
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see <https://www.gnu.org/licenses/>.
  15. */
  16. #if !defined(AFX_RIGHTFRAME_H__22553762_8405_11D4_9C87_EE62BC46B24A__INCLUDED_)
  17. #define AFX_RIGHTFRAME_H__22553762_8405_11D4_9C87_EE62BC46B24A__INCLUDED_
  18. #if _MSC_VER > 1000
  19. #pragma once
  20. #endif // _MSC_VER > 1000
  21. // RightFrame.h : Header-Datei
  22. //
  23. /////////////////////////////////////////////////////////////////////////////
  24. // Rahmen CRightFrame
  25. class CRightFrame : public CFrameWnd
  26. {
  27. DECLARE_DYNCREATE(CRightFrame)
  28. protected:
  29. CRightFrame(); // Dynamische Erstellung verwendet geschützten Konstruktor
  30. // Attribute
  31. public:
  32. // Operationen
  33. public:
  34. CSplitterWnd m_Splitter;
  35. // Überschreibungen
  36. // Vom Klassen-Assistenten generierte virtuelle Funktionsüberschreibungen
  37. //{{AFX_VIRTUAL(CRightFrame)
  38. public:
  39. virtual void RecalcLayout(BOOL bNotify = TRUE);
  40. protected:
  41. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  42. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  43. //}}AFX_VIRTUAL
  44. // Implementierung
  45. protected:
  46. virtual ~CRightFrame();
  47. // Generierte Nachrichtenzuordnungsfunktionen
  48. //{{AFX_MSG(CRightFrame)
  49. afx_msg void OnSize(UINT nType, int cx, int cy);
  50. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. /////////////////////////////////////////////////////////////////////////////
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ fügt unmittelbar vor der vorhergehenden Zeile zusätzliche Deklarationen ein.
  57. #endif // AFX_RIGHTFRAME_H__22553762_8405_11D4_9C87_EE62BC46B24A__INCLUDED_