]> git.lyx.org Git - lyx.git/blob - src/support/AppleSupport.m
#11756 cleanup the view menu on Mac
[lyx.git] / src / support / AppleSupport.m
1 /**
2  * \file AppleSupport.m
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Stephan Witt
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #import <Cocoa/Cocoa.h>
12 #include "AppleSupport.h"
13
14
15 void appleCleanupEditMenu() {
16
17         // Remove (disable) the "Start Dictation..." and "Emoji & Symbols" menu items
18         // from the "Edit" menu
19
20         [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"NSDisabledDictationMenuItem"];
21         [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"NSDisabledCharacterPaletteMenuItem"];
22 }
23
24
25 void appleCleanupViewMenu() {
26
27 #ifdef AVAILABLE_MAC_OS_X_VERSION_10_12_AND_LATER
28         // Remove the "Show Tab Bar" menu item from the "View" menu, if supported
29         if ([NSWindow respondsToSelector:@selector(allowsAutomaticWindowTabbing)])
30                 NSWindow.allowsAutomaticWindowTabbing = NO;
31 #endif
32
33         // Remove the "Enter Full Screen" menu item from the "View" menu
34         [[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"NSFullScreenMenuItemEverywhere"];
35 }