1 /*
   2  * Copyright (c) 2012, 2014, Oracle and/or its affiliates.
   3  * All rights reserved. Use is subject to license terms.
   4  *
   5  * This file is available and licensed under the following license:
   6  *
   7  * Redistribution and use in source and binary forms, with or without
   8  * modification, are permitted provided that the following conditions
   9  * are met:
  10  *
  11  *  - Redistributions of source code must retain the above copyright
  12  *    notice, this list of conditions and the following disclaimer.
  13  *  - Redistributions in binary form must reproduce the above copyright
  14  *    notice, this list of conditions and the following disclaimer in
  15  *    the documentation and/or other materials provided with the distribution.
  16  *  - Neither the name of Oracle Corporation nor the names of its
  17  *    contributors may be used to endorse or promote products derived
  18  *    from this software without specific prior written permission.
  19  *
  20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31  */
  32 package com.oracle.javafx.scenebuilder.kit.editor.panel.util.dialog;
  33 
  34 import com.oracle.javafx.scenebuilder.kit.editor.i18n.I18N;
  35 import java.io.PrintWriter;
  36 import java.io.StringWriter;
  37 import javafx.stage.Window;
  38 
  39 /**
  40  *
  41  *
  42  */
  43 public class ErrorDialog extends AlertDialog {
  44 
  45     private String debugInfo;
  46 
  47     public ErrorDialog(Window owner) {
  48         super(owner);
  49         setOKButtonVisible(false);
  50         setShowDefaultButton(true);
  51         setDefaultButtonID(AlertDialog.ButtonID.CANCEL);
  52         setCancelButtonTitle(I18N.getString("label.close"));
  53         setActionButtonTitle(I18N.getString("error.dialog.label.details"));
  54         setActionButtonVisible(true);
  55         setActionRunnable(() -> showDetailsDialog());
  56         updateActionButtonVisibility(); // not visible by default
  57     }
  58 
  59     public String getDebugInfo() {
  60         return debugInfo;
  61     }
  62 
  63     public void setDebugInfo(String debugInfo) {
  64         this.debugInfo = debugInfo;
  65         updateActionButtonVisibility();
  66     }
  67 
  68     public void setDebugInfoWithThrowable(Throwable t) {
  69         final String info;
  70 
  71         if (t == null) {
  72             info = null;
  73         } else {
  74             final StringWriter sw = new StringWriter();
  75             final PrintWriter pw = new PrintWriter(sw);
  76             t./**/printStackTrace(pw);
  77             info = sw.toString();
  78         }
  79 
  80         setDebugInfo(info);
  81     }
  82 
  83 
  84     /*
  85      * Private
  86      */
  87 
  88     private void updateActionButtonVisibility() {
  89         setActionButtonVisible(debugInfo != null);
  90     }
  91 
  92     private void showDetailsDialog() {
  93         final TextViewDialog detailDialog = new TextViewDialog(null);
  94         detailDialog.setText(debugInfo);
  95         detailDialog.showAndWait();
  96     }
  97 }