MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / showModeless

Method showModeless

CodenameOne/src/com/codename1/ui/Dialog.java:1435–1449  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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) {

Callers 12

showImplMethod · 0.95
ensureFallbackMenuMethod · 0.95
testSafeAreasSampleMethod · 0.95
actionPerformedMethod · 0.80
runCurrentRequestMethod · 0.80
showFormMethod · 0.80
runMethod · 0.80
runMethod · 0.80

Calls 5

setDisposedMethod · 0.95
showMethod · 0.95
getDialogPositionMethod · 0.95
showDialogMethod · 0.95
showPackedMethod · 0.95