MyComboBox.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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_MYCOMBOBOX_H__6B1D6F02_A9A7_11D3_B63B_B4DF98412640__INCLUDED_)
  17. #define AFX_MYCOMBOBOX_H__6B1D6F02_A9A7_11D3_B63B_B4DF98412640__INCLUDED_
  18. #if _MSC_VER > 1000
  19. #pragma once
  20. #endif // _MSC_VER > 1000
  21. // MyComboBox.h : Header-Datei
  22. //
  23. /////////////////////////////////////////////////////////////////////////////
  24. // Fenster CMyComboBox
  25. class CMyComboBox : public CComboBox
  26. {
  27. // Konstruktion
  28. public:
  29. CMyComboBox();
  30. // Attribute
  31. public:
  32. // Operationen
  33. public:
  34. // Überschreibungen
  35. // Vom Klassen-Assistenten generierte virtuelle Funktionsüberschreibungen
  36. //{{AFX_VIRTUAL(CMyComboBox)
  37. //}}AFX_VIRTUAL
  38. // Implementierung
  39. public:
  40. virtual ~CMyComboBox();
  41. // Generierte Nachrichtenzuordnungsfunktionen
  42. protected:
  43. //{{AFX_MSG(CMyComboBox)
  44. afx_msg void OnSelchange();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ fügt unmittelbar vor der vorhergehenden Zeile zusätzliche Deklarationen ein.
  51. #endif // AFX_MYCOMBOBOX_H__6B1D6F02_A9A7_11D3_B63B_B4DF98412640__INCLUDED_