Fixed css to more closely match okeanos
[pithos-web-client] / src / gr / grnet / pithos / web / client / ConfirmationDialog.java
1 /*
2  * Copyright 2011-2012 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.VerticalPanel;
49
50
51 /**
52  * A dialog for requesting confirmation from the user.
53  */
54 public abstract class ConfirmationDialog extends DialogBox {
55
56         /**
57          * The widget's constructor.
58          *
59          * @param message the message to display
60          * @param buttonLabel the label of the confirmation button
61          */
62         public ConfirmationDialog(String message, String buttonLabel) {
63                 Anchor close = new Anchor("close");
64                 close.addStyleName("close");
65                 close.addClickHandler(new ClickHandler() {
66                         
67                         @Override
68                         public void onClick(ClickEvent event) {
69                                 hide();
70                         }
71                 });
72                 // Set the dialog's caption.
73                 setText("Confirmation");
74                 setAnimationEnabled(true);
75                 setGlassEnabled(true);
76                 setStyleName("pithos-DialogBox");
77                 // Create a VerticalPanel to contain the label and the buttons.
78                 VerticalPanel outer = new VerticalPanel();
79                 outer.add(close);
80                 
81                 VerticalPanel inner = new VerticalPanel();
82                 inner.addStyleName("inner");
83
84                 HTML text = new HTML("<table><tr><td rowspan='2'> " +
85                                 AbstractImagePrototype.create(MessagePanel.images.warn()).getHTML() +
86                                 "</td><td>" + message + "</td></tr></table>");
87                 text.setStyleName("pithos-warnMessage");
88                 inner.add(text);
89                 inner.setCellHorizontalAlignment(text, HasHorizontalAlignment.ALIGN_CENTER);
90
91                 // Create the 'Update' button, along with a listener that hides the
92                 // dialog when the button is clicked and renames the file.
93                 Button ok = new Button(buttonLabel, new ClickHandler() {
94
95                         @Override
96                         public void onClick(ClickEvent event) {
97                                 confirm();
98                                 hide();
99                         }
100                 });
101                 ok.addStyleName("button");
102                 inner.add(ok);
103                 
104                 outer.add(inner);
105                 outer.setCellHorizontalAlignment(inner, HasHorizontalAlignment.ALIGN_CENTER);
106                 setWidget(outer);
107         }
108
109         @Override
110         protected void onPreviewNativeEvent(NativePreviewEvent preview) {
111                 super.onPreviewNativeEvent(preview);
112                 NativeEvent evt = preview.getNativeEvent();
113                 if (evt.getType().equals("keydown"))
114                         // Use the popup's key preview hooks to close the dialog when either
115                         // enter or escape is pressed.
116                         switch (evt.getKeyCode()) {
117                                 case KeyCodes.KEY_ENTER:
118                                         hide();
119                                         confirm();
120                                         break;
121                                 case KeyCodes.KEY_ESCAPE:
122                                         hide();
123                                         cancel();
124                                         break;
125                         }
126         }
127
128         public abstract void confirm();
129
130         public abstract void cancel();
131 }