51ed9ec971
Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files.
51 lines
1 KiB
Objective-C
51 lines
1 KiB
Objective-C
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef MACDOCKICONHANDLER_H
|
|
#define MACDOCKICONHANDLER_H
|
|
|
|
#include <QMainWindow>
|
|
#include <QObject>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QIcon;
|
|
class QMenu;
|
|
class QWidget;
|
|
QT_END_NAMESPACE
|
|
|
|
#ifdef __OBJC__
|
|
@class DockIconClickEventHandler;
|
|
#else
|
|
class DockIconClickEventHandler;
|
|
#endif
|
|
|
|
/** Macintosh-specific dock icon handler.
|
|
*/
|
|
class MacDockIconHandler : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
~MacDockIconHandler();
|
|
|
|
QMenu *dockMenu();
|
|
void setIcon(const QIcon &icon);
|
|
void setMainWindow(QMainWindow *window);
|
|
static MacDockIconHandler *instance();
|
|
|
|
void handleDockIconClickEvent();
|
|
|
|
signals:
|
|
void dockIconClicked();
|
|
|
|
private:
|
|
MacDockIconHandler();
|
|
|
|
DockIconClickEventHandler *m_dockIconClickEventHandler;
|
|
QWidget *m_dummyWidget;
|
|
QMenu *m_dockMenu;
|
|
QMainWindow *mainWindow;
|
|
};
|
|
|
|
#endif // MACDOCKICONCLICKHANDLER_H
|