289290291292293294295296297298299
SwingUtilities.convertPointToScreen( location, item ); DialogWindow window = createDialogWindow( item ); window.setUndecorated( true ); window.setContent( getContent() ); window.open( location.x, location.y ); openPopup( window ); } /**
308309310311312313314315316317318
closePopup(); DialogWindow window = createDialogWindow( dockable.getComponent() ); window.setUndecorated( getMenuBehavior() == MenuBehavior.UNDECORATED_DIALOG ); window.setContent( getContent() ); window.open( dockable.getComponent() ); openPopup( window ); } /**