Reverted back to ListDataProvider. Fixed race condition when creating my shared tree...
[pithos] / web_client / src / gr / grnet / pithos / web / client / ConfirmationDialog.java
1 /*
2  * Copyright 2011 GRNET S.A. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or
5  * without modification, are permitted provided that the following
6  * conditions are met:
7  *
8  *   1. Redistributions of source code must retain the above
9  *      copyright notice, this list of conditions and the following
10  *      disclaimer.
11  *
12  *   2. Redistributions in binary form must reproduce the above
13  *      copyright notice, this list of conditions and the following
14  *      disclaimer in the documentation and/or other materials
15  *      provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
18  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
21  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
24  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  *
30  * The views and conclusions contained in the software and
31  * documentation are those of the authors and should not be
32  * interpreted as representing official policies, either expressed
33  * or implied, of GRNET S.A.
34  */
35 package gr.grnet.pithos.web.client;
36
37 import com.google.gwt.dom.client.NativeEvent;
38 import com.google.gwt.event.dom.client.ClickEvent;
39 import com.google.gwt.event.dom.client.ClickHandler;
40 import com.google.gwt.event.dom.client.KeyCodes;
41 import com.google.gwt.user.client.Event.NativePreviewEvent;
42 import com.google.gwt.user.client.ui.AbstractImagePrototype;
43 import com.google.gwt.user.client.ui.Anchor;
44 import com.google.gwt.user.client.ui.Button;
45 import com.google.gwt.user.client.ui.DialogBox;
46 import com.google.gwt.user.client.ui.HTML;
47 import com.google.gwt.user.client.ui.HasHorizontalAlignment;
48 import com.google.gwt.user.client.ui.HorizontalPanel;
49 import com.google.gwt.user.client.ui.VerticalPanel;
50
51
52 /**
53  * A dialog for requesting confirmation from the user.
54  */
55 public abstract class ConfirmationDialog extends DialogBox {
56
57         /**
58          * The widget's constructor.
59          *
60          * @param message the message to display
61          * @param buttonLabel the label of the confirmation button
62          */
63         public ConfirmationDialog(String message, String buttonLabel) {
64                 Anchor close = new Anchor();
65                 close.addStyleName("close");
66                 close.addClickHandler(new ClickHandler() {
67                         
68                         @Override
69                         public void onClick(ClickEvent event) {
70                                 hide();
71                         }
72                 });
73                 // Set the dialog's caption.
74                 setText("Confirmation");
75                 setAnimationEnabled(true);
76                 setGlassEnabled(true);
77                 setStyleName("pithos-DialogBox");
78                 // Create a VerticalPanel to contain the label and the buttons.
79                 VerticalPanel outer = new VerticalPanel();
80                 outer.add(close);
81                 
82                 VerticalPanel inner = new VerticalPanel();
83                 inner.addStyleName("inner");
84
85                 HTML text = new HTML("<table><tr><td rowspan='2'> " +
86                                 AbstractImagePrototype.create(MessagePanel.images.warn()).getHTML() +
87                                 "</td><td>" + message + "</td></tr></table>");
88                 text.setStyleName("pithos-warnMessage");
89                 inner.add(text);
90                 inner.setCellHorizontalAlignment(text, HasHorizontalAlignment.ALIGN_CENTER);
91
92                 // Create the 'Update' button, along with a listener that hides the
93                 // dialog when the button is clicked and renames the file.
94                 Button ok = new Button(buttonLabel, new ClickHandler() {
95
96                         @Override
97                         public void onClick(@SuppressWarnings("unused") ClickEvent event) {
98                                 confirm();
99                                 hide();
100                         }
101                 });
102                 ok.addStyleName("button");
103                 inner.add(ok);
104                 
105                 outer.add(inner);
106                 outer.setCellHorizontalAlignment(inner, HasHorizontalAlignment.ALIGN_CENTER);
107                 setWidget(outer);
108         }
109
110         @Override
111         protected void onPreviewNativeEvent(NativePreviewEvent preview) {
112                 super.onPreviewNativeEvent(preview);
113                 NativeEvent evt = preview.getNativeEvent();
114                 if (evt.getType().equals("keydown"))
115                         // Use the popup's key preview hooks to close the dialog when either
116                         // enter or escape is pressed.
117                         switch (evt.getKeyCode()) {
118                                 case KeyCodes.KEY_ENTER:
119                                         hide();
120                                         confirm();
121                                         break;
122                                 case KeyCodes.KEY_ESCAPE:
123                                         hide();
124                                         cancel();
125                                         break;
126                         }
127         }
128
129         public abstract void confirm();
130
131         public abstract void cancel();
132 }