Properly cancel the upload for both gears-enabled and regular file uploads. This...
[pithos] / src / gr / ebs / gss / client / SettingsMenu.java
1 /*\r
2  * Copyright 2007, 2008, 2009 Electronic Business Systems Ltd.\r
3  *\r
4  * This file is part of GSS.\r
5  *\r
6  * GSS is free software: you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation, either version 3 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * GSS is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with GSS.  If not, see <http://www.gnu.org/licenses/>.\r
18  */\r
19 package gr.ebs.gss.client;\r
20 \r
21 import com.google.gwt.user.client.Command;\r
22 import com.google.gwt.user.client.ui.AbstractImagePrototype;\r
23 import com.google.gwt.user.client.ui.ClickListener;\r
24 import com.google.gwt.user.client.ui.ImageBundle;\r
25 import com.google.gwt.user.client.ui.MenuBar;\r
26 import com.google.gwt.user.client.ui.PopupPanel;\r
27 import com.google.gwt.user.client.ui.Widget;\r
28 \r
29 /**\r
30  * The 'settings' menu implementation.\r
31  */\r
32 public class SettingsMenu extends PopupPanel implements ClickListener {\r
33 \r
34         /**\r
35          * The widget's images.\r
36          */\r
37         private Images images;\r
38         private final MenuBar contextMenu;\r
39         /**\r
40          * An image bundle for this widgets images.\r
41          */\r
42         public interface Images extends ImageBundle {\r
43 \r
44                 /**\r
45                  * Will bundle the file 'advancedsettings.png' residing in the package\r
46                  * 'gr.ebs.gss.resources'.\r
47                  *\r
48                  * @return the image prototype\r
49                  */\r
50                 @Resource("gr/ebs/gss/resources/advancedsettings.png")\r
51                 AbstractImagePrototype preferences();\r
52 \r
53                 @Resource("gr/ebs/gss/resources/lock.png")\r
54                 AbstractImagePrototype credentials();\r
55 \r
56         }\r
57 \r
58         /**\r
59          * The widget's constructor.\r
60          *\r
61          * @param newImages the image bundle passed on by the parent object\r
62          */\r
63         public SettingsMenu(final Images newImages) {\r
64                 // The popup's constructor's argument is a boolean specifying that it\r
65                 // auto-close itself when the user clicks outside of it.\r
66                 super(true);\r
67                 setAnimationEnabled(true);\r
68                 images = newImages;\r
69 \r
70                 Command userCredentialsCommand = new Command(){\r
71                         /* (non-Javadoc)\r
72                          * @see com.google.gwt.user.client.Command#execute()\r
73                          */\r
74                         public void execute() {\r
75                                 CredentialsDialog dlg = new CredentialsDialog();\r
76                                 dlg.center();\r
77                         }\r
78                 };\r
79                 contextMenu = new MenuBar(true);\r
80 //              contextMenu.addItem("<span>" + newImages.preferences().getHTML() + "&nbsp;Preferences</span>", true, cmd);\r
81                 contextMenu.addItem("<span>" + newImages.credentials().getHTML() + "&nbsp;Show Credentials</span>", true, userCredentialsCommand);\r
82 \r
83                 add(contextMenu);\r
84                 // setStyleName("toolbarPopup");\r
85         }\r
86 \r
87         /*\r
88          * (non-Javadoc)\r
89          *\r
90          * @see com.google.gwt.user.client.ui.ClickListener#onClick(com.google.gwt.user.client.ui.Widget)\r
91          */\r
92         public void onClick(final Widget sender) {\r
93                 final SettingsMenu menu = new SettingsMenu(images);\r
94                 final int left = sender.getAbsoluteLeft();\r
95                 final int top = sender.getAbsoluteTop() + sender.getOffsetHeight();\r
96                 menu.setPopupPosition(left, top);\r
97 \r
98                 menu.show();\r
99         }\r
100 \r
101 \r
102         /**\r
103          * Retrieve the contextMenu.\r
104          *\r
105          * @return the contextMenu\r
106          */\r
107         public MenuBar getContextMenu() {\r
108                 contextMenu.setAutoOpen(false);\r
109                 return contextMenu;\r
110         }\r
111 \r
112 \r
113 }\r