本文整理汇总了TypeScript中electron.BrowserWindow.setPosition方法的典型用法代码示例。如果您正苦于以下问题:TypeScript BrowserWindow.setPosition方法的具体用法?TypeScript BrowserWindow.setPosition怎么用?TypeScript BrowserWindow.setPosition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类electron.BrowserWindow
的用法示例。
在下文中一共展示了BrowserWindow.setPosition方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: getSettings
mainWindow.on('restore', () => {
if (windowIsOffScreen(mainWindow.getBounds())) {
const bounds = mainWindow.getBounds();
let display = Electron.screen.getAllDisplays().find(display => display.id === getSettings().windowState.displayId);
display = display || Electron.screen.getDisplayMatching(bounds);
mainWindow.setPosition(display.workArea.x, display.workArea.y);
dispatch<WindowStateAction>({
type: 'Window_RememberBounds',
state: {
displayId: display.id,
width: bounds.width,
height: bounds.height,
left: display.workArea.x,
top: display.workArea.y
}
});
}
});
示例2: createRootWindow
async function createRootWindow(store: IStore) {
const window = "root";
const role: ItchWindowRole = "main";
const userBounds = config.get(BOUNDS_CONFIG_KEY) || {};
const bounds = {
x: -1,
y: -1,
width: 1250,
height: 720,
...userBounds,
};
const { width, height } = bounds;
const center = bounds.x === -1 && bounds.y === -1;
let opts: Electron.BrowserWindowConstructorOptions = {
...commonBrowserWindowOpts(),
title: app.getName(),
width,
height,
center,
show: false,
};
const nativeWindow = new BrowserWindow(opts);
store.dispatch(
actions.windowOpened({
window,
role,
nativeId: nativeWindow.id,
initialURL: "itch://library",
})
);
if (os.platform() === "darwin") {
try {
app.dock.setIcon(getIconPath());
} catch (err) {
logger.warn(`Could not set dock icon: ${err.stack}`);
}
}
if (!center) {
nativeWindow.setPosition(bounds.x, bounds.y);
}
ensureWindowInsideDisplay(nativeWindow);
nativeWindow.on("close", (e: any) => {
const prefs = store.getState().preferences || { closeToTray: true };
let { closeToTray } = prefs;
if (env.integrationTests) {
// always let app close in testing
closeToTray = false;
}
if (closeToTray) {
logger.debug("Close to tray enabled");
} else {
logger.debug("Close to tray disabled, quitting!");
process.nextTick(() => {
store.dispatch(actions.quit({}));
});
return;
}
if (!nativeWindow.isVisible()) {
logger.info("Main window hidden, letting it close");
return;
}
if (!prefs.gotMinimizeNotification) {
store.dispatch(
actions.updatePreferences({
gotMinimizeNotification: true,
})
);
const i18n = store.getState().i18n;
store.dispatch(
actions.notify({
title: t(i18n, ["notification.see_you_soon.title"]),
body: t(i18n, ["notification.see_you_soon.message"]),
})
);
}
// hide, never destroy
e.preventDefault();
logger.info("Hiding main window");
nativeWindow.hide();
});
hookNativeWindow(store, window, nativeWindow);
nativeWindow.on("maximize", (e: any) => {
config.set(MAXIMIZED_CONFIG_KEY, true);
});
nativeWindow.on("unmaximize", (e: any) => {
config.set(MAXIMIZED_CONFIG_KEY, false);
});
//.........这里部分代码省略.........
示例3: createRootWindow
async function createRootWindow(store: Store) {
const wind = "root";
const role: WindRole = "main";
const userBounds = config.get(BOUNDS_CONFIG_KEY) || {};
const bounds = {
x: -1,
y: -1,
width: 1250,
height: 720,
...userBounds,
};
const { width, height } = bounds;
const center = bounds.x === -1 && bounds.y === -1;
let opts: Electron.BrowserWindowConstructorOptions = {
...commonBrowserWindowOpts(store),
title: app.getName(),
width,
height,
center,
};
const nativeWindow = new BrowserWindow(opts);
store.dispatch(
actions.windOpened({
wind,
role,
nativeId: nativeWindow.id,
initialURL: "itch://library",
})
);
if (process.platform === "darwin") {
try {
app.dock.setIcon(getIconPath());
} catch (err) {
logger.warn(`Could not set dock icon: ${err.stack}`);
}
}
if (!center) {
nativeWindow.setPosition(bounds.x, bounds.y);
}
ensureWindowInsideDisplay(nativeWindow);
nativeWindow.on("close", (e: any) => {});
hookNativeWindow(store, wind, nativeWindow);
nativeWindow.on("maximize", (e: any) => {
config.set(MAXIMIZED_CONFIG_KEY, true);
});
nativeWindow.on("unmaximize", (e: any) => {
config.set(MAXIMIZED_CONFIG_KEY, false);
});
nativeWindow.loadURL(makeAppURL({ wind, role }));
if (parseInt(process.env.DEVTOOLS || "0", 10) > 0) {
openAppDevTools(nativeWindow);
}
}