0c53546da54ab055efef3b7e3f8c41b021d7abd7
[pithos-web-client] / src / gr / grnet / pithos / web / client / AbstractPropertiesDialog.java
1 /*\r
2  * Copyright 2011-2012 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.VerticalPanel;\r
42 \r
43 /**\r
44  * Abstract class, parent of all 'File properties' dialog boxes.\r
45  *\r
46  */\r
47 public abstract class AbstractPropertiesDialog extends DialogBox {\r
48 \r
49         protected static final String MULTIPLE_VALUES_TEXT = "(Multiple values)";\r
50 \r
51         protected VerticalPanel inner = null;\r
52 \r
53     protected Pithos app;\r
54 \r
55         /**\r
56          * The widget's constructor.\r
57          *\r
58          */\r
59         public AbstractPropertiesDialog(Pithos _app) {\r
60         app = _app;\r
61                 // Enable IE selection for the dialog (must disable it upon closing it)\r
62                 Pithos.enableIESelection();\r
63 \r
64                 setAnimationEnabled(true);\r
65 \r
66         }\r
67 \r
68         /**\r
69          * Accepts any change and updates the file\r
70          * @return \r
71          *\r
72          */\r
73         protected abstract boolean accept();\r
74 \r
75         @Override\r
76         protected void onPreviewNativeEvent(NativePreviewEvent preview) {\r
77             super.onPreviewNativeEvent(preview);\r
78 \r
79             NativeEvent evt = preview.getNativeEvent();\r
80             if (evt.getType().equals("keydown"))\r
81                         // Use the popup's key preview hooks to close the dialog when either\r
82                           // enter or escape is pressed.\r
83                           switch (evt.getKeyCode()) {\r
84                             case KeyCodes.KEY_ENTER:\r
85                                 if (accept())\r
86                                         closeDialog();\r
87                                 break;\r
88                         case KeyCodes.KEY_ESCAPE:\r
89                                 closeDialog();\r
90                                 break;\r
91                           }\r
92           }\r
93 \r
94         /**\r
95          * Enables IE selection prevention and hides the dialog\r
96          * (we disable the prevention on creation of the dialog)\r
97          */\r
98         public void closeDialog() {\r
99                 Pithos.preventIESelection();\r
100                 hide();\r
101         }\r
102 }\r