SOLFIND
Web Lens
Portal home

screen | Electron

https://www.electronjs.org/ja/docs/latest/api/screen • 62 KB fetched
Open original page


screen | Electron メインコンテンツへ飛ぶ Electron ドキュメント API ブログ ツール * Electron Forge * Electron Fiddle コミュニティ * ガバナンス * 事例紹介 * リソース リリース 日本語 * English * Deutsch * Español * Français * 日本語 * Português * Русский * 中文 検索 * メインプロセスモジュール * app * autoUpdater * BaseWindow * BrowserView * Deprecated * BrowserWindow * clipboard * contentTracing * crashReporter * desktopCapturer * dialog * globalShortcut * ImageView * inAppPurchase * ipcMain * Menu * MenuItem * MessageChannelMain * MessagePortMain * nativeImage * nativeTheme * net * netLog * Notification * powerMonitor * powerSaveBlocker * process * protocol * pushNotifications * safeStorage * screen * session * sharedTexture * ShareMenu * shell * systemPreferences * TouchBar * Tray * utilityProcess * webContents * WebContentsView * webFrameMain * 表示 * レンダラープロセスモジュール * Utility Process Modules * カスタム DOM 要素 * Chromium と Node.js * クラス * API の構造体 * * メインプロセスモジュール * screen 目次 screen 画面サイズ、ディスプレイ、カーソルの位置などについての情報を取得します。 プロセス: メイン app モジュールの ready イベントが発生するまでは、このモジュールは使用できません。 screen は EventEmitter です。 [!NOTE] レンダラー / 開発者向けツールでは、 window.screen は予約済みの DOM プロパティなので、 let { screen } = require('electron') と書くことはできません。 以下は画面全体を埋めるウインドウを作成する例です。 docs/fiddles/screen/fit-screen ( 43.4.0 ) Open in Fiddle * main.js // Retrieve information about screen size, displays, cursor position, etc. // // For more info, see: // https://www.electronjs.org/docs/latest/api/screen const { app , BrowserWindow , screen } = require ( 'electron/main' ) let mainWindow = null app . whenReady ( ) . then ( ( ) => { // Create a window that fills the screen's available work area. const primaryDisplay = screen . getPrimaryDisplay ( ) const { width , height } = primaryDisplay . workAreaSize mainWindow = new BrowserWindow ( { width , height } ) mainWindow . loadURL ( 'https://electronjs.org' ) } ) 以下は外部ディスプレイにウィンドウを作成するもう一つの例です。 const { app , BrowserWindow , screen } = require ( 'electron' ) let win app . whenReady ( ) . then ( ( ) => { const displays = screen . getAllDisplays ( ) const externalDisplay = displays . find ( ( display ) => { return display . bounds . x !== 0 || display . bounds . y !== 0 } ) if ( externalDisplay ) { win = new BrowserWindow ( { x : externalDisplay . bounds . x + 50 , y : externalDisplay . bounds . y + 50 } ) win . loadURL ( 'https://github.com' ) } } ) [!NOTE] このモジュールで使用される画面の座標は、 Point 構造体です。 この処理で使用できる座標は以下の 2 種類です。 * 物理画面ポイント 。ディスプレイ上の生のハードウェアピクセルです。 * デバイス非依存ピクセル (DIP) ポイント 。ディスプレイの DPI (ドット毎インチ) に基づいてスケールされた仮想画面ポイントです。 イベント ​ screen モジュールには以下のイベントがあります。 イベント: 'display-added' ​ 戻り値: * event Event * newDisplay Display newDisplay が追加されたときに発生します。 イベント: 'display-removed' ​ 戻り値: * event Event * oldDisplay Display oldDisplay が削除されたときに発生します。 イベント: 'display-metrics-changed' ​ 戻り値: * event Event * display Display * changedMetrics string[] display 内の一つ以上の寸法が変化したときに発生します。 changedMetrics は、変化を示す文字列の配列です。 取りうる変化は bounds 、 workArea 、 scaleFactor 、 rotation です。 メソッド ​ screen モジュールには以下のメソッドがあります。 screen.getCursorScreenPoint() ​ 戻り値 Point マウスポインタの現在の絶対位置。 Wayland (Linux) ではサポートされていません。 [!NOTE] 戻り値は DIP ポイント単位です。画面の物理ポイント単位ではありません。 screen.getPrimaryDisplay() ​ 戻り値 Display - プライマリディスプレイ。 screen.getAllDisplays() ​ 戻り値 Display[] - 現在利用可能なディスプレイの配列。 screen.getDisplayNearestPoint(point) ​ * point Point 戻り値 Display - 指定した点に最も近い display。 screen.getDisplayMatching(rect) ​ * rect Rectangle 戻り値 Display - 指定された領域に最も交わるディスプレイ。 screen.screenToDipPoint(point) Windows Linux ​ * point Point 戻り値 Point スクリーン上の物理的な点をスクリーン上の DIP な点に変換します。 DPI スケールは、物理的な点のあるディスプレイに対して相対的なものになります。 Wayland では現在サポートされていません。Wayland で使用すると、渡された点をそのまま返されます。 screen.dipToScreenPoint(point) Windows Linux ​ * point Point 戻り値 Point スクリーン上の DIP な点をスクリーン上の物理的な点に変換します。 DPI スケールは、その DIP の点を含むディスプレイに対して相対的なものになります。 Wayland では現在サポートされていません。 screen.screenToDipRect(window, rect) Windows ​ * window BrowserWindow | null * rect Rectangle 戻り値 Rectangle スクリーンの物理矩形をスクリーンの DIP 矩形に変換します。 DPI スケールは window に近いディスプレイで相対的に計算されます。 window が null の場合、スケールは rect に近いディスプレイで相対的に計算されます。 screen.dipToScreenRect(window, rect) Windows ​ * window BrowserWindow | null * rect Rectangle 戻り値 Rectangle スクリーンの DIP 矩形をスクリーンの物理矩形に変換します。 DPI スケールは window に近いディスプレイで相対的に計算されます。 window が null の場合、スケールは rect に近いディスプレイで相対的に計算されます。 このページを編集 前 safeStorage 次 session * イベント * イベント: 'display-added' * イベント: 'display-removed' * イベント: 'display-metrics-changed' * メソッド * getCursorScreenPoint * getPrimaryDisplay * getAllDisplays * getDisplayNearestPoint * getDisplayMatching * screenToDipPoint * dipToScreenPoint * screenToDipRect * dipToScreenRect ドキュメント * 始めましょう * API リファレンス チェックリスト * パフォーマンス * セキュリティ ツール * Electron Forge * Electron Fiddle コミュニティ * ガバナンス * リソース * Discord * Bluesky * X * Mastodon * Stack Overflow その他 * GitHub * Open Collective * Infrastructure Dashboard Copyright OpenJS Foundation and Electron contributors. All rights reserved. The OpenJS Foundation has registered trademarks and uses trademarks. For a list of trademarks of the OpenJS Foundation , please see our Trademark Policy and Trademark List . Trademarks and logos not indicated on the list of OpenJS Foundation trademarks are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them. The OpenJS Foundation | Terms of Use | Privacy Policy | Bylaws | Code of Conduct | Trademark Policy | Trademark List | Cookie Policy Hosting and infrastructure graciously provided by

Links found on this page

  1. メインコンテンツへ飛ぶ [direct]
  2. Electron [direct]
  3. ドキュメント [direct]
  4. API [direct]
  5. ブログ [direct]
  6. Electron Forge [direct]
  7. Electron Fiddle [direct]
  8. ガバナンス [direct]
  9. 事例紹介 [direct]
  10. リソース [direct]
  11. リリース [direct]
  12. English [direct]
  13. Deutsch [direct]
  14. Español [direct]
  15. Français [direct]
  16. Português [direct]
  17. Русский [direct]
  18. 中文 [direct]
  19. autoUpdater [direct]
  20. BaseWindow [direct]
  21. BrowserView Deprecated [direct]
  22. BrowserWindow [direct]
  23. clipboard [direct]
  24. contentTracing [direct]
  25. crashReporter [direct]
  26. desktopCapturer [direct]
  27. dialog [direct]
  28. globalShortcut [direct]
  29. ImageView [direct]
  30. inAppPurchase [direct]
  31. ipcMain [direct]
  32. Menu [direct]
  33. MenuItem [direct]
  34. MessageChannelMain [direct]
  35. MessagePortMain [direct]
  36. nativeImage [direct]
  37. nativeTheme [direct]
  38. net [direct]
  39. netLog [direct]
  40. Notification [direct]
  41. powerMonitor [direct]
  42. powerSaveBlocker [direct]
  43. process [direct]
  44. protocol [direct]
  45. pushNotifications [direct]
  46. safeStorage [direct]
  47. session [direct]
  48. sharedTexture [direct]
  49. ShareMenu [direct]
  50. shell [direct]
  51. systemPreferences [direct]
  52. TouchBar [direct]
  53. Tray [direct]
  54. utilityProcess [direct]
  55. webContents [direct]
  56. WebContentsView [direct]
  57. webFrameMain [direct]
  58. 表示 [direct]
  59. カスタム DOM 要素 [direct]
  60. Chromium と Node.js [direct]
  61. クラス [direct]
  62. API の構造体 [direct]
  63. メイン [direct]
  64. EventEmitter [direct]
  65. docs/fiddles/screen/fit-screen ( 43.4.0 ) [direct]
  66. Open in Fiddle [direct]
  67. Point [direct]
  68. Display [direct]
  69. Point [direct]
  70. Rectangle [direct]
  71. このページを編集 [direct]
  72. パフォーマンス [direct]
  73. セキュリティ [direct]
  74. Discord [direct]
  75. Bluesky [direct]
  76. X [direct]
  77. Mastodon [direct]
  78. Stack Overflow [direct]
  79. GitHub [direct]
  80. Open Collective [direct]