IPreferencesPage.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. // Description : Custom preference page interfaces
  9. #ifndef CRYINCLUDE_EDITOR_INCLUDE_IPREFERENCESPAGE_H
  10. #define CRYINCLUDE_EDITOR_INCLUDE_IPREFERENCESPAGE_H
  11. #pragma once
  12. #include <AzCore/RTTI/RTTI.h>
  13. //! The interface class for preferences pages.
  14. struct IPreferencesPage
  15. {
  16. AZ_RTTI(IPreferencesPage, "{DEB112AD-55AD-4407-8482-BDA095A64752}")
  17. //! Return category where this preferences page belongs.
  18. virtual const char* GetCategory() = 0;
  19. //! Title of this preferences page.
  20. virtual const char* GetTitle() = 0;
  21. //! Return the icon for this page.
  22. virtual QIcon& GetIcon() = 0;
  23. //! Called by the editor when the Apply Now button is clicked.
  24. virtual void OnApply() = 0;
  25. //! Called by the editor when the Cancel button is clicked.
  26. virtual void OnCancel() = 0;
  27. //! Called by the editor when the Cancel button is clicked, and before the cancel has taken place.
  28. //! @return true to perform Cancel operation, false to abort Cancel.
  29. virtual bool OnQueryCancel() = 0;
  30. //! Called by the editor when the preferences page is made the active page or is not longer the active page.
  31. //! @param bActive true when page become active, false when page deactivated.
  32. };
  33. #endif // CRYINCLUDE_EDITOR_INCLUDE_IPREFERENCESPAGE_H