MoreParmsDialog.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. ** Command & Conquer Generals Zero Hour(tm)
  3. ** Copyright 2025 Electronic Arts Inc.
  4. **
  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. **
  10. ** This program is distributed in the hope that it will be useful,
  11. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ** GNU General Public License for more details.
  14. **
  15. ** You should have received a copy of the GNU General Public License
  16. ** along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. // FILE: MoreParmsDialog.h
  19. /*---------------------------------------------------------------------------*/
  20. /* EA Pacific */
  21. /* Confidential Information */
  22. /* Copyright (C) 2001 - All Rights Reserved */
  23. /* DO NOT DISTRIBUTE */
  24. /*---------------------------------------------------------------------------*/
  25. /* Project: RTS3 */
  26. /* File name: MoreParmsDialog.h */
  27. /* Created: John K. McDonald, Jr., 3/23/2002 */
  28. /* Desc: // @todo */
  29. /* Revision History: */
  30. /* 3/23/2002 : Initial creation */
  31. /*---------------------------------------------------------------------------*/
  32. #pragma once
  33. #ifndef _H_MOREPARMSDIALOG_
  34. #define _H_MOREPARMSDIALOG_
  35. // INCLUDES ///////////////////////////////////////////////////////////////////
  36. #include "resource.h"
  37. #include "Lib/BaseType.h"
  38. // DEFINES ////////////////////////////////////////////////////////////////////
  39. // TYPE DEFINES ///////////////////////////////////////////////////////////////
  40. // FORWARD DECLARATIONS ///////////////////////////////////////////////////////
  41. class MoreParmsDialog : public CDialog
  42. {
  43. public:
  44. enum { IDD = IDD_PSEd_EditMoreParms };
  45. MoreParmsDialog(UINT nIDTemplate = MoreParmsDialog::IDD, CWnd* pParentWnd = NULL);
  46. virtual ~MoreParmsDialog();
  47. void InitPanel( void );
  48. // if true, updates the UI from the Particle System.
  49. // if false, updates the Particle System from the UI
  50. void performUpdate( IN Bool toUI );
  51. protected:
  52. afx_msg void OnParticleSystemEdit();
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. #endif /* _H_MOREPARMSDIALOG_ */