Examples of showPopup()


Examples of com.dci.intellij.dbn.common.about.ui.AboutComponent.showPopup()

    public void actionPerformed(AnActionEvent e) {
        Project project = ActionUtil.getProject(e);
        if (project != null) {
            AboutComponent aboutComponent = new AboutComponent();
            aboutComponent.showPopup(project);
        }
    }
}
View Full Code Here

Examples of com.dci.intellij.dbn.data.editor.ui.TextFieldPopupProviderForm.showPopup()

                       } catch (InterruptedException e) {
                           e.printStackTrace();
                       }

                       if (!cell.isDisposed() && cell.isEditing()) {
                           app.showPopup();
                       }
                   }
               };
               popupThread.start();
        }
View Full Code Here

Examples of com.dci.intellij.dbn.data.editor.ui.TextFieldPopupProviderForm.showPopup()

            } else {
                popupProviderForm = getEditorComponent().getPopupProvider(keyEvent);
                if (popupProviderForm != null) {
                    getEditorComponent().disposeActivePopup();
                    popupProviderForm.showPopup();
                } else {
                    super.keyPressed(keyEvent);
                }
            }
        }
View Full Code Here

Examples of javax.swing.JComboBox.showPopup()

    public void popupMenuCanceled(PopupMenuEvent e) {
      JComboBox cmb = (JComboBox) e.getSource();
      stateCmb = true;
      // JPopupMenu is long now, so repop
      cmb.showPopup();

    }

    public void popupMenuWillBecomeInvisible(PopupMenuEvent e) {
      stateCmb = false;
View Full Code Here

Examples of javax.swing.JComboBox.showPopup()

        abstract void selectValue(final BasicComboBoxUI ui);
       
        public void actionPerformed(ActionEvent e) {
            JComboBox comboBox = (JComboBox)e.getSource();
            if (!comboBox.isPopupVisible()) {
                comboBox.showPopup();
            } else {
                BasicComboBoxUI ui = ((BasicComboBoxUI)comboBox.getUI());
                JList popupList = ui.popup.getList();
                Action action = popupList.getActionMap().get(command);
                if (action != null) {
View Full Code Here

Examples of javax.swing.JComboBox.showPopup()

        abstract void selectValue(final BasicComboBoxUI ui);
       
        public void actionPerformed(ActionEvent e) {
            JComboBox comboBox = (JComboBox)e.getSource();
            if (!comboBox.isPopupVisible()) {
                comboBox.showPopup();
            } else {
                BasicComboBoxUI ui = ((BasicComboBoxUI)comboBox.getUI());
                JList popupList = ui.popup.getList();
                Action action = popupList.getActionMap().get(command);
                if (action != null) {
View Full Code Here

Examples of javax.swing.JComboBox.showPopup()

          public void mouseExited(MouseEvent arg0) {
          }

          public void mousePressed(MouseEvent arg0) {
            combo.setModel(new DefaultComboBoxModel(field.getOptions(null)));
            combo.showPopup();
          }

          public void mouseReleased(MouseEvent arg0) {
          }});
       
View Full Code Here

Examples of lcmc.common.ui.Info.showPopup()

                final TreePath selPath = tree.getPathForLocation(e.getX(), e.getY());
                if (selRow != -1 && e.getButton() > 1) {
                    final Info nodeInfo =
                            (Info) ((DefaultMutableTreeNode) selPath.getLastPathComponent()).getUserObject();
                    if (nodeInfo != null) {
                        nodeInfo.showPopup(tree, e.getX(), e.getY());
                        tree.setSelectionPath(selPath);
                    }
                }
            }
View Full Code Here

Examples of org.dyno.visual.swing.widgets.JPopupMenuAdapter.showPopup()

        popup.add(target.getParentContainer());
      else
        popup.add(target.getParentContainer(), insert_index);
      target.requestNewName();
      popupAdapter.hidePopup();
      popupAdapter.showPopup();
    }
    return true;
  }
}
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.