javauis/eswt_qt/org.eclipse.swt/Eclipse_SWT_PI/qt/org/eclipse/swt/internal/qt/SymbianWindowVisibilityListener.java
changeset 78 71ad690e91f5
equal deleted inserted replaced
72:1f0034e370aa 78:71ad690e91f5
       
     1 /*******************************************************************************
       
     2  * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3  * All rights reserved. This program and the accompanying materials
       
     4  * are made available under the terms of the Eclipse Public License v1.0
       
     5  * which accompanies this distribution, and is available at
       
     6  * http://www.eclipse.org/legal/epl-v10.html
       
     7  *
       
     8  * Contributors:
       
     9  *     Nokia Corporation - initial implementation
       
    10  *******************************************************************************/
       
    11 
       
    12 package org.eclipse.swt.internal.qt;
       
    13 
       
    14 import org.eclipse.swt.widgets.Widget;
       
    15 
       
    16 public interface SymbianWindowVisibilityListener {
       
    17     /**
       
    18      * Notifies the listeners when the visibility of a window owing widget is changing.
       
    19      * May be sent either before or after the actual visibility is changed.
       
    20      * @param widget - the window owing widget who's visibility is being changed.
       
    21      * @param visible - true when the widget is becoming visible.
       
    22      */
       
    23     public abstract void handleSymbianWindowVisibilityChange(Widget widget, boolean visible);
       
    24 }