Statistics
| Branch: | Tag: | Revision:

root / src / gr / grnet / pithos / web / client / othersharedtree / OtherSharedTreeView.java @ 969a4d94

History | View | Annotate | Download (5.5 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.othersharedtree;
37

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

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

    
53
public class OtherSharedTreeView extends Composite implements TreeView {
54

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

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

    
75
    static interface BasicResources extends CellTree.Resources {
76

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

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

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

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

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

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

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

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

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

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

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

    
117
        @Source("gr/grnet/pithos/resources/edit_user.png")
118
        ImageResource user();
119
    }
120

    
121
    static Images images = GWT.create(Images.class);
122

    
123
    static interface Templates extends SafeHtmlTemplates {
124
        public Templates INSTANCE = GWT.create(Templates.class);
125

    
126
        @Template("<span>{0}</span>")
127
        public SafeHtml nameSpan(String name);
128
      }
129

    
130
    private OtherSharedTreeViewModel model;
131

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

    
143
        initWidget(tree);
144
    }
145

    
146

    
147
    @Override
148
        public Folder getSelection() {
149
       return model.getSelection();
150
    }
151

    
152
    public void updateFolder(Folder folder, boolean showfiles) {
153
        model.updateFolder(folder, showfiles);
154
    }
155
}