command line client fix create object using hashmaps
[pithos] / web_client / src / gr / grnet / pithos / web / client / foldertree / FolderTreeView.java
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.foldertree;
37
38 import com.google.gwt.core.client.GWT;
39 import com.google.gwt.resources.client.ImageResource;
40 import com.google.gwt.resources.client.ImageResource.ImageOptions;
41 import com.google.gwt.safehtml.client.SafeHtmlTemplates;
42 import com.google.gwt.safehtml.shared.SafeHtml;
43 import com.google.gwt.user.cellview.client.CellTree;
44 import com.google.gwt.user.cellview.client.HasKeyboardSelectionPolicy.KeyboardSelectionPolicy;
45 import com.google.gwt.user.cellview.client.TreeNode;
46 import com.google.gwt.user.client.Command;
47 import com.google.gwt.user.client.ui.Composite;
48 import com.google.gwt.user.client.ui.Tree;
49 import gr.grnet.pithos.web.client.FolderContextMenu;
50
51 public class FolderTreeView extends Composite {
52
53     public void updateChildren(Folder folder) {
54         TreeNode root = ((CellTree) getWidget()).getRootTreeNode();
55         updateChildren(root, folder);
56     }
57
58     private void updateChildren(TreeNode node, Folder folder) {
59         for (int i=0; i<node.getChildCount(); i++) {
60             if (node.isChildOpen(i)) {
61                 if (folder.equals(node.getChildValue(i))) {
62                     node.setChildOpen(i, false, true);
63                     node.setChildOpen(i, true, true);
64                 }
65                 else {
66                     TreeNode n = node.setChildOpen(i, true);
67                     updateChildren(n, folder);
68                 }
69             }
70         }
71     }
72
73     static interface BasicResources extends CellTree.Resources {
74
75         @Override
76                 @ImageOptions(flipRtl = true)
77         @Source("gr/grnet/pithos/web/client/cellTreeClosedItem.gif")
78         ImageResource cellTreeClosedItem();
79
80         @Override
81                 @ImageOptions(flipRtl = true)
82         @Source("gr/grnet/pithos/web/client/cellTreeLoadingBasic.gif")
83         ImageResource cellTreeLoading();
84
85         @Override
86                 @ImageOptions(flipRtl = true)
87         @Source("gr/grnet/pithos/web/client/cellTreeOpenItem.gif")
88         ImageResource cellTreeOpenItem();
89
90         @Override
91                 @Source({"gr/grnet/pithos/web/client/GssCellTreeBasic.css"})
92         CellTree.Style cellTreeStyle();
93     }
94
95     public static interface Images extends Tree.Resources, FolderContextMenu.Images {
96
97         @Source("gr/grnet/pithos/resources/folder_home.png")
98         ImageResource home();
99
100         @Source("gr/grnet/pithos/resources/2folder22.png")
101         public ImageResource folderYellow();
102
103         @Source("gr/grnet/pithos/resources/mimetypes/document.png")
104         ImageResource document();
105
106         @Source("gr/grnet/pithos/resources/othersshared.png")
107         ImageResource othersShared();
108
109         @Source("gr/grnet/pithos/resources/myshared22.png")
110         ImageResource myShared();
111
112         @Source("gr/grnet/pithos/resources/folder_user.png")
113         ImageResource sharedFolder();
114
115         @Source("gr/grnet/pithos/resources/trash.png")
116         ImageResource trash();
117     }
118
119     static Images images = GWT.create(Images.class);
120
121     static interface Templates extends SafeHtmlTemplates {
122         public Templates INSTANCE = GWT.create(Templates.class);
123
124         @Template("<span>{0}</span>")
125         public SafeHtml nameSpan(String name);
126       }
127
128     private FolderTreeViewModel model;
129
130     public FolderTreeView(FolderTreeViewModel viewModel) {
131         this.model = viewModel;
132         /*
133          * Create the tree using the model. We use <code>null</code> as the default
134          * value of the root node. The default value will be passed to
135          * CustomTreeModel#getNodeInfo();
136          */
137         CellTree.Resources res = GWT.create(BasicResources.class);
138         CellTree tree = new CellTree(model, null, res);
139         tree.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.ENABLED);
140
141         initWidget(tree);
142     }
143
144
145     public Folder getSelection() {
146        return model.getSelection();
147     }
148
149     public void updateFolder(Folder folder, boolean showfiles, Command callback) {
150         model.updateFolder(folder, showfiles, callback);
151     }
152 }