| 1433 | /// Shows a modeless dialog which is useful for some simpler use cases such as |
| 1434 | /// progress indication etc... |
| 1435 | public void showModeless() { |
| 1436 | // this behavior allows a use case where dialogs of various sizes are layered |
| 1437 | // one on top of the other |
| 1438 | modal = false; |
| 1439 | setDisposed(false); |
| 1440 | if (top > -1) { |
| 1441 | show(top, bottom, left, right, includeTitle, false); |
| 1442 | } else { |
| 1443 | if (getDialogPosition() == null) { |
| 1444 | showDialog(false, false); |
| 1445 | } else { |
| 1446 | showPacked(getDialogPosition(), false); |
| 1447 | } |
| 1448 | } |
| 1449 | } |
| 1450 | |
| 1451 | @Override |
| 1452 | void showModal(int top, int bottom, int left, int right, boolean includeTitle, boolean modal, boolean reverse) { |