Changeset 5108 for incubator/widgets/popuppanel/src/com/itmill/toolkit/ui/gwt/client/ui/IPopupPanel.java
- Timestamp:
- 07/17/08 11:04:18 (4 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
incubator/widgets/popuppanel/src/com/itmill/toolkit/ui/gwt/client/ui/IPopupPanel.java
r5015 r5108 16 16 import com.itmill.toolkit.terminal.gwt.client.Paintable; 17 17 import com.itmill.toolkit.terminal.gwt.client.UIDL; 18 import com.itmill.toolkit.terminal.gwt.client.ui.ToolkitOverlay; 18 19 19 20 public class IPopupPanel extends HTML implements Paintable { … … 157 158 * 158 159 * @param popup 159 * the popup to show160 * the popup to show 160 161 * @param host 161 * the widget to draw the popup on162 * the widget to draw the popup on 162 163 */ 163 164 private void showPopupOnTop(final MyPopup popup, final Widget host) { … … 177 178 } 178 179 179 private class MyPopup extends PopupPanel{180 private class MyPopup extends ToolkitOverlay { 180 181 // Popup recieves one outside move event at creation time. 181 182 // We must eat that. … … 183 184 184 185 public MyPopup() { 185 super(true ); // true == autoHide186 super(true, false, true); // autoHide, not modal, dropshadow 186 187 } 187 188
