Standardize platform labels
This commit is contained in:
parent
82e2da1d9a
commit
ef64a211a2
2 changed files with 10 additions and 10 deletions
|
@ -207,7 +207,7 @@ __참고__: OS X에선 이 이벤트가 그저 `moved` 이벤트의 별칭(alias
|
||||||
|
|
||||||
윈도우가 HTML API에 의해 풀 스크린 모드에서 해제될 때 발생하는 이벤트입니다.
|
윈도우가 HTML API에 의해 풀 스크린 모드에서 해제될 때 발생하는 이벤트입니다.
|
||||||
|
|
||||||
### Event: 'app-command' _WINDOWS_
|
### Event: 'app-command' _Windows_
|
||||||
|
|
||||||
[App Command](https://msdn.microsoft.com/en-us/library/windows/desktop/ms646275(v=vs.85).aspx)가 호출됐을 때 발생하는 이벤트입니다.
|
[App Command](https://msdn.microsoft.com/en-us/library/windows/desktop/ms646275(v=vs.85).aspx)가 호출됐을 때 발생하는 이벤트입니다.
|
||||||
이 이벤트는 일반적으로 키보드 미디어 키 또는 브라우저 커맨드(기본 동작 키)에 관련되어 있습니다.
|
이 이벤트는 일반적으로 키보드 미디어 키 또는 브라우저 커맨드(기본 동작 키)에 관련되어 있습니다.
|
||||||
|
@ -508,26 +508,26 @@ Kiosk(키오스크) 모드를 설정합니다.
|
||||||
|
|
||||||
현재 윈도우가 kiosk 모드인지 여부를 반환합니다.
|
현재 윈도우가 kiosk 모드인지 여부를 반환합니다.
|
||||||
|
|
||||||
### `win.hookWindowMessage(message, callback)` _WINDOWS_
|
### `win.hookWindowMessage(message, callback)` _Windows_
|
||||||
|
|
||||||
* `message` Integer
|
* `message` Integer
|
||||||
* `callback` Function
|
* `callback` Function
|
||||||
|
|
||||||
Windows 메시지 훅을 등록합니다. `callback`은 WndProc에서 메시지를 받았을 때 호출됩니다.
|
Windows 메시지 훅을 등록합니다. `callback`은 WndProc에서 메시지를 받았을 때 호출됩니다.
|
||||||
|
|
||||||
### `win.isWindowMessageHooked(message)` _WINDOWS_
|
### `win.isWindowMessageHooked(message)` _Windows_
|
||||||
|
|
||||||
* `message` Integer
|
* `message` Integer
|
||||||
|
|
||||||
지정한 메시지가 후킹됬는지 여부를 반환합니다.
|
지정한 메시지가 후킹됬는지 여부를 반환합니다.
|
||||||
|
|
||||||
### `win.unhookWindowMessage(message)` _WINDOWS_
|
### `win.unhookWindowMessage(message)` _Windows_
|
||||||
|
|
||||||
* `message` Integer
|
* `message` Integer
|
||||||
|
|
||||||
지정한 메시지 훅을 등록 해제합니다.
|
지정한 메시지 훅을 등록 해제합니다.
|
||||||
|
|
||||||
### `win.unhookAllWindowMessages()` _WINDOWS_
|
### `win.unhookAllWindowMessages()` _Windows_
|
||||||
|
|
||||||
모든 메시지 훅을 등록 해제합니다.
|
모든 메시지 훅을 등록 해제합니다.
|
||||||
|
|
||||||
|
|
|
@ -232,7 +232,7 @@ Emitted when the window enters full screen state triggered by html api.
|
||||||
|
|
||||||
Emitted when the window leaves full screen state triggered by html api.
|
Emitted when the window leaves full screen state triggered by html api.
|
||||||
|
|
||||||
### Event: 'app-command' _WINDOWS_
|
### Event: 'app-command' _Windows_
|
||||||
|
|
||||||
Emitted when an [App Command](https://msdn.microsoft.com/en-us/library/windows/desktop/ms646275(v=vs.85).aspx)
|
Emitted when an [App Command](https://msdn.microsoft.com/en-us/library/windows/desktop/ms646275(v=vs.85).aspx)
|
||||||
is invoked. These are typically related to keyboard media keys or browser
|
is invoked. These are typically related to keyboard media keys or browser
|
||||||
|
@ -541,7 +541,7 @@ Enters or leaves the kiosk mode.
|
||||||
|
|
||||||
Returns whether the window is in kiosk mode.
|
Returns whether the window is in kiosk mode.
|
||||||
|
|
||||||
### `win.hookWindowMessage(message, callback)` _WINDOWS_
|
### `win.hookWindowMessage(message, callback)` _Windows_
|
||||||
|
|
||||||
* `message` Integer
|
* `message` Integer
|
||||||
* `callback` Function
|
* `callback` Function
|
||||||
|
@ -549,19 +549,19 @@ Returns whether the window is in kiosk mode.
|
||||||
Hooks a windows message. The `callback` is called when
|
Hooks a windows message. The `callback` is called when
|
||||||
the message is received in the WndProc.
|
the message is received in the WndProc.
|
||||||
|
|
||||||
### `win.isWindowMessageHooked(message)` _WINDOWS_
|
### `win.isWindowMessageHooked(message)` _Windows_
|
||||||
|
|
||||||
* `message` Integer
|
* `message` Integer
|
||||||
|
|
||||||
Returns `true` or `false` depending on whether the message is hooked.
|
Returns `true` or `false` depending on whether the message is hooked.
|
||||||
|
|
||||||
### `win.unhookWindowMessage(message)` _WINDOWS_
|
### `win.unhookWindowMessage(message)` _Windows_
|
||||||
|
|
||||||
* `message` Integer
|
* `message` Integer
|
||||||
|
|
||||||
Unhook the window message.
|
Unhook the window message.
|
||||||
|
|
||||||
### `win.unhookAllWindowMessages()` _WINDOWS_
|
### `win.unhookAllWindowMessages()` _Windows_
|
||||||
|
|
||||||
Unhooks all of the window messages.
|
Unhooks all of the window messages.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue