Trees.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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_TREES_H__8ACDE600_72AB_11D3_99E1_95E76FDD1C05__INCLUDED_)
  17. #define AFX_TREES_H__8ACDE600_72AB_11D3_99E1_95E76FDD1C05__INCLUDED_
  18. #if _MSC_VER > 1000
  19. #pragma once
  20. #endif // _MSC_VER > 1000
  21. // Trees.h : Header-Datei
  22. //
  23. /////////////////////////////////////////////////////////////////////////////
  24. // Dialogfeld CTrees
  25. class CTrees : public CPropertyPage
  26. {
  27. DECLARE_DYNCREATE(CTrees)
  28. // Konstruktion
  29. public:
  30. void UpdateDialog();
  31. CTrees();
  32. ~CTrees();
  33. // Dialogfelddaten
  34. //{{AFX_DATA(CTrees)
  35. enum { IDD = IDD_TREES };
  36. CEdit m_Pos;
  37. CComboBox m_Type;
  38. CListBox m_TreeList;
  39. //}}AFX_DATA
  40. // Überschreibungen
  41. // Der Klassen-Assistent generiert virtuelle Funktionsüberschreibungen
  42. //{{AFX_VIRTUAL(CTrees)
  43. protected:
  44. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV-Unterstützung
  45. //}}AFX_VIRTUAL
  46. // Implementierung
  47. protected:
  48. // Generierte Nachrichtenzuordnungsfunktionen
  49. //{{AFX_MSG(CTrees)
  50. virtual BOOL OnInitDialog();
  51. afx_msg void OnSelchangeTreelist();
  52. afx_msg void OnEditchangeType();
  53. afx_msg void OnKillfocusType();
  54. afx_msg void OnKillFocus(CWnd* pNewWnd);
  55. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  56. afx_msg void OnDelete();
  57. afx_msg void OnNew();
  58. //}}AFX_MSG
  59. DECLARE_MESSAGE_MAP()
  60. };
  61. //{{AFX_INSERT_LOCATION}}
  62. // Microsoft Visual C++ fügt unmittelbar vor der vorhergehenden Zeile zusätzliche Deklarationen ein.
  63. #endif // AFX_TREES_H__8ACDE600_72AB_11D3_99E1_95E76FDD1C05__INCLUDED_