Statistics
| Branch: | Tag: | Revision:

root / src / gr / grnet / pithos / web / client / grouptree / UserContextMenu.java @ 1238d28d

History | View | Annotate | Download (2.8 kB)

1 d5c6298f Christos Stathis
/*
2 cae2a8db Christos Stathis
 * Copyright 2011-2012 GRNET S.A. All rights reserved.
3 d5c6298f Christos Stathis
 *
4 d5c6298f Christos Stathis
 * Redistribution and use in source and binary forms, with or
5 d5c6298f Christos Stathis
 * without modification, are permitted provided that the following
6 d5c6298f Christos Stathis
 * conditions are met:
7 d5c6298f Christos Stathis
 *
8 d5c6298f Christos Stathis
 *   1. Redistributions of source code must retain the above
9 d5c6298f Christos Stathis
 *      copyright notice, this list of conditions and the following
10 d5c6298f Christos Stathis
 *      disclaimer.
11 d5c6298f Christos Stathis
 *
12 d5c6298f Christos Stathis
 *   2. Redistributions in binary form must reproduce the above
13 d5c6298f Christos Stathis
 *      copyright notice, this list of conditions and the following
14 d5c6298f Christos Stathis
 *      disclaimer in the documentation and/or other materials
15 d5c6298f Christos Stathis
 *      provided with the distribution.
16 d5c6298f Christos Stathis
 *
17 d5c6298f Christos Stathis
 * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
18 d5c6298f Christos Stathis
 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 d5c6298f Christos Stathis
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 d5c6298f Christos Stathis
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
21 d5c6298f Christos Stathis
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 d5c6298f Christos Stathis
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 d5c6298f Christos Stathis
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
24 d5c6298f Christos Stathis
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25 d5c6298f Christos Stathis
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 d5c6298f Christos Stathis
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27 d5c6298f Christos Stathis
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 d5c6298f Christos Stathis
 * POSSIBILITY OF SUCH DAMAGE.
29 d5c6298f Christos Stathis
 *
30 d5c6298f Christos Stathis
 * The views and conclusions contained in the software and
31 d5c6298f Christos Stathis
 * documentation are those of the authors and should not be
32 d5c6298f Christos Stathis
 * interpreted as representing official policies, either expressed
33 d5c6298f Christos Stathis
 * or implied, of GRNET S.A.
34 d5c6298f Christos Stathis
 */
35 4baffab1 Christos Stathis
package gr.grnet.pithos.web.client.grouptree;
36 d5c6298f Christos Stathis
37 4baffab1 Christos Stathis
import gr.grnet.pithos.web.client.Pithos;
38 4baffab1 Christos Stathis
import gr.grnet.pithos.web.client.commands.RemoveUserCommand;
39 4baffab1 Christos Stathis
import gr.grnet.pithos.web.client.grouptree.GroupTreeView.Images;
40 d5c6298f Christos Stathis
41 4baffab1 Christos Stathis
import com.google.gwt.user.client.ui.AbstractImagePrototype;
42 4baffab1 Christos Stathis
import com.google.gwt.user.client.ui.MenuBar;
43 4baffab1 Christos Stathis
import com.google.gwt.user.client.ui.MenuItem;
44 4baffab1 Christos Stathis
import com.google.gwt.user.client.ui.PopupPanel;
45 d5c6298f Christos Stathis
46 4baffab1 Christos Stathis
/**
47 4baffab1 Christos Stathis
 * The 'Folder Context' menu implementation.
48 4baffab1 Christos Stathis
 */
49 4baffab1 Christos Stathis
public class UserContextMenu extends PopupPanel {
50 d5c6298f Christos Stathis
51 4baffab1 Christos Stathis
        /**
52 4baffab1 Christos Stathis
         * The widget's images.
53 4baffab1 Christos Stathis
         */
54 4baffab1 Christos Stathis
        private final GroupTreeView.Images images;
55 d5c6298f Christos Stathis
56 4baffab1 Christos Stathis
        /**
57 4baffab1 Christos Stathis
         * The widget's constructor.
58 4baffab1 Christos Stathis
         *
59 4baffab1 Christos Stathis
         * @param newImages the image bundle passed on by the parent object
60 4baffab1 Christos Stathis
         */
61 4baffab1 Christos Stathis
        public UserContextMenu(Pithos app, final Images newImages, User user) {
62 4baffab1 Christos Stathis
                // The popup's constructor's argument is a boolean specifying that it
63 4baffab1 Christos Stathis
                // auto-close itself when the user clicks outside of it.
64 4baffab1 Christos Stathis
                super(true);
65 4baffab1 Christos Stathis
                setAnimationEnabled(true);
66 4baffab1 Christos Stathis
                images = newImages;
67 4baffab1 Christos Stathis
        MenuBar contextMenu = new MenuBar(true);
68 4baffab1 Christos Stathis
        
69 4baffab1 Christos Stathis
        MenuItem removeUser = new MenuItem("<span>" + AbstractImagePrototype.create(images.delete()).getHTML() + "&nbsp;Remove User</span>", true, new RemoveUserCommand(app, this, user));
70 4baffab1 Christos Stathis
        contextMenu.addItem(removeUser);
71 d5c6298f Christos Stathis
72 4baffab1 Christos Stathis
        add(contextMenu);
73 4baffab1 Christos Stathis
        }
74 d5c6298f Christos Stathis
}