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