Examples of SearchDialog


Examples of com.tulskiy.musique.gui.dialogs.SearchDialog

            @Override
            public void actionPerformed(ActionEvent e) {
                PlaylistTable table = tabs.getSelectedTable();
                if (table == null)
                    return;
                new SearchDialog(table).setVisible(true);
            }
        }));
        editMenu.add("Remove Dead Items").addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
View Full Code Here

Examples of de.yaams.extensions.basemap.tiled.mapeditor.dialogs.SearchDialog

      cursorHighlight.setVisible(cursorMenuItem.isSelected());
    } else if (command.equals(Resources.getString("menu.map.resize"))) {
      ResizeDialog rd = new ResizeDialog(YaFrame.get(), this);
      rd.setVisible(true);
    } else if (command.equals(Resources.getString("menu.map.search"))) {
      SearchDialog sd = new SearchDialog(YaFrame.get(), currentMap);
      sd.setVisible(true);
    } else if (command.equals(Resources.getString("menu.help.about"))) {
      showAboutDialog();
    } else if (command.equals(Resources.getString("menu.edit.preferences"))) {
      ConfigurationDialog dialog = new ConfigurationDialog(YaFrame.get());
      dialog.configure();
View Full Code Here

Examples of org.eclipse.nebula.widgets.nattable.search.gui.SearchDialog

    public void run(final NatTable natTable, KeyEvent event) {
        context.natTable = natTable;
        setActiveContext();
        if (dialog == null) {
            dialog = new SearchDialog(context.natTable.getShell(),
                    new CellValueAsStringComparator<String>(),
                    context.modal ? SWT.NONE : SWT.APPLICATION_MODAL);
            dialog.setInput(context.natTable, context.dialogSettings);
        }
        dialog.open();
View Full Code Here

Examples of org.eclipse.search.internal.ui.SearchDialog

public class XVRWorkspaceSearch extends AbstractHandler {

  @Override
  public Object execute(ExecutionEvent event) throws ExecutionException {
    IWorkbenchWindow win = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
    SearchDialog sh = new SearchDialog(win, "xvr_search");
    sh.open();
    return null;
  }
View Full Code Here

Examples of tvbrowser.extras.searchplugin.SearchDialog

      JButton changeBt = new JButton(icon);
      changeBt.setToolTipText(mLocalizer.msg("edit", "Change search parameters"));
      changeBt.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent evt) {
          dlg.dispose();
          SearchDialog searchDialog = new SearchDialog(parentWindow);
          searchDialog.setSearchSettings(searchSettings);
          UiUtilities.centerAndShow(searchDialog);
        }
      });
      builder.addRelatedGap();
      builder.addFixed(changeBt);
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.