mirror of https://github.com/Nheko-Reborn/nheko
parent
da96558bb9
commit
dadaa10b93
@ -1,15 +0,0 @@ |
||||
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
||||
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
||||
//
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
#pragma once |
||||
|
||||
#include <QMenuBar> |
||||
|
||||
class MacHelper |
||||
{ |
||||
public: |
||||
static void showEmojiWindow(); |
||||
static void initializeMenus(); |
||||
}; |
@ -1,26 +0,0 @@ |
||||
#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"]; |
||||
} |
||||
} |
Loading…
Reference in new issue