org.eclipse.swt.widgets.Dialog

Copyright (c) 2000, 2008 IBM Corporation and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html

Contributors: IBM Corporation - initial API and implementation Port to the D programming language: Frank Benoit <benoit@tionex.de>

Members

Classes

Dialog
class Dialog

This class is the abstract superclass of the classes that represent the built in platform dialogs. A <code>Dialog</code> typically contains other widgets that are not accessible. A <code>Dialog</code> is not a <code>Widget</code>. <p> This class can also be used as the abstract superclass for user-designed dialogs. Such dialogs usually consist of a Shell with child widgets. The basic template for a user-defined dialog typically looks something like this: <pre><code> public class MyDialog extends Dialog { Object result;

Meta