Electron官方文档(v1.6.1)中文翻译

15. systemPreferences

2017-03-16  本文已影响26人  Shmily落墨

原文:https://github.com/electron/electron/blob/master/docs/api/system-preferences.md
译者:Lin

获取系统偏好设置

进程:主进程

const {systemPreferences} = require('electron')
console.log(systemPreferences.isDarkMode())

事件

systemPreferences对象分发下面事件:

事件: 'accent-color-changed' Windows

返回值:

事件: 'color-changed' Windows

返回值:

事件: 'inverted-color-scheme-changed' Windows

返回值:

方法

systemPreferences.isDarkMode() MacOS

返回值为Boolean类型 - 系统是否是深色模式。

systemPreferences.isSwipeTrackingFromScrollEventsEnabled() MacOS

返回值为Boolean类型 - 是否开启页面之间的切换。

systemPreferences.postNotification(event, userInfo) MacOS

event作为MacOS的本地通知发送。userInfo是一个和通知一起发送的包含了用户信息字典的对象。

systemPreferences.postLocalNotification(event, userInfo) MacOS

event作为MacOS的本地通知发送。userInfo是一个和通知一起发送的包含了用户信息字典的对象。

systemPreferences.subscribeNotification(event, callback) MacOS

订阅MacOS的本地通知,当对应的event发生的时候callback将会使用callback(event, userInfo)被调用。userInfo是一个和通知一起发送的包含了用户信息字典的对象。

返回订阅器的id,可以用来取消订阅event

这个接口的本质是订阅NSDistributedNotificationCenter,例如event的值可以是:

systemPreferences.unsubscribeNotification(id) MacOS

通过id移除订阅器。

systemPreferences.subscribeLocalNotification(event, callback) MacOS

subscribeNotification一样,不过本地是默认使用NSNotificationCenter。这个对于事件是必要的,例如NSUserDefaultsDidChangeNotification

systemPreferences.unsubscribeLocalNotification(id) MacOS

unsubscribeNotification一样,不过是从NSNotificationCenter中移除订阅器。

systemPreferences.getUserDefault(key, type) MacOS

通过key来获取系统偏好设置里面对应的值。

这个接口在MacOS中使用NSUserDefaults。一些常用的keytype有:

systemPreferences.setUserDefault(key, type, value) MacOS

通过key来设置系统偏好设置里面对应的值。

请注意,type应该和value的实际类型匹配。如果不匹配将会抛出一个错误。An exception is thrown if they don't.

这个接口在MacOS中使用NSUserDefaults。一些常用的keytype有:

systemPreferences.isAeroGlassEnabled() Windows

如果DWM composition(毛玻璃效果)被激活,那么这个方法将返回true,否则将返回false

一个使用这个接口的例子,来决定是否你需要创建一个透明窗口(当DWM composition被禁用的时候透明窗口将不能正常的工作):

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 = true
    browserOptions.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

返回值为String类型 - 十六进制的RGB格式(#ABCDEF)的系统颜色设置。查看Windows docs获取更详细信息。

systemPreferences.isInvertedColorScheme() Windows

返回值为Boolean类型 - 如果是反向配色方案,例如一个高对比度的主题将要被使用,则这个值为true。否则这个值为false

上一篇下一篇

猜你喜欢

热点阅读