Statistics
| Branch: | Tag: | Revision:

root / src / gr / grnet / pithos / web / client / othersharedtree / OtherSharedTreeView.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.othersharedtree;
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.ClientBundle.Source;
46
import com.google.gwt.resources.client.ImageResource.ImageOptions;
47
import com.google.gwt.resources.client.ImageResource.RepeatStyle;
48
import com.google.gwt.safehtml.client.SafeHtmlTemplates;
49
import com.google.gwt.safehtml.shared.SafeHtml;
50
import com.google.gwt.user.cellview.client.CellTree;
51
import com.google.gwt.user.cellview.client.HasKeyboardSelectionPolicy.KeyboardSelectionPolicy;
52
import com.google.gwt.user.cellview.client.TreeNode;
53
import com.google.gwt.user.client.ui.Composite;
54
import com.google.gwt.user.client.ui.Tree;
55

    
56
public class OtherSharedTreeView extends Composite implements TreeView {
57

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

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

    
78
    static interface BasicResources extends CellTree.Resources {
79

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

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

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

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

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

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

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

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

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

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

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

    
124
        @Source("gr/grnet/pithos/resources/edit_user.png")
125
        ImageResource user();
126
    }
127

    
128
    static Images images = GWT.create(Images.class);
129

    
130
    static interface Templates extends SafeHtmlTemplates {
131
        public Templates INSTANCE = GWT.create(Templates.class);
132

    
133
        @Template("<span>{0}</span>")
134
        public SafeHtml nameSpan(String name);
135
      }
136

    
137
    interface Resources extends gr.grnet.pithos.web.client.PithosDisclosurePanel.Resources {
138
            @Override
139
                @Source("gr/grnet/pithos/resources/othersshared.png")
140
            ImageResource icon();
141
    }
142

    
143
    private OtherSharedTreeViewModel model;
144

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

    
158
        panel.add(tree);
159
        initWidget(panel);
160
    }
161

    
162

    
163
    @Override
164
        public Folder getSelection() {
165
       return model.getSelection();
166
    }
167

    
168
    public void updateFolder(Folder folder, boolean showfiles) {
169
        model.updateFolder(folder, showfiles);
170
    }
171
}