view user/RetryMessageBox.d @ 173:33d9146198b2

minor edits in jface text example
author Frank Benoit <benoit@tionex.de>
date Sun, 26 Oct 2008 14:53:07 +0100
parents 5057d1475aee
children
line wrap: on
line source

import dwt.std;
void main() {
    Shell shell = new Shell(Display.getDefault());
    MessageBox.showMessageBox(
        DWT.getMessage( "SWT_A_Sample_Text" ),
        DWT.getMessage( "SWT_Sample" ),
        shell,
        DWT.ABORT|DWT.RETRY|DWT.IGNORE|DWT.ICON_QUESTION );
    Display.getDefault().dispose();
    return 0;
}