mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 18:00:46 -04:00
18 lines
348 B
Plaintext
18 lines
348 B
Plaintext
|
|
#include <QtGlobal>
|
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
|
#undef __OBJC_BOOL_IS_BOOL
|
|
#endif
|
|
|
|
#import <AppKit/AppKit.h>
|
|
#include "trayhandler.h"
|
|
|
|
void OSXShowDockIcon()
|
|
{
|
|
[NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
|
|
}
|
|
void OSXHideDockIcon()
|
|
{
|
|
[NSApp setActivationPolicy:NSApplicationActivationPolicyAccessory];
|
|
}
|