- systemPreferences
- 事件
- Event: 'accent-color-changed' Windows
- Event: 'color-changed' Windows
- Event: 'inverted-color-scheme-changed' Windows
- Event: 'appearance-changed' macOS
- 方法
- systemPreferences.isDarkMode() macOS
- systemPreferences.isSwipeTrackingFromScrollEventsEnabled() macOS
- systemPreferences.postNotification(event, userInfo) macOS
- systemPreferences.postLocalNotification(event, userInfo) macOS
- systemPreferences.postWorkspaceNotification(event, userInfo) macOS
- systemPreferences.subscribeNotification(event, callback) macOS
- systemPreferences.subscribeLocalNotification(event, callback) macOS
- systemPreferences.subscribeWorkspaceNotification(event, callback) macOS
- systemPreferences.unsubscribeNotification(id) macOS
- systemPreferences.unsubscribeLocalNotification(id) macOS
- systemPreferences.unsubscribeWorkspaceNotification(id) macOS
- systemPreferences.registerDefaults(defaults) macOS
- systemPreferences.getUserDefault(key, type) macOS
- systemPreferences.setUserDefault(key, type, value) macOS
- systemPreferences.removeUserDefault(key) macOS
- systemPreferences.isAeroGlassEnabled() Windows
- systemPreferences.getAccentColor() Windows
- systemPreferences.getColor(color) Windows
- systemPreferences.isInvertedColorScheme() Windows
- systemPreferences.getEffectiveAppearance() macOS
- systemPreferences.getAppLevelAppearance() macOS
- systemPreferences.setAppLevelAppearance(appearance) macOS
- systemPreferences.isTrustedAccessibilityClient(prompt) macOS
- systemPreferences.getMediaAccessStatus(mediaType) macOS
- systemPreferences.askForMediaAccess(mediaType) macOS
- 事件
systemPreferences
获取system preferences.
进程:主进程
const { systemPreferences } = require('electron')console.log(systemPreferences.isDarkMode())
事件
systemPreferences 对象触发以下事件:
Event: 'accent-color-changed' Windows
返回:
eventEventnewColorString - 用户指定的新 RGBA 颜色作为系统偏好颜色.
Event: 'color-changed' Windows
返回:
eventEvent
Event: 'inverted-color-scheme-changed' Windows
返回:
eventEventinvertedColorSchemeBoolean - 如果正在使用诸如高对比度主题的色彩方案,则为true, 否则为false.
Event: 'appearance-changed' macOS
返回:
newAppearanceString - Can bedarkorlight
NOTE: This event is only emitted after you have calledstartAppLevelAppearanceTrackingOS
方法
systemPreferences.isDarkMode() macOS
返回Boolean,表示系统是否处于Dark模式
systemPreferences.isSwipeTrackingFromScrollEventsEnabled() macOS
返回值 Boolean - 是否在页面设置之间进行滑动。
systemPreferences.postNotification(event, userInfo) macOS
eventStringuserInfoObject
发送event作为macOS的原生通知。userInfo是一个Object,它包含随通知一起发送的用户信息字典。
systemPreferences.postLocalNotification(event, userInfo) macOS
eventStringuserInfoObject
发送event作为macOS的原生通知。userInfo是一个Object,它包含随通知一起发送的用户信息字典。
systemPreferences.postWorkspaceNotification(event, userInfo) macOS
eventStringuserInfoObject
发送event作为macOS的原生通知。userInfo是一个Object,它包含随通知一起发送的用户信息字典。
systemPreferences.subscribeNotification(event, callback) macOS
eventStringcallbackFunction - 回调函数eventStringuserInfoObject
ReturnsNumber- The ID of this subscription
订阅macOS的原生通知,当通信的 event</ 0>发生时,将调用 <code>callback(event, userInfo) 。 userInfo是一个Object,它包含随通知一起发送的用户信息字典。
返回订阅的 id, 可用于取消该订阅的 event.
在这个API下订阅NSDistributedNotificationCenter, event 的示例值为:
AppleInterfaceThemeChangedNotificationAppleAquaColorVariantChangedAppleColorPreferencesChangedNotificationAppleShowScrollBarsSettingChanged
systemPreferences.subscribeLocalNotification(event, callback) macOS
eventStringcallbackFunctioneventStringuserInfoObject
ReturnsNumber- The ID of this subscription
与subscribeNotification相同,但使用NSNotificationCenter作为本地默认值。 这对于诸如NSUserDefaultsDidChangeNotification的事件是必需的.
systemPreferences.subscribeWorkspaceNotification(event, callback) macOS
eventStringcallbackFunction - 回调函数eventStringuserInfoObject
Same assubscribeNotification, but usesNSWorkspace.sharedWorkspace.notificationCenter. This is necessary for events such asNSWorkspaceDidActivateApplicationNotification.
systemPreferences.unsubscribeNotification(id) macOS
idInteger
使用id删除订阅。
systemPreferences.unsubscribeLocalNotification(id) macOS
idInteger
与unsubscribeNotification相同,但将订户从NSNotificationCenter中删除。
systemPreferences.unsubscribeWorkspaceNotification(id) macOS
idInteger
Same asunsubscribeNotification, but removes the subscriber fromNSWorkspace.sharedWorkspace.notificationCenter.
systemPreferences.registerDefaults(defaults) macOS
defaultsObject - 用户默认选项集 (key: value)
在应用的NSUserDefaults配置项中添加其它默认设置。
systemPreferences.getUserDefault(key, type) macOS
keyStringtypeString - 可以为string,boolean,integer,float,double,url,array或dictionary.
返回any-NSUserDefaults中key的值.
常用的 key 和 type 的类型为:
AppleInterfaceStyle:stringAppleAquaColorVariant:integerAppleHighlightColor:stringAppleShowScrollBars:stringNSNavRecentPlaces:arrayNSPreferredWebServices:dictionaryNSUserDictionaryReplacementItems:array
systemPreferences.setUserDefault(key, type, value) macOS
keyStringtypeString - SeegetUserDefault.valueString
设置NSUserDefaults中key的值.
请注意,type应与value的实际类型匹配。 如果不存在,则抛出异常。
常用的 key 和 type 的类型为:
ApplePressAndHoldEnabled:boolean
systemPreferences.removeUserDefault(key) macOS
keyString
删除NSUserDefaults中的key. 这可以用来恢复默认值或之前用setUserDefault设置的key的全局值。
systemPreferences.isAeroGlassEnabled() Windows
返回 Boolean - true 如果启用了 DWM composition (Aero Glass), 否则为 false.
使用它来确定是否应创建透明窗口的示例 (当禁用 DWM 组合时, 透明窗口无法正常工作):
const { BrowserWindow, systemPreferences } = require('electron')let browserOptions = { width: 1000, height: 800 }// Make the window transparent only if the platform supports it.if (process.platform !== 'win32' || systemPreferences.isAeroGlassEnabled()) {browserOptions.transparent = truebrowserOptions.frame = false}// Create the window.let win = new BrowserWindow(browserOptions)// Navigate.if (browserOptions.transparent) {win.loadURL(`file://${__dirname}/index.html`)} else {// No transparency, so we load a fallback that uses basic styles.win.loadURL(`file://${__dirname}/fallback.html`)}
systemPreferences.getAccentColor() Windows
返回 String - 用户当前系统偏好颜色,RGBA 十六进制形式.
const color = systemPreferences.getAccentColor() // `"aabbccdd"`const red = color.substr(0, 2) // "aa"const green = color.substr(2, 2) // "bb"const blue = color.substr(4, 2) // "cc"const alpha = color.substr(6, 2) // "dd"
systemPreferences.getColor(color) Windows
colorString - 下列值之一:3d-dark-shadow- 三维显示元素的暗阴影。3d-face- 面向三维显示元素和对话框背景的颜色。3d-highlight- 三维显示元素的高亮色.3d-light- 三维显示元素的亮色.3d-shadow- 三维显示元素的阴影颜色.active-border- 活动窗口边框。active-caption-活动窗口标题栏。 如果启用了渐变效果,则指定活动窗口标题栏的颜色渐变中的左侧颜色。active-caption-gradient- 活动窗口标题栏的颜色渐变中的右侧颜色。app-workspace- 多文档界面 (MDI) 应用程序的背景颜色。button-text- 按钮上的文本。caption-text- 标题,大小框和滚动条箭头框中的文本。desktop- 桌面的背景色。disabled-text- 灰色 (禁用的) 文字.highlight- 在控件中选择的项目。highlight-text- 在控件中选择的项目文本。hotlight- 超链接或热追踪项目的颜色。inactive-border- 非活动窗口边框。inactive-caption-非活动窗口标题栏。 如果启用了渐变效果,则指定非活动窗口标题栏的颜色渐变中的左侧颜色。inactive-caption-gradient- 非活动窗口标题栏的颜色渐变中的右侧颜色。inactive-caption-text- 非活动标题中的文字颜色。info-background- 工具提示控件的背景颜色。info-text- 工具提示控件的文本颜色。menu- 菜单的背景色.menu-highlight- 当菜单显示为平面菜单时用于突出显示菜单项的颜色。menubar- 菜单显示为平面菜单时菜单栏的背景颜色。menu-text- 菜单的文字.scrollbar- 滚动条的灰色区域.window- 窗口的背景色.window-frame- 窗口框.window-text- 窗口的文字。
返回String-系统颜色设置为RGB十六进制格式 (#ABCDEF). 更多详细信息, 请查阅 Windows docs.aspx) 。
systemPreferences.isInvertedColorScheme() Windows
返回 Boolean - true 如果反转颜色方案(如高对比度主题)处于活动状态,否则为false
systemPreferences.getEffectiveAppearance() macOS
Returns String - Can be dark, light or unknown.
Gets the macOS appearance setting that is currently applied to your application, maps to NSApplication.effectiveAppearance
Please note that until Electron is built targeting the 10.14 SDK, your application's effectiveAppearance will default to 'light' and won't inherit the OS preference. In the interim in order for your application to inherit the OS preference you must set the NSRequiresAquaSystemAppearance key in your apps Info.plist to false. If you are using electron-packager or electron-forge just set the enableDarwinDarkMode packager option to true. See the Electron Packager API for more details.
systemPreferences.getAppLevelAppearance() macOS
Returns String | null - Can be dark, light or unknown.
Gets the macOS appearance setting that you have declared you want for your application, maps to NSApplication.appearance. You can use the setAppLevelAppearance API to set this value.
systemPreferences.setAppLevelAppearance(appearance) macOS
appearanceString | null - Can bedarkorlight
Sets the appearance setting for your application, this should override the system default and override the value ofgetEffectiveAppearance.
systemPreferences.isTrustedAccessibilityClient(prompt) macOS
promptBoolean - whether or not the user will be informed via prompt if the current process is untrusted.
ReturnsBoolean-trueif the current process is a trusted accessibility client andfalseif it is not.
systemPreferences.getMediaAccessStatus(mediaType) macOS
mediaTypeString -microphoneorcamera.
ReturnsString- Can benot-determined,granted,denied,restrictedorunknown.
This user consent was not required until macOS 10.14 Mojave, so this method will always return granted if your system is running 10.13 High Sierra or lower.
systemPreferences.askForMediaAccess(mediaType) macOS
mediaTypeString - the type of media being requested; can bemicrophone,camera.
ReturnsPromise<Boolean>- A promise that resolves withtrueif consent was granted andfalseif it was denied. If an invalidmediaTypeis passed, the promise will be rejected. If an access request was denied and later is changed through the System Preferences pane, a restart of the app will be required for the new permissions to take effect. If access has already been requested and denied, it must be changed through the preference pane; an alert will not pop up and the promise will resolve with the existing access status.
Important: In order to properly leverage this API, you must set the NSMicrophoneUsageDescription and NSCameraUsageDescription strings in your app's Info.plist file. The values for these keys will be used to populate the permission dialogs so that the user will be properly informed as to the purpose of the permission request. See Electron Application Distribution for more information about how to set these in the context of Electron.
This user consent was not required until macOS 10.14 Mojave, so this method will always return true if your system is running 10.13 High Sierra or lower.
