MacDockIconHandler.h 691 B

12345678910111213141516171819202122232425262728293031323334
  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. #ifndef MACDOCKICONHANDLER_H
  9. #define MACDOCKICONHANDLER_H
  10. #include <QObject>
  11. #ifdef __OBJC__
  12. @class DockIconClickEventHandler;
  13. #else
  14. class DockIconClickEventHandler;
  15. #endif
  16. class MacDockIconHandler : public QObject
  17. {
  18. Q_OBJECT
  19. public:
  20. MacDockIconHandler(QObject* parent = nullptr);
  21. ~MacDockIconHandler();
  22. Q_SIGNALS:
  23. void dockIconClicked();
  24. private:
  25. DockIconClickEventHandler* m_dockIconClickEventHandler;
  26. };
  27. #endif // MACDOCKICONCLICKHANDLER_H