Package org.rssowl.ui.internal.dialogs

Examples of org.rssowl.ui.internal.dialogs.SearchMarkDialog.open()


        break;
    }

    /* Create and Show SM Dialog */
    SearchMarkDialog dialog = new SearchMarkDialog(fParent.getShell(), OwlUI.getBookMarkExplorerSelection(), null, conditions, true);
    dialog.open();
  }

  void doFilter(final NewsFilter.Type type, boolean refresh, boolean saveSettings) {
    fFeedView.getFilter().setType(type);
    fFilterLabel.setText(type.getName());
View Full Code Here


    internalRun();
  }

  private void internalRun() throws PersistenceException {
    SearchMarkDialog dialog = new SearchMarkDialog(fShell, getParent(), fPosition);
    dialog.open();
  }

  /*
   * @see org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action.IAction,
   * org.eclipse.jface.viewers.ISelection)
 
View Full Code Here

    internalRun();
  }

  private void internalRun() throws PersistenceException {
    SearchMarkDialog dialog = new SearchMarkDialog(fShell, getParent(), fPosition);
    dialog.open();
  }

  /*
   * @see org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action.IAction,
   * org.eclipse.jface.viewers.ISelection)
 
View Full Code Here

      }
    }

    /* Create and Show SM Dialog */
    SearchMarkDialog dialog = new SearchMarkDialog(fParent.getShell(), OwlUI.getBookMarkExplorerSelection(), null, conditions, true);
    dialog.open();
  }

  private void onFilter(NewsFilter.Type type) {
    doFilter(type, true, true);
    EditorUtils.updateFilterAndGrouping();
View Full Code Here

      }
    }

    /* Create and Show SM Dialog */
    SearchMarkDialog dialog = new SearchMarkDialog(fParent.getShell(), OwlUI.getBookMarkExplorerSelection(), null, conditions, true);
    dialog.open();
  }

  private void onFilter(NewsFilter.Type type) {
    doFilter(type, true, true);
    EditorUtils.updateFilterAndGrouping(fFeedView);
View Full Code Here

      ISearchField locationField = factory.createSearchField(INews.LOCATION, INews.class.getName());
      conditions.add(factory.createSearchCondition(locationField, SearchSpecifier.IS, ModelUtils.toPrimitive(Collections.singletonList((IFolderChild) folder))));

      SearchMarkDialog dialog = new SearchMarkDialog(fTargetPart.getSite().getShell(), folder.getParent(), folder, conditions, true, folder.getProperties());
      if (dialog.open() == IDialogConstants.OK_ID)
        locationSearch = dialog.getSearchMark();
      else
        return;
    }
View Full Code Here

    internalRun();
  }

  private void internalRun() throws PersistenceException {
    SearchMarkDialog dialog = new SearchMarkDialog(fShell, OwlUI.getSelectedParent(fParent), fPosition);
    dialog.open();
  }

  /*
   * @see org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action.IAction,
   * org.eclipse.jface.viewers.ISelection)
 
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.