TileSetBrowserFrame.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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_TILESETBROWSERFRAME_H__1FD3DBE1_7D2F_11D4_9C87_444553540000__INCLUDED_)
  17. #define AFX_TILESETBROWSERFRAME_H__1FD3DBE1_7D2F_11D4_9C87_444553540000__INCLUDED_
  18. #if _MSC_VER > 1000
  19. #pragma once
  20. #endif // _MSC_VER > 1000
  21. // TileSetBrowserFrame.h : Header-Datei
  22. //
  23. #include "TerrainDlg.h"
  24. #include "TileSetBrowserView.h" // Hinzugefügt von der Klassenansicht
  25. /////////////////////////////////////////////////////////////////////////////
  26. // Rahmen CTileSetBrowserFrame
  27. class CTileSetBrowserFrame : public CFrameWnd
  28. {
  29. DECLARE_DYNCREATE(CTileSetBrowserFrame)
  30. public:
  31. CTileSetBrowserFrame(); // Dynamische Erstellung verwendet geschützten Konstruktor
  32. // Attribute
  33. public:
  34. // Operationen
  35. public:
  36. CTerrainDlg m_bar;
  37. // Überschreibungen
  38. // Vom Klassen-Assistenten generierte virtuelle Funktionsüberschreibungen
  39. //{{AFX_VIRTUAL(CTileSetBrowserFrame)
  40. public:
  41. virtual void RecalcLayout(BOOL bNotify = TRUE);
  42. protected:
  43. virtual void PostNcDestroy();
  44. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  45. //}}AFX_VIRTUAL
  46. // Implementierung
  47. public:
  48. CTileSetBrowserView m_view;
  49. virtual ~CTileSetBrowserFrame();
  50. // Generierte Nachrichtenzuordnungsfunktionen
  51. //{{AFX_MSG(CTileSetBrowserFrame)
  52. afx_msg void OnSize(UINT nType, int cx, int cy);
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. /////////////////////////////////////////////////////////////////////////////
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Visual C++ fügt unmittelbar vor der vorhergehenden Zeile zusätzliche Deklarationen ein.
  59. #endif // AFX_TILESETBROWSERFRAME_H__1FD3DBE1_7D2F_11D4_9C87_444553540000__INCLUDED_