Statistics
| Branch: | Tag: | Revision:

root / src / gr / grnet / pithos / web / client / mysharedtree / MysharedTreeView.java @ 39f6d7b0

History | View | Annotate | Download (6.2 kB)

1
/*
2
 * Copyright 2011-2012 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.PithosDisclosurePanel;
40
import gr.grnet.pithos.web.client.TreeView;
41
import gr.grnet.pithos.web.client.foldertree.Folder;
42

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

    
55
public class MysharedTreeView extends Composite implements TreeView {
56

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

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

    
77
    static interface BasicResources extends CellTree.Resources {
78

    
79
        @Override
80
                @ImageOptions(flipRtl = true)
81
        @Source("gr/grnet/pithos/web/client/cellTreeClosedItem.png")
82
        ImageResource cellTreeClosedItem();
83

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

    
89
        @Override
90
                @ImageOptions(flipRtl = true)
91
        @Source("gr/grnet/pithos/web/client/cellTreeOpenItem.png")
92
        ImageResource cellTreeOpenItem();
93

    
94
        @Override
95
                @Source({"gr/grnet/pithos/web/client/PithosCellTreeBasic.css"})
96
        CellTree.Style cellTreeStyle();
97
        
98
        @Source("gr/grnet/pithos/web/client/cellTreeLoadingBasic.gif")
99
        @ImageOptions(repeatStyle=RepeatStyle.None)
100
        ImageResource cellTreeLoadingBasic();
101
    }
102

    
103
    public static interface Images extends Tree.Resources, FolderContextMenu.Images {
104

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

    
108
        @Source("gr/grnet/pithos/resources/folder22.png")
109
        public ImageResource folderYellow();
110

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

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

    
117
        @Source("gr/grnet/pithos/resources/myshared22.png")
118
        ImageResource myShared();
119

    
120
        @Source("gr/grnet/pithos/resources/folder_user.png")
121
        ImageResource sharedFolder();
122
    }
123

    
124
    static Images images = GWT.create(Images.class);
125

    
126
    static interface Templates extends SafeHtmlTemplates {
127
        public Templates INSTANCE = GWT.create(Templates.class);
128

    
129
        @Template("<span>{0}</span>")
130
        public SafeHtml nameSpan(String name);
131
      }
132

    
133
    interface Resources extends gr.grnet.pithos.web.client.PithosDisclosurePanel.Resources {
134
            @Override
135
                @Source("gr/grnet/pithos/resources/myshared22.png")
136
            ImageResource icon();
137
    }
138

    
139
    private MysharedTreeViewModel model;
140

    
141
    public MysharedTreeView(MysharedTreeViewModel viewModel) {
142
        this.model = viewModel;
143
        
144
        PithosDisclosurePanel panel = new PithosDisclosurePanel((Resources) GWT.create(Resources.class), "Shared by me", false);
145
        /*
146
         * Create the tree using the model. We use <code>null</code> as the default
147
         * value of the root node. The default value will be passed to
148
         * CustomTreeModel#getNodeInfo();
149
         */
150
        CellTree.Resources res = GWT.create(BasicResources.class);
151
        CellTree tree = new CellTree(model, null, res);
152
        tree.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.ENABLED);
153

    
154
        panel.add(tree);
155
        initWidget(panel);
156
    }
157

    
158

    
159
    @Override
160
        public Folder getSelection() {
161
       return model.getSelection();
162
    }
163

    
164
    public void updateFolder(Folder folder, boolean showfiles) {
165
        model.updateFolder(folder, showfiles);
166
    }
167

    
168
        public void updateRoot() {
169
                TreeNode root = ((CellTree) getWidget()).getRootTreeNode();
170
                root.setChildOpen(0, true);
171
                root.setChildOpen(0, false);
172
        }
173
}