bitcoin/src/qt/macdockiconhandler.h

28 lines
596 B
C
Raw Normal View History

// Copyright (c) 2011-2018 The Bitcoin Core developers
2014-12-13 01:09:33 -03:00
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-11-03 12:16:40 -03:00
#ifndef BITCOIN_QT_MACDOCKICONHANDLER_H
#define BITCOIN_QT_MACDOCKICONHANDLER_H
#include <QObject>
/** macOS-specific Dock icon handler.
2011-11-13 09:19:52 -03:00
*/
class MacDockIconHandler : public QObject
{
Q_OBJECT
public:
static MacDockIconHandler *instance();
static void cleanup();
Q_SIGNALS:
void dockIconClicked();
private:
MacDockIconHandler();
};
2014-11-03 12:16:40 -03:00
#endif // BITCOIN_QT_MACDOCKICONHANDLER_H