All.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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_ALL1_H__B5D522E4_69CE_11D3_99E1_C138647F2A00__INCLUDED_)
  17. #define AFX_ALL1_H__B5D522E4_69CE_11D3_99E1_C138647F2A00__INCLUDED_
  18. #if _MSC_VER > 1000
  19. #pragma once
  20. #endif // _MSC_VER > 1000
  21. // All1.h : Header-Datei
  22. //
  23. /////////////////////////////////////////////////////////////////////////////
  24. // Dialogfeld CAll
  25. class CAll : public CDialog
  26. {
  27. // Konstruktion
  28. public:
  29. void UpdateDialog();
  30. CAll(CWnd* pParent = NULL); // Standardkonstruktor
  31. // Dialogfelddaten
  32. //{{AFX_DATA(CAll)
  33. enum { IDD = IDD_ALL };
  34. CEdit m_Value;
  35. CListBox m_Keys;
  36. CButton m_IniSection;
  37. CButton m_DeleteSection;
  38. CButton m_DeleteKey;
  39. CButton m_AddSection;
  40. CButton m_AddKey;
  41. CComboBox m_Sections;
  42. //}}AFX_DATA
  43. // Überschreibungen
  44. // Vom Klassen-Assistenten generierte virtuelle Funktionsüberschreibungen
  45. //{{AFX_VIRTUAL(CAll)
  46. protected:
  47. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV-Unterstützung
  48. //}}AFX_VIRTUAL
  49. // Implementierung
  50. protected:
  51. // Generierte Nachrichtenzuordnungsfunktionen
  52. //{{AFX_MSG(CAll)
  53. afx_msg void OnSelchangeSections();
  54. afx_msg void OnChangeValue();
  55. afx_msg void OnSelchangeKeys();
  56. afx_msg void OnUpdateValue();
  57. afx_msg void OnAddsection();
  58. afx_msg void OnDeletesection();
  59. afx_msg void OnDeletekey();
  60. afx_msg void OnAddkey();
  61. afx_msg void OnInisection();
  62. //}}AFX_MSG
  63. DECLARE_MESSAGE_MAP()
  64. };
  65. //{{AFX_INSERT_LOCATION}}
  66. // Microsoft Visual C++ fügt unmittelbar vor der vorhergehenden Zeile zusätzliche Deklarationen ein.
  67. #endif // AFX_ALL1_H__B5D522E4_69CE_11D3_99E1_C138647F2A00__INCLUDED_