本文整理汇总了TypeScript中electron.remote.dialog类的典型用法代码示例。如果您正苦于以下问题:TypeScript remote.dialog类的具体用法?TypeScript remote.dialog怎么用?TypeScript remote.dialog使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了remote.dialog类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: chooseFileOrDirWithDialog
function chooseFileOrDirWithDialog() {
const filters = [
{
name: 'Markdown',
extensions: config.file_ext.markdown,
},
{
name: 'HTML',
extensions: config.file_ext.html,
},
];
const properties = ['openFile'] as ('openFile' | 'openDirectory' | 'multiSelections' | 'createDirectory')[];
if (on_darwin) {
// Note:
// On Windows and Linux an open dialog can not be both a file selector
// and a directory selector, so if you set properties to
// ['openFile', 'openDirectory'] on these platforms, a directory
// selector will be shown.
properties.push('openDirectory');
}
const paths = remote.dialog.showOpenDialog({
title: 'Choose file or directory to watch',
defaultPath: getDialogDefaultPath(),
filters,
properties,
});
if (!paths || paths.length === 0) {
return '';
}
return paths[0];
}
示例2: function
$('body').on('click', '.button#load-template', function(event) {
dialog.showOpenDialog(
{
title: 'Open New Email Template',
filters: [
{name: 'Templates', extensions: ['html']},
{name: 'All Files', extensions: ['*']}
]
}, function(fileNames: string[]) {
if (fileNames !== undefined) {
storage.get('templates', function(error, templates) {
if (_.isEmpty(templates)) {
templates = [];
}
if (! _.contains(templates, fileNames[0])) {
templates.push(fileNames[0]);
storage.set('templates', templates, function(error) {
if (error) {
console.error(error);
}
});
}
});
openTemplate(fileNames[0]);
}
});
});
示例3: installFailed
function installFailed() {
remote.dialog.showMessageBox({
type: 'error',
title: 'Installation failed',
message: 'Failed to install PIP',
detail: 'Please refer to https://pip.pypa.io for a detailed installation guide.',
buttons: ['OK']
});
}
示例4:
.then((out) => {
console.log(out);
remote.dialog.showMessageBox({
type: 'info',
title: 'Installation successful',
message: 'PIP was successfully installed.',
buttons: ['OK']
});
}, (out) => {
示例5: directoryChooser
export function directoryChooser(title?: string, defaultPath?: string) {
return remote.dialog.showOpenDialog({
defaultPath,
title,
properties: [
"openDirectory",
],
})[0];
}
示例6: add
/**
* Display a dialog for selecting the library dir.
*/
add() {
dialog.showOpenDialog({
title: 'Select Visualization Folder(s)',
defaultPath: this.state.lastPath.value || DEFAULT_LIBRARY_PATH,
properties: ['openDirectory', 'multiSelections']
}, (paths: string[]) => {
const entries = this.loadFromPaths(paths);
if (0 < entries.length) {
this.state.update('activeId', entries[0].id);
}
});
}
示例7: fileChooser
export function fileChooser(multi: boolean, title?: string, defaultPath?: string) {
const properties: OpenDialogOptions["properties"] = [
"openFile",
];
if (multi) {
properties.push("multiSelections");
}
return remote.dialog.showOpenDialog({
defaultPath,
title,
properties,
});
}
示例8: sanitizeFilename
r.onloadend = () => {
const data = {
name: sanitizeFilename(self.visState.title.toLowerCase().replace(/\s/g, '-')),
image: r.result,
format: 'png'
};
remote.dialog.showSaveDialog(
remote.BrowserWindow.getAllWindows()[0],
{
title: 'Export to Image',
defaultPath: sanitizeFilename(data.name + '.' + data.format)
},
(name: string) => {
name && writeFileSync(name, arrayBufferToBuffer(data.image));
}
);
};
示例9: function
{
const opened: boolean = webview.isDevToolsOpened();
const focused: boolean = webview.isDevToolsFocused();
const focused2: boolean = webview.getWebContents().isFocused();
}
// In guest page.
ipcRenderer.on('ping', function() {
ipcRenderer.sendToHost('pong');
});
// showOpenDialog
// https://electron.atom.io/docs/api/dialog/#dialogshowopendialogbrowserwindow-options-callback
remote.dialog.showOpenDialog(win);
remote.dialog.showOpenDialog(win, {}, fileNames => fileNames);
remote.dialog.showOpenDialog(win, {
title: 'foo',
defaultPath: '/bar',
buttonLabel: 'foo bar',
filters: [
{name: 'Images', extensions: ['jpg', 'png', 'gif']},
{name: 'Movies', extensions: ['mkv', 'avi', 'mp4']},
{name: 'Custom File Type', extensions: ['as']},
{name: 'All Files', extensions: ['*']}
],
properties: ['openFile', 'openDirectory', 'multiSelections', 'showHiddenFiles', 'createDirectory', 'promptToCreate', 'noResolveAliases'],
normalizeAccessKeys: true,
message: 'foo message',
});