當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript electron.globalShortcut類代碼示例

本文整理匯總了TypeScript中electron.globalShortcut的典型用法代碼示例。如果您正苦於以下問題:TypeScript globalShortcut類的具體用法?TypeScript globalShortcut怎麽用?TypeScript globalShortcut使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了globalShortcut類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1:

const registerShortcuts = (): void => {
  // Global mute shortcut
  globalShortcut.register('CmdOrCtrl+Alt+M', () =>
    WindowManager.sendActionToPrimaryWindow(EVENT_TYPE.UI.SYSTEM_MENU, EVENT_TYPE.CONVERSATION.TOGGLE_MUTE)
  );

  // Global account switching shortcut
  const switchAccountShortcut = ['CmdOrCtrl', 'Super'];
  const accountLimit = config.MAXIMUM_ACCOUNTS;
  for (const shortcut of switchAccountShortcut) {
    for (let accountId = 0; accountId < accountLimit; accountId++) {
      globalShortcut.register(`${shortcut}+${accountId + 1}`, () =>
        WindowManager.sendActionToPrimaryWindow(EVENT_TYPE.ACTION.SWITCH_ACCOUNT, accountId)
      );
    }
  }
};
開發者ID:wireapp,項目名稱:wire-desktop,代碼行數:17,代碼來源:system.ts

示例2: registerShortcuts

const __refreshMenu = _.debounce(function () {
    Menu.setApplicationMenu(Menu.buildFromTemplate(_.cloneDeep(menuTemplate)));
    globalShortcut.unregisterAll();
    const mainWindow = shell.getMainWindow();
    if (mainWindow.isFocused()) {
        menuTemplate.forEach((menuItem) => registerShortcuts(menuItem));
    }
}, 100);
開發者ID:Real-Currents,項目名稱:brackets,代碼行數:8,代碼來源:app-menu.ts

示例3: function

  let onReady = () => {
    if (!env.integrationTests) {
      const shouldQuit = app.makeSingleInstance((argv, cwd) => {
        // we only get inside this callback when another instance
        // is launched - so this executes in the context of the main instance
        store.dispatch(
          actions.processUrlArguments({
            args: argv,
          })
        );
        store.dispatch(actions.focusWind({ wind: "root" }));
      });
      if (shouldQuit) {
        app.exit(0);
        return;
      }
    }

    store.dispatch(
      actions.processUrlArguments({
        args: process.argv,
      })
    );

    globalShortcut.register("Control+Alt+Backspace", function() {
      store.dispatch(actions.forceCloseLastGame({}));
    });

    // Emitted when the application is activated. Various actions can trigger
    // this event, such as launching the application for the first time,
    // attempting to re-launch the application when it's already running, or
    // clicking on the application's dock or taskbar icon.
    app.on("activate", () => {
      store.dispatch(actions.focusWind({ wind: "root" }));
    });

    app.on("before-quit", e => {
      e.preventDefault();
      store.dispatch(actions.quit({}));
    });

    store.dispatch(actions.preboot({}));

    setInterval(() => {
      try {
        store.dispatch(actions.tick({}));
      } catch (e) {
        mainLogger.error(`While dispatching tick: ${e.stack}`);
      }
    }, 1 * 1000 /* every second */);
  };
開發者ID:itchio,項目名稱:itch,代碼行數:51,代碼來源:main.ts

示例4: registerHotkeys

const handleModifyHotkey = (event, args: IModifyHotkeyArgs) => {
  const { type, payload } = args;
  let shortcuts;
  if (type === 'switch') {
    if (!payload) {
      globalShortcut.unregisterAll();
      return;
    }
    settings.set(ENABLE_HOTKEY, payload);
    shortcuts = settings.get(GLOBAL_SHORTCUT, DEFAULT_GLOBAL_SHORTCUT);
  } else {
    shortcuts = payload;
    settings.set(GLOBAL_SHORTCUT, shortcuts);
  }
  registerHotkeys(shortcuts);
  event.sender.send(MODIFY_HOTKEY, { type, status: 'success' });
};
開發者ID:SteveTannnnng,項目名稱:Mob,代碼行數:17,代碼來源:main.ts

示例5: function

  let onReady = () => {
    if (!env.integrationTests) {
      const shouldQuit = app.makeSingleInstance((argv, cwd) => {
        // we only get inside this callback when another instance
        // is launched - so this executes in the context of the main instance
        store.dispatch(
          actions.processUrlArguments({
            args: argv,
          })
        );
        store.dispatch(actions.focusWindow({ window: "root" }));
      });

      if (shouldQuit) {
        app.exit(0);
        return;
      }
    }

    store.dispatch(
      actions.processUrlArguments({
        args: process.argv,
      })
    );

    globalShortcut.register("Control+Alt+Backspace", function() {
      store.dispatch(actions.forceCloseLastGame({}));
    });

    if (rt) {
      rt.end();
    }

    store.dispatch(actions.preboot({}));

    setInterval(() => {
      try {
        store.dispatch(actions.tick({}));
      } catch (e) {
        logger.error(`While dispatching tick: ${e.stack}`);
      }
    }, 1 * 1000 /* every second */);
  };
開發者ID:HorrerGames,項目名稱:itch,代碼行數:43,代碼來源:metal.ts

示例6: createWindow

function createWindow()
{
    mainWindow =
        new BrowserWindow(
        {
            width: 650,
            height: 500,
            autoHideMenuBar: true,
            title: 'electroshell'

            // Enable these to have transparent window background
            //transparent: true,
            //frame: false,
        });

    var ret = globalShortcut.register('super+`', function()
    {
        if (mainWindow.isMinimized())
        {
            mainWindow.restore();
        }
        mainWindow.focus();
    });

    // Load the index.html of the app
    //mainWindow.loadURL('file://' + __dirname + '/index.html');
    mainWindow.loadURL('http://localhost:8080/index.html');

    mainWindow.on('closed', function() {
        // Dereference the window object
        mainWindow = null;
    });

    // Start PowerShell Editor Services
    editorServicesClient = new EditorServicesClient();
    editorServicesClient.start(mainWindow.webContents);
}
開發者ID:DevlJs,項目名稱:DevelopTools,代碼行數:37,代碼來源:main.ts

示例7:

    socket.on('globalShortcut-isRegistered', (accelerator) => {
        const isRegistered = globalShortcut.isRegistered(accelerator);

        socket.emit('globalShortcut-isRegisteredCompleted', isRegistered);
    });
開發者ID:E024,項目名稱:Electron.NET,代碼行數:5,代碼來源:globalShortcut.ts

示例8: catch

 socket.on('globalShortcut-unregisterAll', () => {
     try {
         globalShortcut.unregisterAll();            
     } catch (error) { }
 });
開發者ID:E024,項目名稱:Electron.NET,代碼行數:5,代碼來源:globalShortcut.ts


注:本文中的electron.globalShortcut類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。