Package org.eclipse.jface.resource

Examples of org.eclipse.jface.resource.LocalResourceManager


    NewBookMarkDialog(Shell shell, IFolder folder, String initialLinkValue) {
      super(shell);
      fFolder = folder;
      fInitialLinkValue = initialLinkValue;
      fResources = new LocalResourceManager(JFaceResources.getResources());
    }
View Full Code Here


   * @param link
   */
  public LoginDialog(Shell parentShell, URI link) {
    super(parentShell);
    fLink = link;
    fResources = new LocalResourceManager(JFaceResources.getResources());
    fCredProvider = Owl.getConnectionService().getCredentialsProvider(link);
  }
View Full Code Here

   * @param conditions The initial conditions this List is showing.
   */
  public SearchConditionList(Composite parent, int style, List<ISearchCondition> conditions) {
    super(parent, style | SWT.V_SCROLL);
    fItems = new ArrayList<SearchConditionItem>();
    fResources = new LocalResourceManager(JFaceResources.getResources(), this);

    initResources();
    initComponents(conditions);
  }
View Full Code Here

   * @param selectedSet
   */
  public ManageSetsDialog(Shell parentShell, IFolder selectedSet) {
    super(parentShell);
    fSelectedSet = selectedSet;
    fResources = new LocalResourceManager(JFaceResources.getResources());
    fCacheService = Controller.getDefault().getCacheService();
  }
View Full Code Here

   * @param owner
   * @param path
   * @return Image
   */
  public static Image getImage(Control owner, String path) {
    LocalResourceManager manager = new LocalResourceManager(JFaceResources.getResources(), owner);
    return getImage(manager, path);
  }
View Full Code Here

    super(shell);
    fParent = parent;
    fPosition = position;
    fInitialMatchAllConditions = matchAllConditions;
    fInitialSearchConditions = conditions;
    fResources = new LocalResourceManager(JFaceResources.getResources());
    fDialogSettings = Activator.getDefault().getDialogSettings();
    fFirstTimeOpen = (fDialogSettings.getSection(SETTINGS_SECTION) == null);

    /* Use default Parent if required */
    if (fParent == null)
View Full Code Here

    NewBookMarkDialog(Shell shell, IFolder folder, String initialLinkValue) {
      super(shell);
      fFolder = folder;
      fInitialLinkValue = initialLinkValue;
      fResources = new LocalResourceManager(JFaceResources.getResources());
    }
View Full Code Here

  /**
   * @param indicateState
   */
  public BookMarkLabelProvider(boolean indicateState) {
    fIndicateState = indicateState;
    fResources = new LocalResourceManager(JFaceResources.getResources());
    fNewsService = Controller.getDefault().getNewsService();
    createResources();
  }
View Full Code Here

  /* Pre-Cache some Fonts being used */
  private Font fBoldFont;

  /** Creates a new instance of this LabelProvider */
  public NewsTableLabelProvider() {
    fResources = new LocalResourceManager(JFaceResources.getResources());
    createResources();
  }
View Full Code Here

   */
  public LoginDialog(Shell parentShell, URI link, String realm) {
    super(parentShell);
    fLink = link;
    fRealm = realm;
    fResources = new LocalResourceManager(JFaceResources.getResources());
    fCredProvider = Owl.getConnectionService().getCredentialsProvider(link);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jface.resource.LocalResourceManager

Copyright © 2018 www.massapicom. 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.