comparison dwt/browser/VisibilityWindowListener.d @ 302:bfe1c57259e3

More browser code ported
author John Reimer<terminal.node@gmail.com>
date Tue, 12 Aug 2008 21:11:17 -0700
parents 93409d9838c5
children
comparison
equal deleted inserted replaced
301:d1474e6bb509 302:bfe1c57259e3
5 * which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html 6 * http://www.eclipse.org/legal/epl-v10.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language:
11 * John Reimer <terminal.node@gmail.com>
10 *******************************************************************************/ 12 *******************************************************************************/
11 module dwt.browser.VisibilityWindowListener; 13 module dwt.browser.VisibilityWindowListener;
12 14
13 import dwt.dwthelper.utils; 15 import dwt.browser.WindowEvent;
16 //import dwt.dwthelper.utils;
14 17
15 import dwt.internal.DWTEventListener; 18 import dwt.internal.DWTEventListener;
16 19
17 /** 20 /**
18 * This listener interface may be implemented in order to receive 21 * This listener interface may be implemented in order to receive
24 * @see OpenWindowListener 27 * @see OpenWindowListener
25 * @see CloseWindowListener 28 * @see CloseWindowListener
26 * 29 *
27 * @since 3.0 30 * @since 3.0
28 */ 31 */
29 public interface VisibilityWindowListener extends DWTEventListener { 32 public interface VisibilityWindowListener : DWTEventListener {
30 33
31 /** 34 /**
32 * This method is called when the window hosting a <code>Browser</code> 35 * This method is called when the window hosting a <code>Browser</code>
33 * is requested to be hidden. Application would typically hide the 36 * is requested to be hidden. Application would typically hide the
34 * {@link dwt.widgets.Shell} that hosts the <code>Browser</code>. 37 * {@link dwt.widgets.Shell} that hosts the <code>Browser</code>.