当前位置: 首页>>代码示例>>Java>>正文


Java MessageDialog.QUESTION属性代码示例

本文整理汇总了Java中org.eclipse.jface.dialogs.MessageDialog.QUESTION属性的典型用法代码示例。如果您正苦于以下问题:Java MessageDialog.QUESTION属性的具体用法?Java MessageDialog.QUESTION怎么用?Java MessageDialog.QUESTION使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在org.eclipse.jface.dialogs.MessageDialog的用法示例。


在下文中一共展示了MessageDialog.QUESTION属性的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: processChanges

/**
 * This method has been copied and adapted from org.eclipse.xtext.ui.preferences.OptionsConfigurationBlock.
 */
@Override
protected boolean processChanges(IWorkbenchPreferenceContainer container) {
	boolean needsBuild = !getPreferenceChanges().isEmpty() | projectSpecificChanged;
	boolean doBuild = false;
	if (needsBuild) {
		int count = getRebuildCount();
		if (count > rebuildCount) {
			needsBuild = false;
			rebuildCount = count;
		}
	}
	if (needsBuild) {
		String[] strings = getFullBuildDialogStrings(project == null);
		if (strings != null) {
			MessageDialog dialog = new MessageDialog(this.getShell(), strings[0], null, strings[1],
					MessageDialog.QUESTION,
					new String[] { IDialogConstants.YES_LABEL, IDialogConstants.NO_LABEL,
							IDialogConstants.CANCEL_LABEL },
					2);
			int res = dialog.open();
			if (res == 0) {
				doBuild = true;
			} else if (res != 1) {
				return false;
			}
		}
	}
	if (container != null) {
		if (doBuild) {
			incrementRebuildCount();
			container.registerUpdateJob(getBuildJob(getProject()));
		}
	} else {
		if (doBuild) {
			getBuildJob(getProject()).schedule();
		}
	}
	return true;
}
 
开发者ID:eclipse,项目名称:n4js,代码行数:42,代码来源:N4JSBuilderPreferencePage.java

示例2: confirmOverwrite

private boolean confirmOverwrite(String msg) {
	if (shell == null) return false;
	final MessageDialog dialog = 
		new MessageDialog(shell, title, null, msg, MessageDialog.QUESTION, buttons, 0);

	shell.getDisplay().syncExec(
		new Runnable() {
			public void run() {
				dialog.open();
			}
		});
	if (hasMultiple) {
		switch (dialog.getReturnCode()) {
			case 0:
				return true;
			case 1:
				confirmation = YES_TO_ALL; 
				return true;
			case 2:
				return false;
			case 3:
				confirmation = NO_TO_ALL;
			default:
				return false;
		}
	} else {
		switch (dialog.getReturnCode()) {
		case 0:
			return true;
		case 1:
			return false;
		case 2:
		default:
			return false;
		}
	}
}
 
开发者ID:convertigo,项目名称:convertigo-eclipse,代码行数:37,代码来源:MultipleDeletionDialog.java

示例3: dialogBuild

private boolean dialogBuild(MobileBuilderBuildMode buildMode) {
	MessageDialog dialog = new MessageDialog(
		null, "Build '" + buildMode.label() + "'",
		null, "This action will build your application for '" + buildMode.label() + "':\n" + buildMode.description(),
		MessageDialog.QUESTION,
		new String[] {"Build", "Cancel"}, 0
	);
	int result = dialog.open();
	if (result == 0) {
		this.buildMode = buildMode;
		launchBuilder(false, false);
		return true;
	}
	return false;
}
 
开发者ID:convertigo,项目名称:convertigo-eclipse,代码行数:15,代码来源:ApplicationComponentEditor.java

示例4: displayYesNoQuestion

public static int displayYesNoQuestion(String title, String text) {
	if (isAutomatedMode ()) return getIntegerAutomatedModeDefaultValue();
	MessageDialog dialog = new MessageDialog(null, title, null, text, MessageDialog.QUESTION,
			new String[] { MessageUtil.getString("yes"), MessageUtil.getString("no") }, 0);
	int result = dialog.open();
	return result;
}
 
开发者ID:gw4e,项目名称:gw4e.project,代码行数:7,代码来源:DialogManager.java

示例5: createRememberDecisonDialog

public static MessageDialogWithToggle createRememberDecisonDialog(String title, String text, String toggletext,
		Runnable okRunnable) {
	final String[] buttons = new String[] { IDialogConstants.CLOSE_LABEL, IDialogConstants.OK_LABEL, };

	return new MessageDialogWithToggle(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), title,
			null, text, MessageDialog.QUESTION, buttons, 0, toggletext, false) {
		protected void buttonPressed(int buttonId) {
			if (okRunnable != null && IDialogConstants.OK_ID == buttonId) {
				okRunnable.run();
				return;
			}
			super.buttonPressed(buttonId);
		}
	};
}
 
开发者ID:gw4e,项目名称:gw4e.project,代码行数:15,代码来源:DialogManager.java

示例6: queryOverwrite

/**
 * The default implementation of this <code>IOverwriteQuery</code> method asks the user whether the existing
 * resource at the given path should be overwritten.
 *
 * @param pathString
 *            the path of the archive
 * @return the user's reply: one of <code>"YES"</code>, <code>"NO"</code>, <code>"ALL"</code>, or
 *         <code>"CANCEL"</code>
 */
@Override
public String queryOverwrite(String pathString) {

	IPath path = Path.fromOSString(pathString);

	String messageString;
	// Break the message up if there is a file name and a directory
	// and there are at least 2 segments.
	if (path.getFileExtension() == null || path.segmentCount() < 2) {
		messageString = NLS.bind(IDEWorkbenchMessages.WizardDataTransfer_existsQuestion, pathString);
	} else {
		messageString = NLS.bind(IDEWorkbenchMessages.WizardDataTransfer_overwriteNameAndPathQuestion,
				path.lastSegment(),
				path.removeLastSegments(1).toOSString());
	}

	final MessageDialog dialog = new MessageDialog(getContainer()
			.getShell(), IDEWorkbenchMessages.Question,
			null, messageString, MessageDialog.QUESTION, new String[] {
		IDialogConstants.YES_LABEL,
		IDialogConstants.YES_TO_ALL_LABEL,
		IDialogConstants.NO_LABEL,
		IDialogConstants.NO_TO_ALL_LABEL,
		IDialogConstants.CANCEL_LABEL }, 0) {
		@Override
		protected int getShellStyle() {
			return super.getShellStyle() | SWT.SHEET;
		}
	};
	String[] response = new String[] { YES, ALL, NO, NO_ALL, CANCEL };
	// run in syncExec because callback is from an operation,
	// which is probably not running in the UI thread.
	getControl().getDisplay().syncExec(new Runnable() {
		@Override
		public void run() {
			dialog.open();
		}
	});
	return dialog.getReturnCode() < 0 ? CANCEL : response[dialog.getReturnCode()];
}
 
开发者ID:eclipse,项目名称:n4js,代码行数:49,代码来源:AbstractExportToSingleFileWizardPage.java


注:本文中的org.eclipse.jface.dialogs.MessageDialog.QUESTION属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。