1
0
mirror of synced 2024-12-02 11:17:19 +01:00
ImHex/lib/libimhex/source/helpers/utils_macos.m

29 lines
894 B
Mathematica
Raw Normal View History

#if defined(OS_MACOS)
#include <CoreFoundation/CFBundle.h>
#include <ApplicationServices/ApplicationServices.h>
2022-06-30 15:28:51 +02:00
#include <Foundation/NSUserDefaults.h>
2022-06-30 15:20:13 +02:00
#include <Foundation/Foundation.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
void openWebpageMacos(const char *url) {
CFURLRef urlRef = CFURLCreateWithBytes(NULL, (uint8_t*)(url), strlen(url), kCFStringEncodingASCII, NULL);
LSOpenCFURLRef(urlRef, NULL);
CFRelease(urlRef);
}
2023-01-04 14:55:58 +01:00
bool isMacosSystemDarkModeEnabled(void) {
NSString * appleInterfaceStyle = [[NSUserDefaults standardUserDefaults] stringForKey:@"AppleInterfaceStyle"];
if (appleInterfaceStyle && [appleInterfaceStyle length] > 0) {
return [[appleInterfaceStyle lowercaseString] containsString:@"dark"];
} else {
return false;
}
}
2023-01-04 14:55:58 +01:00
#endif