/* * 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 #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