Fixed redirect for login url
[pithos-web-client] / src / gr / grnet / pithos / web / client / AbstractPropertiesDialog.java
1 /*\r
2  * Copyright 2011 GRNET S.A. All rights reserved.\r
3  *\r
4  * Redistribution and use in source and binary forms, with or\r
5  * without modification, are permitted provided that the following\r
6  * conditions are met:\r
7  *\r
8  *   1. Redistributions of source code must retain the above\r
9  *      copyright notice, this list of conditions and the following\r
10  *      disclaimer.\r
11  *\r
12  *   2. Redistributions in binary form must reproduce the above\r
13  *      copyright notice, this list of conditions and the following\r
14  *      disclaimer in the documentation and/or other materials\r
15  *      provided with the distribution.\r
16  *\r
17  * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS\r
18  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
20  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR\r
21  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\r
24  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\r
25  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\r
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\r
27  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
28  * POSSIBILITY OF SUCH DAMAGE.\r
29  *\r
30  * The views and conclusions contained in the software and\r
31  * documentation are those of the authors and should not be\r
32  * interpreted as representing official policies, either expressed\r
33  * or implied, of GRNET S.A.\r
34  */\r
35 package gr.grnet.pithos.web.client;\r
36 \r
37 import com.google.gwt.dom.client.NativeEvent;\r
38 import com.google.gwt.event.dom.client.KeyCodes;\r
39 import com.google.gwt.user.client.Event.NativePreviewEvent;\r
40 import com.google.gwt.user.client.ui.DialogBox;\r
41 import com.google.gwt.user.client.ui.FlowPanel;\r
42 import com.google.gwt.user.client.ui.TabPanel;\r
43 import com.google.gwt.user.client.ui.TextBox;\r
44 \r
45 /**\r
46  * Abstract class, parent of all 'File properties' dialog boxes.\r
47  *\r
48  */\r
49 public abstract class AbstractPropertiesDialog extends DialogBox {\r
50 \r
51         protected static final String MULTIPLE_VALUES_TEXT = "(Multiple values)";\r
52 \r
53         /**\r
54          * Text box with the tags associated with the file\r
55          */\r
56         protected TextBox tags = new TextBox();\r
57 \r
58         protected String initialTagText;\r
59 \r
60         /**\r
61          * A FlowPanel with all user tags\r
62          */\r
63         protected FlowPanel allTagsContent;\r
64 \r
65 \r
66         protected TabPanel inner = null;\r
67 \r
68     protected Pithos app;\r
69 \r
70         /**\r
71          * The widget's constructor.\r
72          *\r
73          */\r
74         public AbstractPropertiesDialog(Pithos _app) {\r
75         app = _app;\r
76                 // Enable IE selection for the dialog (must disable it upon closing it)\r
77                 Pithos.enableIESelection();\r
78 \r
79                 setAnimationEnabled(true);\r
80 \r
81         }\r
82 \r
83         /**\r
84          * Accepts any change and updates the file\r
85          *\r
86          */\r
87         protected abstract void accept();\r
88 \r
89         @Override\r
90         protected void onPreviewNativeEvent(NativePreviewEvent preview) {\r
91             super.onPreviewNativeEvent(preview);\r
92 \r
93             NativeEvent evt = preview.getNativeEvent();\r
94             if (evt.getType().equals("keydown"))\r
95                         // Use the popup's key preview hooks to close the dialog when either\r
96                           // enter or escape is pressed.\r
97                           switch (evt.getKeyCode()) {\r
98                             case KeyCodes.KEY_ENTER:\r
99                                 accept();\r
100                             //$FALL-THROUGH$\r
101                         case KeyCodes.KEY_ESCAPE:\r
102                                 closeDialog();\r
103                                 break;\r
104                           }\r
105           }\r
106 \r
107 \r
108 \r
109         public void selectTab(int _tab) {\r
110                 inner.selectTab(_tab);\r
111         }\r
112 \r
113 \r
114         /**\r
115          * Enables IE selection prevention and hides the dialog\r
116          * (we disable the prevention on creation of the dialog)\r
117          */\r
118         public void closeDialog() {\r
119                 Pithos.preventIESelection();\r
120                 hide();\r
121         }\r
122 }\r