Examples of show()


Examples of com.google.gwt.user.client.ui.PopupPanel.show()

        horizontalPanel.add( enumDropDown );
        horizontalPanel.add( okButton );

        popup.add( horizontalPanel );

        popup.show();

    }

    private EnumDropDown getEnumDropDown(final BaseSingleFieldConstraint constraint,
                                         SuggestionCompletionEngine sce,
View Full Code Here

Examples of com.google.speedtracer.client.view.HoveringPopup.show()

                // go straight to the popup help
                HoveringPopup popup = Monitor.getPopup();
                PopupContentProvider content = menuSource.getPopupContent();
                if (content != null) {
                  popup.setContentProvider(content);
                  popup.show(mX, mY);
                }
              }
            }

          });
View Full Code Here

Examples of com.google.speedtracer.client.view.InlineMenu.show()

              if (items != null && items.length > 0) {
                // load the inline menu
                Monitor.getInlineMenu().loadMenu(menuSource, null);
                InlineMenu inlineMenu = Monitor.getInlineMenu();
                if (!inlineMenu.isVisible()) {
                  inlineMenu.show(mX, mY);
                }
              } else {
                // go straight to the popup help
                HoveringPopup popup = Monitor.getPopup();
                PopupContentProvider content = menuSource.getPopupContent();
View Full Code Here

Examples of com.googlecode.mgwt.ui.client.widget.dialog.options.OptionsDialog.show()

      }
      button.addTapHandler(new InternalTouchHandler(count, optionsDialog, callback));
      optionsDialog.add(button);
    }
    optionsDialog.setPanelToOverlay(widgetToCover);
    optionsDialog.show();
    return optionsDialog;
  }

  /**
   * The option Callback interface
View Full Code Here

Examples of com.gwtext.client.widgets.Window.show()

        } );
        p.add( ok );

        w.setPosition( e.getPageX(),
                       e.getPageY() );
        w.show();

    }

    private void renumber(Record[] rs) {
        for ( int i = 0; i < rs.length; i++ ) {
View Full Code Here

Examples of com.gwtextux.client.widgets.window.ToastWindow.show()

    ToastWindow tw = new ToastWindow();
    tw.setClosable( false );
    tw.setTitle( title );
    tw.setIconCls( "information" );
    tw.setMessage( message );
    tw.show();
  }
}
View Full Code Here

Examples of com.ibm.richtext.awtui.TextFrame.show()

    private static void makeFrame(MConstText text, String title) {

        TextFrame frame = new TextFrame(text, title,
                Toolkit.getDefaultToolkit().getSystemClipboard());
        frame.setSize(550, 700);
        frame.show();
        fgListener.listenToFrame(frame);
    }
}
View Full Code Here

Examples of com.intellij.analysis.BaseAnalysisActionDialog.show()

        @Override
        protected Action[] createActions() {
          return new Action[]{getOKAction(), getCancelAction(), getHelpAction()};
        }
      };
    dlg.show();
    if (!dlg.isOK()) {
      canceled();
      return;
    }
    final int oldScopeType = uiOptions.SCOPE_TYPE;
View Full Code Here

Examples of com.intellij.codeInsight.actions.LayoutProjectCodeDialog.show()

                } else {
                    text = CodeInsightBundle.message("process.scope.project", projectContext.getPresentableUrl());
                }
                LayoutProjectCodeDialog dialog
                        = new LayoutProjectCodeDialog(project, null, CodeInsightBundle.message("process.optimize.imports"), text, false);
                dialog.show();
                if (!dialog.isOK()) return;
                if (moduleContext != null) {
                    new OptimizeImportsProcessor(project, moduleContext).run();
                } else {
                    new OptimizeImportsProcessor(projectContext).run();
View Full Code Here

Examples of com.intellij.find.findUsages.AbstractFindUsagesDialog.show()

  }

  private void showDialogAndFindUsages(@NotNull FindUsagesHandler handler,
      @NotNull RelativePoint popupPosition, Editor editor, int maxUsages) {
    AbstractFindUsagesDialog dialog = handler.getFindUsagesDialog(false, false, false);
    dialog.show();
    if (dialog.isOK()) {
      dialog.calcFindUsagesOptions();
      showElementUsages(handler, editor, popupPosition, maxUsages, getDefaultOptions(handler));
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.