32 lines
1.5 KiB
Java
32 lines
1.5 KiB
Java
/*
|
|
* Copyright (c) 2003,2009 Declarative Engineering LLC.
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Declarative Engineering LLC
|
|
* verson 1 which accompanies this distribution, and is available at
|
|
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
|
*/
|
|
package com.foundation.tcv.swt;
|
|
|
|
import org.eclipse.swt.SWT;
|
|
|
|
public interface IMessageDialog extends IDialog {
|
|
public static final int STYLE_ICON_ERROR = SWT.ICON_ERROR;
|
|
public static final int STYLE_ICON_INFORMATION = SWT.ICON_INFORMATION;
|
|
public static final int STYLE_ICON_QUESTION = SWT.ICON_QUESTION;
|
|
public static final int STYLE_ICON_WARNING = SWT.ICON_WARNING;
|
|
public static final int STYLE_ICON_WORKING = SWT.ICON_WORKING;
|
|
public static final int STYLE_OK = SWT.OK;
|
|
public static final int STYLE_CANCEL = SWT.CANCEL;
|
|
public static final int STYLE_YES = SWT.YES;
|
|
public static final int STYLE_NO = SWT.NO;
|
|
public static final int STYLE_RETRY = SWT.RETRY;
|
|
public static final int STYLE_IGNORE = SWT.IGNORE;
|
|
public static final int STYLE_ABORT = SWT.ABORT;
|
|
public static final int STYLE_PRIMARY_MODAL = SWT.PRIMARY_MODAL;
|
|
/** The default setting for the dialog if none other is given. */
|
|
public static final int STYLE_APPLICATION_MODAL = SWT.APPLICATION_MODAL;
|
|
public static final int STYLE_SYSTEM_MODAL = SWT.SYSTEM_MODAL;
|
|
|
|
public static final int MESSAGE_SET_MESSAGE = IDialog.LAST_MESSAGE_NUMBER + 1;
|
|
public static final int LAST_MESSAGE_NUMBER = IDialog.LAST_MESSAGE_NUMBER + 1;
|
|
}//IMessageDialog// |