Refresh trash after moving to trash
[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         protected TabPanel inner = null;\r
54 \r
55     protected Pithos app;\r
56 \r
57         /**\r
58          * The widget's constructor.\r
59          *\r
60          */\r
61         public AbstractPropertiesDialog(Pithos _app) {\r
62         app = _app;\r
63                 // Enable IE selection for the dialog (must disable it upon closing it)\r
64                 Pithos.enableIESelection();\r
65 \r
66                 setAnimationEnabled(true);\r
67 \r
68         }\r
69 \r
70         /**\r
71          * Accepts any change and updates the file\r
72          *\r
73          */\r
74         protected abstract void accept();\r
75 \r
76         @Override\r
77         protected void onPreviewNativeEvent(NativePreviewEvent preview) {\r
78             super.onPreviewNativeEvent(preview);\r
79 \r
80             NativeEvent evt = preview.getNativeEvent();\r
81             if (evt.getType().equals("keydown"))\r
82                         // Use the popup's key preview hooks to close the dialog when either\r
83                           // enter or escape is pressed.\r
84                           switch (evt.getKeyCode()) {\r
85                             case KeyCodes.KEY_ENTER:\r
86                                 accept();\r
87                             //$FALL-THROUGH$\r
88                         case KeyCodes.KEY_ESCAPE:\r
89                                 closeDialog();\r
90                                 break;\r
91                           }\r
92           }\r
93 \r
94 \r
95 \r
96         public void selectTab(int _tab) {\r
97                 inner.selectTab(_tab);\r
98         }\r
99 \r
100 \r
101         /**\r
102          * Enables IE selection prevention and hides the dialog\r
103          * (we disable the prevention on creation of the dialog)\r
104          */\r
105         public void closeDialog() {\r
106                 Pithos.preventIESelection();\r
107                 hide();\r
108         }\r
109 }\r