SpecialFlags.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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_SPECIALFLAGS_H__500DF000_7058_11D3_99E1_97DB32807805__INCLUDED_)
  17. #define AFX_SPECIALFLAGS_H__500DF000_7058_11D3_99E1_97DB32807805__INCLUDED_
  18. #if _MSC_VER > 1000
  19. #pragma once
  20. #endif // _MSC_VER > 1000
  21. // SpecialFlags.h : Header-Datei
  22. //
  23. /////////////////////////////////////////////////////////////////////////////
  24. // Dialogfeld CSpecialFlags
  25. class CSpecialFlags : public CDialog
  26. {
  27. // Konstruktion
  28. public:
  29. void UpdateDialog();
  30. CSpecialFlags(CWnd* pParent = NULL); // Standardkonstruktor
  31. // Dialogfelddaten
  32. //{{AFX_DATA(CSpecialFlags)
  33. enum { IDD = IDD_SPECIALFLAGS };
  34. CMyComboBox m_Visceroids;
  35. CMyComboBox m_TiberiumSpreads;
  36. CMyComboBox m_TiberiumGrows;
  37. CMyComboBox m_TiberiumExplosive;
  38. CMyComboBox m_Meteorites;
  39. CMyComboBox m_MCVDeploy;
  40. CMyComboBox m_IonStorms;
  41. CMyComboBox m_InitialVeteran;
  42. CMyComboBox m_Inert;
  43. CMyComboBox m_HarvesterImmune;
  44. CMyComboBox m_FogOfWar;
  45. CMyComboBox m_FixedAlliance;
  46. CMyComboBox m_DestroyableBridges;
  47. //}}AFX_DATA
  48. // Überschreibungen
  49. // Vom Klassen-Assistenten generierte virtuelle Funktionsüberschreibungen
  50. //{{AFX_VIRTUAL(CSpecialFlags)
  51. protected:
  52. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV-Unterstützung
  53. //}}AFX_VIRTUAL
  54. // Implementierung
  55. protected:
  56. // Generierte Nachrichtenzuordnungsfunktionen
  57. //{{AFX_MSG(CSpecialFlags)
  58. afx_msg void OnEditchangeTiberiumgrows();
  59. afx_msg void OnEditchangeTiberiumspreads();
  60. afx_msg void OnEditchangeTiberiumexplosive();
  61. afx_msg void OnEditchangeDestroyablebridges();
  62. afx_msg void OnEditchangeMcvdeploy();
  63. afx_msg void OnEditchangeInitialveteran();
  64. afx_msg void OnEditchangeFixedalliance();
  65. afx_msg void OnEditchangeHarvesterimmune();
  66. afx_msg void OnEditchangeFogofwar();
  67. afx_msg void OnEditchangeInert();
  68. afx_msg void OnEditchangeIonstorms();
  69. afx_msg void OnEditchangeMeteorites();
  70. afx_msg void OnEditchangeVisceroids();
  71. //}}AFX_MSG
  72. DECLARE_MESSAGE_MAP()
  73. };
  74. //{{AFX_INSERT_LOCATION}}
  75. // Microsoft Visual C++ fügt unmittelbar vor der vorhergehenden Zeile zusätzliche Deklarationen ein.
  76. #endif // AFX_SPECIALFLAGS_H__500DF000_7058_11D3_99E1_97DB32807805__INCLUDED_