Files
pqs-9100_tool_client/electron/controller/effect.ts
贾同学 4768ef2d26 init
2025-10-16 20:01:57 +08:00

63 lines
1.2 KiB
TypeScript

import { dialog } from 'electron';
import { getMainWindow } from 'ee-core/electron';
/**
* effect - demo
* @class
*/
class EffectController {
/**
* select file
*/
selectFile(): string | null {
const filePaths = dialog.showOpenDialogSync({
properties: ['openFile']
});
if (!filePaths) {
return null
}
return filePaths[0];
}
/**
* login window
*/
loginWindow(args: { width?: number; height?: number }): void {
const { width, height } = args;
const win = getMainWindow();
const size = {
width: width || 400,
height: height || 300
}
win.setSize(size.width, size.height);
win.setResizable(true);
win.center();
win.show();
win.focus();
}
/**
* restore window
*/
restoreWindow(args: { width?: number; height?: number }): void {
const { width, height } = args;
const win = getMainWindow();
const size = {
width: width || 980,
height: height || 650
}
win.setSize(size.width, size.height);
win.setResizable(true);
win.center();
win.show();
win.focus();
}
}
EffectController.toString = () => '[class EffectController]';
export default EffectController;