fixing 'All tags' display version 2 - add a new css class named 'gss-tag'
[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.event.dom.client.ClickEvent;\r
22 import com.google.gwt.event.dom.client.ClickHandler;\r
23 import com.google.gwt.resources.client.ClientBundle;\r
24 import com.google.gwt.resources.client.ImageResource;\r
25 import com.google.gwt.user.client.Command;\r
26 import com.google.gwt.user.client.ui.AbstractImagePrototype;\r
27 import com.google.gwt.user.client.ui.MenuBar;\r
28 import com.google.gwt.user.client.ui.PopupPanel;\r
29 \r
30 /**\r
31  * The 'settings' menu implementation.\r
32  */\r
33 public class SettingsMenu extends PopupPanel implements ClickHandler {\r
34 \r
35         /**\r
36          * The widget's images.\r
37          */\r
38         private Images images;\r
39         private final MenuBar contextMenu;\r
40         /**\r
41          * An image bundle for this widgets images.\r
42          */\r
43         public interface Images extends ClientBundle,MessagePanel.Images {\r
44 \r
45                 /**\r
46                  * Will bundle the file 'advancedsettings.png' residing in the package\r
47                  * 'gr.ebs.gss.resources'.\r
48                  *\r
49                  * @return the image prototype\r
50                  */\r
51                 @Source("gr/ebs/gss/resources/advancedsettings.png")\r
52                 ImageResource preferences();\r
53 \r
54                 @Source("gr/ebs/gss/resources/lock.png")\r
55                 ImageResource credentials();\r
56 \r
57         }\r
58 \r
59         /**\r
60          * The widget's constructor.\r
61          *\r
62          * @param newImages the image bundle passed on by the parent object\r
63          */\r
64         public SettingsMenu(final Images newImages) {\r
65                 // The popup's constructor's argument is a boolean specifying that it\r
66                 // auto-close itself when the user clicks outside of it.\r
67                 super(true);\r
68                 setAnimationEnabled(true);\r
69                 images = newImages;\r
70 \r
71                 Command userCredentialsCommand = new Command(){\r
72                         @Override\r
73                         public void execute() {\r
74                                 CredentialsDialog dlg = new CredentialsDialog(newImages);\r
75                                 dlg.center();\r
76                         }\r
77                 };\r
78                 contextMenu = new MenuBar(true);\r
79 //              contextMenu.addItem("<span>" + newImages.preferences().getHTML() + "&nbsp;Preferences</span>", true, cmd);\r
80                 contextMenu.addItem("<span>" + AbstractImagePrototype.create(newImages.credentials()).getHTML() + "&nbsp;Show Credentials</span>", true, userCredentialsCommand);\r
81 \r
82                 add(contextMenu);\r
83                 // setStyleName("toolbarPopup");\r
84         }\r
85 \r
86         @Override\r
87         public void onClick(final ClickEvent event) {\r
88                 final SettingsMenu menu = new SettingsMenu(images);\r
89                 final int left = event.getRelativeElement().getAbsoluteLeft();\r
90                 final int top = event.getRelativeElement().getAbsoluteTop() + event.getRelativeElement().getOffsetHeight();\r
91                 menu.setPopupPosition(left, top);\r
92 \r
93                 menu.show();\r
94         }\r
95 \r
96 \r
97         /**\r
98          * Retrieve the contextMenu.\r
99          *\r
100          * @return the contextMenu\r
101          */\r
102         public MenuBar getContextMenu() {\r
103                 contextMenu.setAutoOpen(false);\r
104                 return contextMenu;\r
105         }\r
106 \r
107 \r
108 }\r