Electron 문서1.4.1

Docs / API / systemPreferences

systemPreferences

시스템 설정을 가져옵니다.

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

Events

systemPreferences 객체는 다음 이벤트를 발생시킵니다:

Event: ‘accent-color-changed’ Windows

Returns:

Event: ‘color-changed’ Windows

Returns:

Event: ‘inverted-color-scheme-changed’ Windows

Returns:

Methods

systemPreferences.isDarkMode() macOS

Returns Boolean - 시스템이 어두운 모드인지 여부.

systemPreferences.isSwipeTrackingFromScrollEventsEnabled() macOS

Returns Boolean - 페이지 간의 스와이프가 설정되어 있는지 여부.

systemPreferences.postNotification(event, userInfo) macOS

macOS 의 기본 알림으로 event 를 전달합니다. userInfo 는 알림과 함께 전송되는 사용자 정보 딕셔너리를 포함하는 객체입니다.

systemPreferences.postLocalNotification(event, userInfo) macOS

macOS 의 기본 알림으로 event 를 전달합니다. userInfo 는 알림과 함께 전송되는 사용자 정보 딕셔너리를 포함하는 객체입니다.

systemPreferences.subscribeNotification(event, callback) macOS

macOS의 기본 알림을 구독하며, 해당하는 event가 발생하면 callbackcallback(event, userInfo) 형태로 호출됩니다. userInfo는 알림과 함께 전송되는 사용자 정보 딕셔너리를 포함하는 객체입니다.

구독자의 id가 반환되며 event를 구독 해제할 때 사용할 수 있습니다.

이 API는 후드에서 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에선 API가 NSUserDefaults를 읽어들입니다. 유명한 keytype은 다음과 같습니다:

systemPreferences.isAeroGlassEnabled() Windows

이 메서드는 DWM 컴포지션 (Aero Glass)가 활성화 되어있을 때 true를 반환합니다. 아닌 경우 false를 반환합니다.

다음은 투명한 윈도우를 만들지, 일반 윈도우를 만들지를 판단하여 윈도우를 생성하는 예시입니다 (투명한 윈도우는 DWM 컴포지션이 비활성화되어있을 시 작동하지 않습니다):

const {BrowserWindow, systemPreferences} = require('electron')
let browserOptions = {width: 1000, height: 800}

// 플랫폼이 지원하는 경우에만 투명 윈도우를 생성.
if (process.platform !== 'win32' || systemPreferences.isAeroGlassEnabled()) {
  browserOptions.transparent = true
  browserOptions.frame = false
}

// 원도우 생성
let win = new BrowserWindow(browserOptions)

// 페이지 로드.
if (browserOptions.transparent) {
  win.loadURL(`file://${__dirname}/index.html`)
} else {
  // 투명 윈도우 상태가 아니라면, 기본적인 스타일 사용
  win.loadURL(`file://${__dirname}/fallback.html`)
}

systemPreferences.getAccentColor() Windows

Returns String - 사용자 현재 시스템 전체 강조 색상 설정의 16진수 형식 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

Returns String - 16진수 RGB 형식 (#ABCDEF) 의 시스템 색상 설정. 자세한 내용은 윈도우 문서를 보세요.

systemPreferences.isInvertedColorScheme() Windows

Returns Boolean - 고대비 테마 같은 반전된 색상 스킴이 활성화 되있다면 true, 아니면 false.


고쳐야 할 것이 있습니까? 소스에서 변경을 제안할 수 있습니다.
다른 버전의 문서가 필요한가요? 이전 버전 또는 커뮤니티 번역을 보세요.
모든 문서를 한번에 검색하고 싶으신가요? 한 페이지 문서를 보세요.