12345678910111213141516171819202122232425262728293031323334 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
- #ifndef MACDOCKICONHANDLER_H
- #define MACDOCKICONHANDLER_H
- #include <QObject>
- #ifdef __OBJC__
- @class DockIconClickEventHandler;
- #else
- class DockIconClickEventHandler;
- #endif
- class MacDockIconHandler : public QObject
- {
- Q_OBJECT
- public:
- MacDockIconHandler(QObject* parent = nullptr);
- ~MacDockIconHandler();
- Q_SIGNALS:
- void dockIconClicked();
- private:
- DockIconClickEventHandler* m_dockIconClickEventHandler;
- };
- #endif // MACDOCKICONCLICKHANDLER_H
|