Package org.rssowl.ui.internal.util

Examples of org.rssowl.ui.internal.util.FolderChildCheckboxTree


  public void createControl(Composite parent) {
    Composite container = new Composite(parent, SWT.NONE);
    container.setLayout(new GridLayout(1, false));

    /* Viewer for Folder Child Selection */
    fFolderChildTree = new FolderChildCheckboxTree(container);
    fFolderChildTree.getViewer().setInput(CoreUtils.loadRootFolders());
    ((GridData) fFolderChildTree.getViewer().getTree().getLayoutData()).heightHint = 190;
    fFolderChildTree.setAllChecked(true);

    /* Select All / Deselect All */
 
View Full Code Here


    /* Container */
    Composite container = new Composite(parent, SWT.NONE);
    container.setLayout(new GridLayout(1, false));

    /* Viewer for Folder Child Selection */
    fFolderChildTree = new FolderChildCheckboxTree(container);
    if (!isWelcome)
      ((GridData) fFolderChildTree.getViewer().getTree().getLayoutData()).heightHint = 140;
    fViewer = fFolderChildTree.getViewer();

    /* Open Preview on Doubleclick */
 
View Full Code Here

    /* Container */
    Composite container = new Composite(parent, SWT.NONE);
    container.setLayout(new GridLayout(1, false));

    /* Viewer for Folder Child Selection */
    fFolderChildTree = new FolderChildCheckboxTree(container);
    if (!isWelcome)
      ((GridData) fFolderChildTree.getViewer().getTree().getLayoutData()).heightHint = 140;
    fViewer = fFolderChildTree.getViewer();

    /* Open Preview on Doubleclick */
 
View Full Code Here

  public void createControl(Composite parent) {
    Composite container = new Composite(parent, SWT.NONE);
    container.setLayout(new GridLayout(1, false));

    /* Viewer for Folder Child Selection */
    fFolderChildTree = new FolderChildCheckboxTree(container, true);
    fViewer = fFolderChildTree.getViewer();

    /* Filter out any non Bookmarks and empty folders */
    fViewer.addFilter(new ViewerFilter() {
      @Override
View Full Code Here

TOP

Related Classes of org.rssowl.ui.internal.util.FolderChildCheckboxTree

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.