Statistics
| Branch: | Tag: | Revision:

root / web_client / src / gr / grnet / pithos / web / client / mysharedtree / MysharedTreeView.java @ 0393c0ed

History | View | Annotate | Download (5.3 kB)

1
/*
2
 * Copyright 2011 GRNET S.A. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or
5
 * without modification, are permitted provided that the following
6
 * conditions are met:
7
 *
8
 *   1. Redistributions of source code must retain the above
9
 *      copyright notice, this list of conditions and the following
10
 *      disclaimer.
11
 *
12
 *   2. Redistributions in binary form must reproduce the above
13
 *      copyright notice, this list of conditions and the following
14
 *      disclaimer in the documentation and/or other materials
15
 *      provided with the distribution.
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
18
 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
21
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
24
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
 * POSSIBILITY OF SUCH DAMAGE.
29
 *
30
 * The views and conclusions contained in the software and
31
 * documentation are those of the authors and should not be
32
 * interpreted as representing official policies, either expressed
33
 * or implied, of GRNET S.A.
34
 */
35

    
36
package gr.grnet.pithos.web.client.mysharedtree;
37

    
38
import gr.grnet.pithos.web.client.FolderContextMenu;
39
import gr.grnet.pithos.web.client.foldertree.Folder;
40

    
41
import com.google.gwt.core.client.GWT;
42
import com.google.gwt.resources.client.ImageResource;
43
import com.google.gwt.resources.client.ImageResource.ImageOptions;
44
import com.google.gwt.safehtml.client.SafeHtmlTemplates;
45
import com.google.gwt.safehtml.shared.SafeHtml;
46
import com.google.gwt.user.cellview.client.CellTree;
47
import com.google.gwt.user.cellview.client.HasKeyboardSelectionPolicy.KeyboardSelectionPolicy;
48
import com.google.gwt.user.cellview.client.TreeNode;
49
import com.google.gwt.user.client.ui.Composite;
50
import com.google.gwt.user.client.ui.Tree;
51

    
52
public class MysharedTreeView extends Composite {
53

    
54
    public void updateChildren(Folder folder) {
55
        TreeNode root = ((CellTree) getWidget()).getRootTreeNode();
56
        updateChildren(root, folder);
57
    }
58

    
59
    private void updateChildren(TreeNode node, Folder folder) {
60
        for (int i=0; i<node.getChildCount(); i++) {
61
            if (node.isChildOpen(i)) {
62
                if (folder.equals(node.getChildValue(i))) {
63
                    node.setChildOpen(i, false, true);
64
                    node.setChildOpen(i, true, true);
65
                }
66
                else {
67
                    TreeNode n = node.setChildOpen(i, true);
68
                    updateChildren(n, folder);
69
                }
70
            }
71
        }
72
    }
73

    
74
    static interface BasicResources extends CellTree.Resources {
75

    
76
        @Override
77
                @ImageOptions(flipRtl = true)
78
        @Source("gr/grnet/pithos/web/client/cellTreeClosedItem.gif")
79
        ImageResource cellTreeClosedItem();
80

    
81
        @Override
82
                @ImageOptions(flipRtl = true)
83
        @Source("gr/grnet/pithos/web/client/cellTreeLoadingBasic.gif")
84
        ImageResource cellTreeLoading();
85

    
86
        @Override
87
                @ImageOptions(flipRtl = true)
88
        @Source("gr/grnet/pithos/web/client/cellTreeOpenItem.gif")
89
        ImageResource cellTreeOpenItem();
90

    
91
        @Override
92
                @Source({"gr/grnet/pithos/web/client/GssCellTreeBasic.css"})
93
        CellTree.Style cellTreeStyle();
94
    }
95

    
96
    public static interface Images extends Tree.Resources, FolderContextMenu.Images {
97

    
98
        @Source("gr/grnet/pithos/resources/folder_home.png")
99
        ImageResource home();
100

    
101
        @Source("gr/grnet/pithos/resources/2folder22.png")
102
        public ImageResource folderYellow();
103

    
104
        @Source("gr/grnet/pithos/resources/mimetypes/document.png")
105
        ImageResource document();
106

    
107
        @Source("gr/grnet/pithos/resources/othersshared.png")
108
        ImageResource othersShared();
109

    
110
        @Source("gr/grnet/pithos/resources/myshared22.png")
111
        ImageResource myShared();
112

    
113
        @Source("gr/grnet/pithos/resources/folder_user.png")
114
        ImageResource sharedFolder();
115
    }
116

    
117
    static Images images = GWT.create(Images.class);
118

    
119
    static interface Templates extends SafeHtmlTemplates {
120
        public Templates INSTANCE = GWT.create(Templates.class);
121

    
122
        @Template("<span>{0}</span>")
123
        public SafeHtml nameSpan(String name);
124
      }
125

    
126
    private MysharedTreeViewModel model;
127

    
128
    public MysharedTreeView(MysharedTreeViewModel viewModel) {
129
        this.model = viewModel;
130
        /*
131
         * Create the tree using the model. We use <code>null</code> as the default
132
         * value of the root node. The default value will be passed to
133
         * CustomTreeModel#getNodeInfo();
134
         */
135
        CellTree.Resources res = GWT.create(BasicResources.class);
136
        CellTree tree = new CellTree(model, null, res);
137
        tree.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.ENABLED);
138

    
139
        initWidget(tree);
140
    }
141

    
142

    
143
    public Folder getSelection() {
144
       return model.getSelection();
145
    }
146

    
147
    public void updateFolder(Folder folder, boolean showfiles) {
148
        model.updateFolder(folder, showfiles);
149
    }
150
}