mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
1b7816f7ca
fixes #79
26 lines
726 B
Text
26 lines
726 B
Text
#include "MacHelper.h"
|
|
|
|
#include <Cocoa/Cocoa.h>
|
|
#include <Foundation/Foundation.h>
|
|
#include <Foundation/NSString.h>
|
|
#include <QCoreApplication>
|
|
|
|
void
|
|
MacHelper::showEmojiWindow()
|
|
{
|
|
NSApplication *theNSApplication = [NSApplication sharedApplication];
|
|
[theNSApplication orderFrontCharacterPalette:nil];
|
|
}
|
|
|
|
void
|
|
MacHelper::initializeMenus()
|
|
{
|
|
NSApplication *theNSApplication = [NSApplication sharedApplication];
|
|
|
|
NSArray<NSMenuItem *> *menus = [theNSApplication mainMenu].itemArray;
|
|
NSUInteger size = menus.count;
|
|
for (NSUInteger i = 0; i < size; i++) {
|
|
NSMenuItem *item = [menus objectAtIndex:i];
|
|
[item setTitle:@"Edit"];
|
|
}
|
|
}
|