Statistics
| Branch: | Tag: | Revision:

root / src / gr / grnet / pithos / web / client / tagtree / TagTreeView.java @ 969a4d94

History | View | Annotate | Download (4.1 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.tagtree;
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.client.ui.Composite;
46
import com.google.gwt.user.client.ui.Tree;
47
import gr.grnet.pithos.web.client.FolderContextMenu;
48

    
49
public class TagTreeView extends Composite {
50

    
51
    static interface BasicResources extends CellTree.Resources {
52

    
53
        @Override
54
                @ImageOptions(flipRtl = true)
55
        @Source("gr/grnet/pithos/web/client/cellTreeClosedItem.gif")
56
        ImageResource cellTreeClosedItem();
57

    
58
        @Override
59
                @ImageOptions(flipRtl = true)
60
        @Source("gr/grnet/pithos/web/client/cellTreeLoadingBasic.gif")
61
        ImageResource cellTreeLoading();
62

    
63
        @Override
64
                @ImageOptions(flipRtl = true)
65
        @Source("gr/grnet/pithos/web/client/cellTreeOpenItem.gif")
66
        ImageResource cellTreeOpenItem();
67

    
68
        @Override
69
                @Source({"gr/grnet/pithos/web/client/PithosCellTreeBasic.css"})
70
        CellTree.Style cellTreeStyle();
71
    }
72

    
73
    static interface Images extends Tree.Resources, FolderContextMenu.Images {
74

    
75
        @Source("gr/grnet/pithos/resources/home22.png")
76
        ImageResource home();
77

    
78
        @Source("gr/grnet/pithos/resources/info.png")
79
        public ImageResource tag();
80
    }
81

    
82
    static Images images = GWT.create(Images.class);
83

    
84
    static interface Templates extends SafeHtmlTemplates {
85
        public Templates INSTANCE = GWT.create(Templates.class);
86

    
87
        @Template("<span>{0}</span>")
88
        public SafeHtml nameSpan(String name);
89
      }
90

    
91
    private TagTreeViewModel model;
92

    
93
    public TagTreeView(TagTreeViewModel viewModel) {
94
        this.model = viewModel;
95
        /*
96
         * Create the tree using the model. We use <code>null</code> as the default
97
         * value of the root node. The default value will be passed to
98
         * CustomTreeModel#getNodeInfo();
99
         */
100
        CellTree.Resources res = GWT.create(BasicResources.class);
101
        CellTree tree = new CellTree(model, null, res);
102

    
103
        tree.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.ENABLED);
104

    
105
        initWidget(tree);
106
    }
107

    
108

    
109
    public Tag getSelection() {
110
       return model.getSelection();
111
    }
112

    
113
    public void updateTag(Tag tag) {
114
        model.updateTag(tag);
115
    }
116
}