blob: 1181b4ad5cfe6de871a7203c758ca7e83df24125 [file] [log] [blame]
// Copyright (C) 2008 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.gerrit.client;
import com.google.gerrit.client.rpc.Common;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.ClickListener;
import com.google.gwt.user.client.ui.FlowPanel;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.Widget;
import com.google.gwtexpui.user.client.AutoCenterDialogBox;
import com.google.gwtjsonrpc.client.RemoteJsonException;
/** A dialog box showing an error message, when bad things happen. */
public class ErrorDialog extends AutoCenterDialogBox {
private final FlowPanel body;
protected ErrorDialog() {
super(/* auto hide */true, /* modal */true);
setText(Gerrit.C.errorDialogTitle());
body = new FlowPanel();
final FlowPanel buttons = new FlowPanel();
buttons.setStyleName("gerrit-ErrorDialog-Buttons");
final Button closey = new Button();
closey.setText(Gerrit.C.errorDialogClose());
closey.addClickListener(new ClickListener() {
public void onClick(final Widget sender) {
hide();
}
});
buttons.add(closey);
final FlowPanel center = new FlowPanel();
center.setStyleName("gerrit-ErrorDialog");
center.add(body);
center.add(buttons);
add(center);
}
/** Create a dialog box to show a single message string. */
public ErrorDialog(final String message) {
this();
body.add(label(message, "gerrit-ErrorDialog-ErrorMessage"));
}
/** Create a dialog box to nicely format an exception. */
public ErrorDialog(final Throwable what) {
this();
String cn;
if (what instanceof RemoteJsonException) {
cn = Common.C.errorRemoteJsonException();
} else {
cn = what.getClass().getName();
if (cn.startsWith("java.lang.")) {
cn = cn.substring("java.lang.".length());
}
}
body.add(label(cn, "gerrit-ErrorDialog-ErrorType"));
body.add(label(what.getMessage(), "gerrit-ErrorDialog-ErrorMessage"));
}
private static Label label(final String what, final String style) {
final Label r = new Label(what);
r.setStyleName(style);
return r;
}
}