Show
Ignore:
Timestamp:
07/17/08 11:04:18 (4 months ago)
Author:
risto.yrjana@…
Message:

Switched to 5.3.0 + Drop shadow added

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • incubator/widgets/popuppanel/src/com/itmill/toolkit/ui/gwt/client/ui/IPopupPanel.java

    r5015 r5108  
    1616import com.itmill.toolkit.terminal.gwt.client.Paintable; 
    1717import com.itmill.toolkit.terminal.gwt.client.UIDL; 
     18import com.itmill.toolkit.terminal.gwt.client.ui.ToolkitOverlay; 
    1819 
    1920public class IPopupPanel extends HTML implements Paintable { 
     
    157158     *  
    158159     * @param popup 
    159      *                the popup to show 
     160     *            the popup to show 
    160161     * @param host 
    161      *                the widget to draw the popup on 
     162     *            the widget to draw the popup on 
    162163     */ 
    163164    private void showPopupOnTop(final MyPopup popup, final Widget host) { 
     
    177178    } 
    178179 
    179     private class MyPopup extends PopupPanel { 
     180    private class MyPopup extends ToolkitOverlay { 
    180181        // Popup recieves one outside move event at creation time. 
    181182        // We must eat that. 
     
    183184 
    184185        public MyPopup() { 
    185             super(true); // true == autoHide 
     186            super(true, false, true); // autoHide, not modal, dropshadow 
    186187        } 
    187188