diff --git a/javafx-ui-controls/src/com/preview/javafx/scene/control/DialogResources.java b/javafx-ui-controls/src/com/preview/javafx/scene/control/DialogResources.java
deleted file mode 100644
--- a/javafx-ui-controls/src/com/preview/javafx/scene/control/DialogResources.java
+++ /dev/null
@@ -1,122 +0,0 @@
-/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation. Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-package com.preview.javafx.scene.control;
-
-import com.sun.javafx.scene.control.skin.resources.ControlResources;
-import java.net.URL;
-import java.security.AccessController;
-import java.security.PrivilegedExceptionAction;
-import java.text.MessageFormat;
-import java.util.MissingResourceException;
-import java.util.ResourceBundle;
-import javafx.scene.image.Image;
-import javafx.scene.image.ImageView;
-
-/**
- *
- */
-class DialogResources {
-
- // Localization strings.
- private static ResourceBundle rbFX;
-
- static {
- reset();
- }
-
- static void reset() {
- rbFX = ResourceBundle.getBundle("com.sun.javafx.scene.control.skin.resources.dialog-resources");
- }
-
-
- /**
- * Method to get an internationalized string from the deployment resource.
- */
- static String getMessage(String key) {
- try {
- return rbFX.getString(key);
- } catch (MissingResourceException ex) {
- // Do not trace this exception, because the key could be
- // an already translated string.
- System.out.println("Failed to get string for key '" + key + "'");
- return key;
- }
- }
-
- /**
- * Returns a string from the resources
- */
- static String getString(String key) {
- try {
- return rbFX.getString(key);
- } catch (MissingResourceException mre) {
- // Do not trace this exception, because the key could be
- // an already translated string.
- System.out.println("Failed to get string for key '" + key + "'");
- return key;
- }
- }
-
- /**
- * Returns a string from a resource, substituting argument 1
- */
- static String getString(String key, Object... args) {
- return MessageFormat.format(getString(key), args);
- }
-
-
- /**
- * Returns an ImageView
given an image file name or resource name
- */
- static public ImageView getIcon(final String key) {
- try {
- return AccessController.doPrivileged(
- new PrivilegedExceptionAction() {
- @Override public ImageView run() {
- return getIcon_(key);
- }
- });
- } catch (Exception ex) {
- ex.printStackTrace();
- return null;
- }
- }
-
- static public ImageView getIcon_(String key) {
- String resourceName = getString(key);
- URL url = ControlResources.class.getResource(resourceName);
- if (url == null) {
- System.out.println("Can't create ImageView for key '" + key +
- "', which has resource name '" + resourceName +
- "' and URL 'null'");
- return null;
- }
- return getIcon(url);
- }
-
- static public ImageView getIcon(URL url) {
- return new ImageView(new Image(url.toString()));
- }
-}
\ No newline at end of file
diff --git a/javafx-ui-controls/src/com/preview/javafx/scene/control/DialogTemplate.java b/javafx-ui-controls/src/com/preview/javafx/scene/control/DialogTemplate.java
deleted file mode 100644
--- a/javafx-ui-controls/src/com/preview/javafx/scene/control/DialogTemplate.java
+++ /dev/null
@@ -1,510 +0,0 @@
-/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation. Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-package com.preview.javafx.scene.control;
-
-import java.util.List;
-import javafx.beans.value.ChangeListener;
-import javafx.beans.value.ObservableValue;
-import javafx.collections.FXCollections;
-import javafx.collections.ObservableList;
-import javafx.event.*;
-import javafx.geometry.*;
-import javafx.scene.Node;
-import javafx.scene.control.*;
-import javafx.scene.image.*;
-import javafx.scene.layout.*;
-import javafx.stage.Stage;
-
-import static com.preview.javafx.scene.control.DialogResources.*;
-import static com.preview.javafx.scene.control.Dialogs.DialogType.*;
-import com.preview.javafx.scene.control.Dialogs.DialogResponse;
-import com.preview.javafx.scene.control.Dialogs.DialogType;
-import com.preview.javafx.scene.control.Dialogs.DialogOptions;
-
-/**
- *
- * @param The type for user input
- */
-class DialogTemplate {
- private static enum DialogStyle {
- SIMPLE,
- ERROR,
- INPUT;
- }
-
-
- // Defines max dialog width.
- final static int DIALOG_WIDTH = 516;
-
- // According to the UI spec, the width of the main message text in the upper
- // panel should be 426 pixels.
- private static int MAIN_TEXT_WIDTH = 400;
-
- private FXDialog dialog;
- private VBox contentPane;
-
- private DialogType dialogType = INFORMATION;
- private final DialogOptions options;
- private DialogResponse userResponse = DialogResponse.CLOSED;
-
- private DialogStyle style;
-
- // for user input dialogs (textfield / choicebox / combobox)
- private T initialInputValue;
- private List inputChoices;
- private T userInputResponse;
-
-
- // masthead
- private String mastheadString;
- private BorderPane mastheadPanel;
- private ImageView mastheadIcon;
- private UITextArea mastheadTextArea;
-
- // center
- private Pane centerPanel;
- private String contentString = null;
-
- // Buttons
- private ObservableList buttons;
- private static final String okBtnStr = "common.ok.btn";
- private static final String yesBtnStr = "common.yes.btn";
- private static final String noBtnStr = "common.no.btn";
- private static final String cancelBtnStr = "common.cancel.btn";
- private static final String detailBtnStr = "common.detail.button";
-
- // This is used in the exception dialog only.
- private Throwable throwable = null;
-
- // Visual indication of security level alert - either high or medium.
- // Located in the lower left corner at the bottom of the dialog.
- private static final String SECURITY_ALERT_HIGH = "security.alert.high.image";
- private static final String SECURITY_ALERT_LOW = "security.alert.low.image";
- private ImageView securityIcon;
-
- // These are for security dialog only.
- private String[] alertStrs;
- private String[] infoStrs;
-
-
-
- /***************************************************************************
- * *
- * Constructors *
- * *
- **************************************************************************/
-
- DialogTemplate(Stage owner, String title, String masthead, DialogOptions options) {
- this.dialog = new FXDialog(title, owner, true);
-
- this.contentPane = new VBox();
- this.dialog.setContentPane(contentPane);
-
- this.mastheadString = masthead;
- this.options = options;
- }
-
-
-
-
- /***************************************************************************
- * *
- * Dialog construction API *
- * *
- **************************************************************************/
-
- void setSimpleContent(String contentString, DialogType dialogType) {
- setSimpleContent(contentString, dialogType, null, true);
- }
-
- void setSimpleContent(String contentString, DialogType dialogType,
- String infoString, boolean useWarningIcon) {
- this.style = DialogStyle.SIMPLE;
- this.contentString = contentString;
-
- this.dialogType = dialogType == null ? WARNING : dialogType;
- if (infoString != null) {
- String[] strs = { infoString };
- if (useWarningIcon) {
- this.alertStrs = strs;
- } else {
- this.infoStrs = strs;
- }
- }
-
- contentPane.getChildren().add(createMasthead());
- contentPane.getChildren().add(createCenterPanel());
-
- Pane bottomPanel = createBottomPanel();
- if (bottomPanel != null) {
- contentPane.getChildren().add(bottomPanel);
- }
-
- dialog.setResizable(false);
- }
-
- void setErrorContent(String contentString, Throwable throwable) {
- this.style = DialogStyle.ERROR;
- this.contentString = contentString;
- this.throwable = throwable;
-
- this.dialogType = DialogType.ERROR;
-
- contentPane.getChildren().add(createMasthead());
- contentPane.getChildren().add(createCenterPanel());
-
- Pane bottomPanel = createBottomPanel();
- if (bottomPanel != null && bottomPanel.getChildren().size() > 0) {
- contentPane.getChildren().add(bottomPanel);
- }
-
- dialog.setResizable(false);
- }
-
- void setInputContent(String message, T initialValue, List choices) {
- this.style = DialogStyle.INPUT;
- this.contentString = message;
- this.initialInputValue = initialValue;
- this.inputChoices = choices;
-
- contentPane.getChildren().add(createMasthead());
- contentPane.getChildren().add(createCenterPanel());
-
- Pane bottomPanel = createBottomPanel();
- if (bottomPanel != null) {
- contentPane.getChildren().add(bottomPanel);
- }
-
- dialog.setResizable(false);
- }
-
-
-
- /***************************************************************************
- * *
- * 'Public' API *
- * *
- **************************************************************************/
-
- public FXDialog getDialog() {
- return dialog;
- }
-
- public void show() {
- dialog.showAndWait();
- }
-
- public void hide() {
- dialog.hide();
- }
-
- /**
- * gets the response from the user.
- * @return the response
- */
- public DialogResponse getResponse() {
- return userResponse;
- }
-
- public T getInputResponse() {
- return userInputResponse;
- }
-
-
-
- /***************************************************************************
- * *
- * Implementation *
- * *
- **************************************************************************/
-
- /*
- * top part of the dialog contains short informative message, and either
- * an icon, or the text is displayed over a watermark image
- */
- private Pane createMasthead() {
- mastheadPanel = new BorderPane();
- mastheadPanel.getStyleClass().add("top-panel");
-
- // Create panel with text area and icon or just a background image:
- // Create topPanel's components. UITextArea determines
- // the size of the dialog by defining the number of columns
- // based on font size.
- mastheadTextArea = new UITextArea(MAIN_TEXT_WIDTH);
- mastheadTextArea.getStyleClass().add("masthead-label-1");
-
- VBox mastheadVBox = new VBox();
- mastheadVBox.setAlignment(Pos.CENTER_LEFT);
- mastheadTextArea.setText(mastheadString);
- mastheadTextArea.setAlignment(Pos.CENTER_LEFT);
- mastheadVBox.getChildren().add(mastheadTextArea);
-
- mastheadPanel.setLeft(mastheadVBox);
- BorderPane.setAlignment(mastheadVBox, Pos.CENTER_LEFT);
- mastheadIcon = dialogType == null ? getIcon("java48.image") : dialogType.getImage();
- mastheadPanel.setRight(mastheadIcon);
-
- return mastheadPanel;
- }
-
- private Pane createCenterPanel() {
- centerPanel = new VBox();
- centerPanel.getStyleClass().add("center-panel");
-
- BorderPane contentPanel = new BorderPane();
- contentPanel.getStyleClass().add("center-content-panel");
- VBox.setVgrow(contentPanel, Priority.ALWAYS);
-
- Node content = createCenterContent();
- if (content != null) {
- contentPanel.setCenter(content);
- contentPanel.setPadding(new Insets(0, 0, 12, 0));
- }
-
- FlowPane buttonsPanel = new FlowPane(6, 0) {
- @Override protected void layoutChildren() {
- resizeButtons();
- super.layoutChildren();
- }
- };
- buttonsPanel.getStyleClass().add("button-bar");
-
- // Create buttons from okBtnStr and cancelBtnStr strings.
- buttonsPanel.getChildren().addAll(createButtons());
-
- if (contentPanel.getChildren().size() > 0) {
- centerPanel.getChildren().add(contentPanel);
- }
-
- BorderPane bottomPanel = new BorderPane();
- bottomPanel.getStyleClass().add("center-bottom-panel");
- bottomPanel.setRight(buttonsPanel);
- centerPanel.getChildren().add(bottomPanel);
-
- return centerPanel;
- }
-
- private Node createCenterContent() {
- if (style == DialogStyle.SIMPLE) {
- if (contentString != null) {
- UITextArea ta = new UITextArea(contentString);
- ta.getStyleClass().add("center-content-area");
- ta.setAlignment(Pos.TOP_LEFT);
- return ta;
- }
- } else if (style == DialogStyle.INPUT) {
- Control inputControl = null;
- if (inputChoices == null || inputChoices.isEmpty()) {
- // no input constraints, so use a TextField
- final TextField textField = new TextField();
- textField.setOnAction(new EventHandler() {
- @Override public void handle(ActionEvent t) {
- userInputResponse = (T) textField.getText();
- hide();
- }
- });
- if (initialInputValue != null) {
- textField.setText(initialInputValue.toString());
- }
- inputControl = textField;
- } else {
- // input method will be constrained to the given choices
- ChangeListener changeListener = new ChangeListener() {
- @Override public void changed(ObservableValue extends T> ov, T t, T t1) {
- userInputResponse = t1;
- }
- };
-
- if (inputChoices.size() > 10) {
- // use ComboBox
- ComboBox comboBox = new ComboBox();
- comboBox.getItems().addAll(inputChoices);
- comboBox.getSelectionModel().select(initialInputValue);
- comboBox.getSelectionModel().selectedItemProperty().addListener(changeListener);
- inputControl = comboBox;
- } else {
- // use ChoiceBox
- ChoiceBox choiceBox = new ChoiceBox();
- choiceBox.getItems().addAll(inputChoices);
- choiceBox.getSelectionModel().select(initialInputValue);
- choiceBox.getSelectionModel().selectedItemProperty().addListener(changeListener);
- inputControl = choiceBox;
- }
- }
-
- HBox hbox = new HBox(10);
-
- if (contentString != null && ! contentString.isEmpty()) {
- Label label = new Label(contentString);
- hbox.getChildren().add(label);
-
- }
-
- if (inputControl != null) {
- hbox.getChildren().add(inputControl);
- }
-
- return hbox;
- }
-
- return null;
- }
-
- private List createButtons() {
- buttons = FXCollections.observableArrayList();
-
- if (style == DialogStyle.INPUT) {
- buttons.addAll(createButton(okBtnStr, DialogResponse.OK, true, false),
- createButton(cancelBtnStr, DialogResponse.CANCEL, false, true));
- } else {
- if (DialogType.ERROR == dialogType && throwable != null) {
- // we've got an error dialog, which has 'OK' and 'Details..' buttons
- buttons.addAll(createButton(okBtnStr, DialogResponse.OK, true, false));
-
- Button detailsBtn = new Button((detailBtnStr == null) ? "" : getMessage(detailBtnStr));
- detailsBtn.setOnAction(exceptionDetailsHandler);
- buttons.add(detailsBtn);
- } else if (options == DialogOptions.OK) {
- buttons.addAll(createButton(okBtnStr, DialogResponse.OK, true, false));
- } else if (options == DialogOptions.OK_CANCEL) {
- buttons.addAll(createButton(okBtnStr, DialogResponse.OK, true, false),
- createButton(cancelBtnStr, DialogResponse.CANCEL, false, true));
- } else if (options == DialogOptions.YES_NO) {
- buttons.addAll(createButton(yesBtnStr, DialogResponse.YES, true, false),
- createButton(noBtnStr, DialogResponse.NO, false, true));
- } else if (options == DialogOptions.YES_NO_CANCEL) {
- buttons.addAll(createButton(yesBtnStr, DialogResponse.YES, true, false),
- createButton(noBtnStr, DialogResponse.NO, false, true),
- createButton(cancelBtnStr, DialogResponse.CANCEL, false, false));
- }
- }
-
- return buttons;
- }
-
- private Button createButton(String extLabel, DialogResponse response, boolean isDefault, boolean isCancel) {
- Button btn = new Button((extLabel == null) ? "" : getMessage(extLabel));
- btn.setOnAction(createButtonHandler(response));
- btn.setDefaultButton(isDefault);
- btn.setCancelButton(isCancel);
-
- return btn;
- }
-
- /*
- * bottom panel contains icon indicating the security alert level,
- * two bullets with most significant security warnings,
- * link label - to view more details about security warnings.
- */
- private Pane createBottomPanel() {
- if (alertStrs == null && infoStrs == null) return null;
-
- HBox bottomPanel = new HBox();
- bottomPanel.getStyleClass().add("bottom-panel");
-
- // Icon 32x32 pixels with indication of secutiry alert - high/low
-
- // If there are no messages in securityAlerts, show
- // SECURITY_ALERT_LOW icon in the lower left corner of
- // security dialog.
- String imageFile = SECURITY_ALERT_HIGH;
-
- if (alertStrs == null || alertStrs.length == 0) {
- imageFile = SECURITY_ALERT_LOW;
- }
- securityIcon = getIcon(imageFile);
-
- // Add icon to the bottom panel.
- bottomPanel.getChildren().add(securityIcon);
-
- // If there are no alerts (alertStrs is null, or length is 0),
- // then we should show only first message from infoStrs.
- // this is how it will work for security dialog...
- int textAreaWidth = 333;
- UITextArea bulletText = new UITextArea(textAreaWidth);
- bulletText.getStyleClass().add("bottom-text");
-
- if ((alertStrs == null || alertStrs.length == 0)
- && infoStrs != null && infoStrs.length != 0) {
- // If there are no alerts, use first string from the infoStrs.
- bulletText.setText((infoStrs[0] != null) ? infoStrs[0] : " ");
- } else if (alertStrs != null && alertStrs.length != 0) {
- // If there are any alerts, use first string from alertStrs.
- bulletText.setText((alertStrs[0] != null) ? alertStrs[0] : " ");
- }
-
- bottomPanel.getChildren().add(bulletText);
-
-// if (moreInfoLbl != null) {
-// bottomPanel.getChildren().add(moreInfoLbl);
-// }
-
- return bottomPanel;
- }
-
- /*
- * According to UI guidelines, all buttons should have the same length.
- * This function is to define the longest button in the array of buttons
- * and set all buttons in array to be the length of the longest button.
- */
- private void resizeButtons() {
- // Find out the longest button...
- double widest = 50;
- for (int i = 0; i < buttons.size(); i++) {
- Button btn = buttons.get(i);
- if (btn == null) continue;
- widest = Math.max(widest, btn.prefWidth(-1));
- }
-
- // ...and set all buttons to be this width
- for (int i = 0; i < buttons.size(); i++) {
- Button btn = buttons.get(i);
- if (btn == null) continue;
- btn.setPrefWidth(btn.isVisible() ? widest : 0);
- }
- }
-
- private EventHandler createButtonHandler(final DialogResponse response) {
- return new EventHandler() {
- @Override public void handle(ActionEvent ae) {
- userResponse = response;
-
- // hide the dialog. We'll return from the dialog,
- // and who ever called it will retrieve user's answer
- // and will dispose of the dialog after that.
- hide();
- }
- };
- }
-
- private EventHandler exceptionDetailsHandler = new EventHandler() {
- @Override public void handle(ActionEvent ae) {
- if (throwable != null) {
- new ExceptionDialog(dialog, throwable).show();
- return;
- }
- }
- };
-}
diff --git a/javafx-ui-controls/src/com/preview/javafx/scene/control/Dialogs.java b/javafx-ui-controls/src/com/preview/javafx/scene/control/Dialogs.java
deleted file mode 100644
--- a/javafx-ui-controls/src/com/preview/javafx/scene/control/Dialogs.java
+++ /dev/null
@@ -1,366 +0,0 @@
-/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation. Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-package com.preview.javafx.scene.control;
-
-import java.util.Arrays;
-import java.util.Collections;
-import java.util.List;
-import javafx.scene.image.ImageView;
-import javafx.stage.Stage;
-
-import static com.preview.javafx.scene.control.DialogResources.*;
-import static com.preview.javafx.scene.control.Dialogs.DialogResponse.*;
-import com.preview.javafx.scene.control.Dialogs.DialogResponse;
-
-/**
- * A class containing a number of pre-built JavaFX modal dialogs.
- */
-public class Dialogs {
-
- // NOT PUBLIC API
- static enum DialogType {
- ERROR(DialogOptions.OK,"error48.image") {
- @Override public String getDefaultMasthead() { return "Error"; }
- },
- INFORMATION(DialogOptions.OK, "info48.image") {
- @Override public String getDefaultMasthead() { return "Message"; }
- },
- WARNING(DialogOptions.OK,"warning48.image") {
- @Override public String getDefaultMasthead() { return "Warning"; }
- },
- CONFIRMATION(DialogOptions.YES_NO_CANCEL, "confirm48.image") {
- @Override public String getDefaultMasthead() { return "Select an Option"; }
- },
- INPUT(DialogOptions.OK_CANCEL, "confirm48.image") {
- @Override public String getDefaultMasthead() { return "Select an Option"; }
- };
-
- private final DialogOptions defaultOptions;
- private final String imageResource;
-
-
- DialogType(DialogOptions defaultOptions, String imageResource) {
- this.defaultOptions = defaultOptions;
- this.imageResource = imageResource;
- }
-
- public ImageView getImage() {
- return getIcon(imageResource);
- }
-
- public String getDefaultTitle() {
- return getDefaultMasthead();
- }
-
- public abstract String getDefaultMasthead();
-
- public DialogOptions getDefaultOptions() {
- return defaultOptions;
- }
- }
-
- /**
- * An enumeration used to specify the response provided by the user when
- * interacting with a dialog.
- */
- public static enum DialogResponse {
- YES,
- NO,
- CANCEL,
- OK,
- CLOSED
- }
-
- /**
- * An enumeration used to specify which buttons to show to the user in a
- * Dialog.
- */
- public static enum DialogOptions {
- YES_NO,
- YES_NO_CANCEL,
- OK,
- OK_CANCEL;
- }
-
-
- /***************************************************************************
- * Confirmation Dialogs
- **************************************************************************/
-
- /**
- * Brings up a dialog with the options Yes, No and Cancel; with the title,
- * Select an Option .
- *
- * @param owner
- * @param message
- * @return
- */
- public static DialogResponse showConfirmDialog(final Stage owner, final String message) {
- return showConfirmDialog(owner,
- message,
- DialogType.CONFIRMATION.getDefaultMasthead());
- }
-
- public static DialogResponse showConfirmDialog(final Stage owner, final String message,
- final String masthead) {
- return showConfirmDialog(owner,
- message,
- masthead,
- DialogType.CONFIRMATION.getDefaultTitle());
- }
-
- public static DialogResponse showConfirmDialog(final Stage owner, final String message,
- final String masthead, final String title) {
- return showConfirmDialog(owner,
- message,
- masthead,
- title,
- DialogType.CONFIRMATION.getDefaultOptions());
- }
-
- public static DialogResponse showConfirmDialog(final Stage owner, final String message,
- final String masthead, final String title, final DialogOptions options) {
- return showSimpleContentDialog(owner,
- title,
- masthead,
- message,
- DialogType.CONFIRMATION,
- options);
- }
-
-
-
- /***************************************************************************
- * Information Dialogs
- **************************************************************************/
-
- public static void showInformationDialog(final Stage owner,
- final String message) {
- showInformationDialog(owner,
- message,
- DialogType.INFORMATION.getDefaultMasthead());
- }
-
- public static void showInformationDialog(final Stage owner, final String message,
- final String masthead){
- showInformationDialog(owner,
- message,
- masthead,
- DialogType.INFORMATION.getDefaultTitle());
- }
-
- /*
- * Info message string displayed in the masthead
- * Info icon 48x48 displayed in the masthead
- * "OK" button at the bottom.
- *
- * text and title strings are already translated strings.
- */
- public static void showInformationDialog(final Stage owner, final String message,
- final String masthead, final String title){
- showSimpleContentDialog(owner,
- title,
- masthead,
- message,
- DialogType.INFORMATION,
- DialogType.INFORMATION.getDefaultOptions());
- }
-
-
-
-
-
- /***************************************************************************
- * Warning Dialogs
- **************************************************************************/
-
- /**
- * showWarningDialog - displays warning icon instead of "Java" logo icon
- * in the upper right corner of masthead. Has masthead
- * and message that is displayed in the middle part
- * of the dialog. No bullet is displayed.
- *
- *
- * @param owner - Component to parent the dialog to
- * @param appInfo - AppInfo object
- * @param masthead - masthead in the top part of the dialog
- * @param message - question to display in the middle part
- * @param title - dialog title string from resource bundle
- *
- */
- public static DialogResponse showWarningDialog(final Stage owner, final String message) {
- return showWarningDialog(owner,
- message,
- DialogType.WARNING.getDefaultMasthead());
- }
-
- public static DialogResponse showWarningDialog(final Stage owner, final String message,
- final String masthead) {
- return showWarningDialog(owner,
- message,
- masthead,
- DialogType.WARNING.getDefaultTitle());
- }
-
- public static DialogResponse showWarningDialog(final Stage owner, final String message,
- final String masthead, final String title) {
- return showWarningDialog(owner,
- message,
- masthead,
- title,
- DialogType.WARNING.getDefaultOptions());
- }
-
- public static DialogResponse showWarningDialog(final Stage owner, final String message,
- final String masthead, final String title,
- DialogOptions options) {
- return showSimpleContentDialog(owner,
- title,
- masthead,
- message,
- DialogType.WARNING,
- options);
- }
-
-
-
- /***************************************************************************
- * Exception / Error Dialogs
- **************************************************************************/
-
- public static DialogResponse showErrorDialog(final Stage owner, final String message) {
- return showErrorDialog(owner,
- message,
- DialogType.ERROR.getDefaultMasthead());
- }
-
- public static DialogResponse showErrorDialog(final Stage owner, final String message,
- final String masthead) {
- return showErrorDialog(owner,
- message,
- masthead,
- masthead);
- }
-
- public static DialogResponse showErrorDialog(final Stage owner, final String message,
- final String masthead, final String title) {
- return showErrorDialog(owner,
- message,
- masthead,
- title,
- DialogType.ERROR.getDefaultOptions());
- }
-
- public static DialogResponse showErrorDialog(final Stage owner, final String message,
- final String masthead, final String title,
- DialogOptions options) {
- return showSimpleContentDialog(owner,
- title,
- masthead,
- message,
- DialogType.ERROR,
- options);
- }
-
- public static DialogResponse showErrorDialog(final Stage owner, final String message,
- final String masthead, final String title,
- final Throwable throwable) {
-
- DialogTemplate template = new DialogTemplate(owner, title, masthead, null);
- template.setErrorContent(message, throwable);
- return showDialog(template);
- }
-
-
-
-
- /***************************************************************************
- * User Input Dialogs
- **************************************************************************/
-
- public static String showInputDialog(final Stage owner, final String message) {
- return showInputDialog(owner, message, "Masthead");
- }
-
- public static String showInputDialog(final Stage owner, final String message,
- final String masthead) {
- return showInputDialog(owner, message, masthead, "Title");
- }
-
- public static String showInputDialog(final Stage owner, final String message,
- final String masthead, final String title) {
- return showInputDialog(owner, message, masthead, title, null);
- }
-
- public static String showInputDialog(final Stage owner, final String message,
- final String masthead, final String title,
- final String initialValue) {
- return showInputDialog(owner, message, masthead, title, initialValue, Collections.emptyList());
- }
-
- public static T showInputDialog(final Stage owner, final String message,
- final String masthead, final String title,
- final T initialValue, final T... choices) {
- return showInputDialog(owner, message, masthead, title, initialValue, Arrays.asList(choices));
- }
-
- public static T showInputDialog(final Stage owner, final String message,
- final String masthead, final String title,
- final T initialValue, final List choices) {
- DialogTemplate template = new DialogTemplate(owner, title, masthead, null);
- template.setInputContent(message, initialValue, choices);
- return showUserInputDialog(template);
- }
-
-
-
- /***************************************************************************
- * Private API
- **************************************************************************/
- private static DialogResponse showSimpleContentDialog(final Stage owner,
- final String title, final String masthead,
- final String message, DialogType dialogType,
- final DialogOptions options) {
- DialogTemplate template = new DialogTemplate(owner, title, masthead, options);
- template.setSimpleContent(message, dialogType);
- return showDialog(template);
- }
-
- private static DialogResponse showDialog(DialogTemplate template) {
- try {
- template.getDialog().centerOnScreen();
- template.show();
- return template.getResponse();
- } catch (Throwable e) {
- return CLOSED;
- }
- }
-
- private static T showUserInputDialog(DialogTemplate template) {
- template.getDialog().centerOnScreen();
- template.show();
- return template.getInputResponse();
- }
-}
diff --git a/javafx-ui-controls/src/com/preview/javafx/scene/control/ExceptionDialog.java b/javafx-ui-controls/src/com/preview/javafx/scene/control/ExceptionDialog.java
deleted file mode 100644
--- a/javafx-ui-controls/src/com/preview/javafx/scene/control/ExceptionDialog.java
+++ /dev/null
@@ -1,108 +0,0 @@
-/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation. Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-package com.preview.javafx.scene.control;
-
-import javafx.event.*;
-import javafx.scene.control.*;
-import javafx.scene.layout.*;
-import javafx.stage.Stage;
-
-import java.io.StringWriter;
-import java.io.PrintWriter;
-import javafx.stage.Modality;
-
-import static com.preview.javafx.scene.control.DialogResources.*;
-
-class ExceptionDialog extends FXDialog {
-
- public ExceptionDialog(Stage parent, Throwable throwable) {
- super(getMessage("exception.dialog.title"));
-
- initModality(Modality.APPLICATION_MODAL);
- initComponents(throwable);
- }
-
- /*
- * Initialize components for this dialog.
- */
- private void initComponents(Throwable throwable) {
- VBox contentPanel = new VBox();
- contentPanel.getStyleClass().add("more-info-dialog");
-
- contentPanel.setPrefSize(800, 600);
-
- if (throwable != null) {
- BorderPane labelPanel = new BorderPane();
-
- Label label = new Label(getString("exception.dialog.label"));
- labelPanel.setLeft(label);
-
- contentPanel.getChildren().add(labelPanel);
-
- StringWriter sw = new StringWriter();
- PrintWriter pw = new PrintWriter(sw);
- throwable.printStackTrace(pw);
- TextArea text = new TextArea(sw.toString());
- text.setEditable(false);
- text.setWrapText(true);
- text.setPrefWidth(60 * 8);
- text.setPrefHeight(20 * 12);
-
- VBox.setVgrow(text, Priority.ALWAYS);
- contentPanel.getChildren().add(text);
- }
- contentPanel.getChildren().add(getBtnPanel());
-
- setContentPane(contentPanel);
- }
-
- /*
- * This panel contains right-aligned "Close" button. It should
- * dismiss the dialog and dispose of it.
- */
- private Pane getBtnPanel() {
- HBox btnPanel = new HBox();
- btnPanel.getStyleClass().add("button-panel");
-
- Button dismissBtn = new Button(getMessage("common.close.btn"));
- dismissBtn.setPrefWidth(80);
- dismissBtn.setOnAction(new EventHandler() {
- @Override public void handle(ActionEvent e) {
- dismissAction();
- }
- });
-
- dismissBtn.setDefaultButton(true);
- btnPanel.getChildren().add(dismissBtn);
- return btnPanel;
- }
-
- /*
- * Close this dialog and dispose of it.
- */
- private void dismissAction() {
- hide();
- }
-}
diff --git a/javafx-ui-controls/src/com/preview/javafx/scene/control/FXDialog.java b/javafx-ui-controls/src/com/preview/javafx/scene/control/FXDialog.java
deleted file mode 100644
--- a/javafx-ui-controls/src/com/preview/javafx/scene/control/FXDialog.java
+++ /dev/null
@@ -1,303 +0,0 @@
-/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation. Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-package com.preview.javafx.scene.control;
-
-import javafx.css.PseudoClass;
-import javafx.beans.InvalidationListener;
-import javafx.beans.Observable;
-import javafx.event.Event;
-import javafx.event.EventHandler;
-import javafx.event.EventType;
-import javafx.geometry.Point2D;
-import javafx.scene.Scene;
-import javafx.scene.control.Button;
-import javafx.scene.control.Label;
-import javafx.scene.control.ToolBar;
-import javafx.scene.input.MouseEvent;
-import javafx.scene.layout.BorderPane;
-import javafx.scene.layout.HBox;
-import javafx.scene.layout.Pane;
-import javafx.scene.layout.Priority;
-import javafx.scene.layout.Region;
-import javafx.scene.layout.StackPane;
-import javafx.scene.paint.Color;
-import javafx.scene.shape.Rectangle;
-import javafx.stage.Modality;
-import javafx.stage.Screen;
-import javafx.stage.Stage;
-import javafx.stage.StageStyle;
-import javafx.stage.Window;
-import com.sun.javafx.css.StyleManager;
-import java.net.URL;
-import java.security.AccessController;
-import java.security.PrivilegedAction;
-import java.util.Set;
-import javafx.beans.property.BooleanProperty;
-import javafx.beans.property.ReadOnlyBooleanProperty;
-import javafx.beans.property.ReadOnlyBooleanWrapper;
-import javafx.geometry.Pos;
-
-class FXDialog extends Stage {
-
- // Use the CSS supplied with the JavaFX runtime, rather than our local tweak
- private static final URL DIALOGS_CSS_URL = FXDialog.class.getResource("dialogs.css");
-// private static final URL DIALOGS_CSS_URL = FXAboutDialog.class.getResource("deploydialogs.css");
-
- private BorderPane root;
- private StackPane decoratedRoot;
- private HBox windowBtns;
- private Button minButton;
- private Button maxButton;
- private Rectangle resizeCorner;
- private double mouseDragOffsetX = 0;
- private double mouseDragOffsetY = 0;
- protected Label titleLabel;
-
- private static final int HEADER_HEIGHT = 28;
-
- FXDialog(String title) {
- this(title, null, false);
- }
-
- FXDialog(String title, Window owner, boolean modal) {
- this(title, owner, modal, StageStyle.TRANSPARENT);
- }
-
- FXDialog(String title, Window owner, boolean modal, StageStyle stageStyle) {
- super(stageStyle);
-
- setTitle(title);
-
- if (owner != null) {
- initOwner(owner);
- }
-
- if (modal) {
- initModality(Modality.WINDOW_MODAL);
- }
-
- resizableProperty().addListener(new InvalidationListener() {
- @Override public void invalidated(Observable valueModel) {
- resizeCorner.setVisible(isResizable());
- maxButton.setVisible(isResizable());
-
- if (isResizable()) {
- windowBtns.getChildren().add(1, maxButton);
- } else {
- windowBtns.getChildren().remove(maxButton);
- }
- }
- });
-
- root = new BorderPane();
-
- Scene scene;
-
- if (stageStyle == StageStyle.DECORATED) {
- scene = new Scene(root);
- scene.getStylesheets().addAll(DIALOGS_CSS_URL.toExternalForm());
- setScene(scene);
- return;
- }
-
-
-
- // *** The rest is for adding window decorations ***
-
- decoratedRoot = new StackPane() {
- @Override protected void layoutChildren() {
- super.layoutChildren();
- if (resizeCorner != null) {
- resizeCorner.relocate(getWidth() - 20, getHeight() - 20);
- }
- }
- };
- decoratedRoot.getChildren().add(root);
- scene = new Scene(decoratedRoot);
- String css = (String) AccessController.doPrivileged(new PrivilegedAction() {
- @Override public Object run() {
- return DIALOGS_CSS_URL.toExternalForm();
- }
- });
- scene.getStylesheets().addAll(css);
- scene.setFill(Color.TRANSPARENT);
- setScene(scene);
-
- decoratedRoot.getStyleClass().addAll("dialog", "decorated-root");
-
- focusedProperty().addListener(new InvalidationListener() {
- @Override public void invalidated(Observable valueModel) {
- boolean active = ((ReadOnlyBooleanProperty)valueModel).get();
- decoratedRoot.pseudoClassStateChanged(ACTIVE_PSEUDO_CLASS, active);
- }
- });
-
- ToolBar toolBar = new ToolBar();
- toolBar.getStyleClass().add("window-header");
- toolBar.setPrefHeight(HEADER_HEIGHT);
- toolBar.setMinHeight(HEADER_HEIGHT);
- toolBar.setMaxHeight(HEADER_HEIGHT);
-
- // add window dragging
- toolBar.setOnMousePressed(new EventHandler() {
- @Override public void handle(MouseEvent event) {
- mouseDragOffsetX = event.getSceneX();
- mouseDragOffsetY = event.getSceneY();
- }
- });
- toolBar.setOnMouseDragged(new EventHandler() {
- @Override public void handle(MouseEvent event) {
- setX(event.getScreenX() - mouseDragOffsetX);
- setY(event.getScreenY() - mouseDragOffsetY);
- }
- });
-
- titleLabel = new Label();
- titleLabel.getStyleClass().add("window-title");
- titleLabel.setText(getTitle());
-
- titleProperty().addListener(new InvalidationListener() {
- @Override public void invalidated(Observable valueModel) {
- titleLabel.setText(getTitle());
- }
- });
-
- Region spacer = new Region();
- HBox.setHgrow(spacer, Priority.ALWAYS);
-
- // add close min max
- Button closeButton = new WindowButton("close");
- closeButton.setOnAction(new EventHandler() {
- @Override public void handle(Event event) {
- FXDialog.this.hide();
- }
- });
- minButton = new WindowButton("minimize");
- minButton.setOnAction(new EventHandler() {
- @Override public void handle(Event event) {
- setIconified(!isIconified());
- }
- });
-
- maxButton = new WindowButton("maximize");
- maxButton.setOnAction(new EventHandler() {
- private double restoreX;
- private double restoreY;
- private double restoreW;
- private double restoreH;
-
- @Override public void handle(Event event) {
- Screen screen = Screen.getPrimary(); // todo something more sensible
- double minX = screen.getVisualBounds().getMinX();
- double minY = screen.getVisualBounds().getMinY();
- double maxW = screen.getVisualBounds().getWidth();
- double maxH = screen.getVisualBounds().getHeight();
-
- if (restoreW == 0 || getX() != minX || getY() != minY || getWidth() != maxW || getHeight() != maxH) {
- restoreX = getX();
- restoreY = getY();
- restoreW = getWidth();
- restoreH = getHeight();
- setX(minX);
- setY(minY);
- setWidth(maxW);
- setHeight(maxH);
- } else {
- setX(restoreX);
- setY(restoreY);
- setWidth(restoreW);
- setHeight(restoreH);
- }
- }
- });
-
- windowBtns = new HBox(3);
- windowBtns.getStyleClass().add("window-buttons");
- windowBtns.getChildren().addAll(minButton, maxButton, closeButton);
-
- toolBar.getItems().addAll(titleLabel, spacer, windowBtns);
- root.setTop(toolBar);
-
- resizeCorner = new Rectangle(10, 10);
- resizeCorner.getStyleClass().add("window-resize-corner");
-
- // add window resizing
- EventHandler resizeHandler = new EventHandler() {
- private double width;
- private double height;
- private Point2D dragAnchor;
-
- @Override public void handle(MouseEvent event) {
- EventType type = event.getEventType();
-
- if (type == MouseEvent.MOUSE_PRESSED) {
- width = getWidth();
- height = getHeight();
- dragAnchor = new Point2D(event.getSceneX(), event.getSceneY());
- } else if (type == MouseEvent.MOUSE_DRAGGED) {
- setWidth(Math.max(decoratedRoot.minWidth(-1), width + (event.getSceneX() - dragAnchor.getX())));
- setHeight(Math.max(decoratedRoot.minHeight(-1), height + (event.getSceneY() - dragAnchor.getY())));
- }
- }
- };
- resizeCorner.setOnMousePressed(resizeHandler);
- resizeCorner.setOnMouseDragged(resizeHandler);
-
- resizeCorner.setManaged(false);
- decoratedRoot.getChildren().add(resizeCorner);
- }
-
- void setContentPane(Pane pane) {
- if (pane.getId() == null) {
- pane.getStyleClass().add("content-pane");
- }
- root.setCenter(pane);
- }
-
- public void setIconifiable(boolean iconifiable) {
- minButton.setVisible(iconifiable);
- }
-
- private static class WindowButton extends Button {
- WindowButton(String name) {
- getStyleClass().setAll("window-button");
- getStyleClass().add("window-"+name+"-button");
- StackPane graphic = new StackPane();
- graphic.getStyleClass().setAll("graphic");
- setGraphic(graphic);
- setMinSize(17, 17);
- setPrefSize(17, 17);
- }
- }
-
- /***************************************************************************
- * *
- * Stylesheet Handling *
- * *
- **************************************************************************/
- private static final PseudoClass ACTIVE_PSEUDO_CLASS = PseudoClass.getPseudoClass("active");
-
-}
-
diff --git a/javafx-ui-controls/src/com/preview/javafx/scene/control/UITextArea.java b/javafx-ui-controls/src/com/preview/javafx/scene/control/UITextArea.java
deleted file mode 100644
--- a/javafx-ui-controls/src/com/preview/javafx/scene/control/UITextArea.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation. Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-package com.preview.javafx.scene.control;
-
-import javafx.scene.control.Label;
-
-class UITextArea extends Label {
- double preferred_width = 360;
-
- /** Creates a new instance of UITextArea
- */
- public UITextArea(String text) {
- setText(text);
- init();
- }
-
- /** Creates a new instance of UITextArea with
- * specified preferred width.
- * This is used by the dialog UI template.
- */
- public UITextArea(double my_width) {
- preferred_width = my_width;
- init();
- }
-
- private void init() {
- setPrefWidth(preferred_width);
- setMinSize(USE_PREF_SIZE, USE_PREF_SIZE);
- setWrapText(true);
- }
-}
diff --git a/javafx-ui-controls/src/com/preview/javafx/scene/control/dialogs.css b/javafx-ui-controls/src/com/preview/javafx/scene/control/dialogs.css
deleted file mode 100644
--- a/javafx-ui-controls/src/com/preview/javafx/scene/control/dialogs.css
+++ /dev/null
@@ -1,143 +0,0 @@
-
-/**** Window buttons: Close, Minimize, Maximize ****/
-
-.dialog {
- -fx-padding: -1;
- -fx-border-insets: 0 10 10 0;
- -fx-border-width: 2;
- -fx-border-radius: 5 5 0 0;
- -fx-effect: dropshadow(three-pass-box, rgba(0, 0, 0, 0.2), 11, 0.0, 3, 3);
- -fx-border-color: #a3a3a3;
-}
-
-.dialog:active {
- -fx-effect: dropshadow(three-pass-box, rgba(0, 0, 0, 0.4), 11, 0.0, 3, 3);
- -fx-border-color: #3e3e3e;
-}
-
-.dialog .window-header {
- -fx-padding: 0 3 0 8;
- -fx-background-color: linear-gradient(#cccccc, #bababa 37%, #a6a6a6);
- -fx-background-radius: 5 5 0 0;
-}
-
-.dialog:active .window-header {
- -fx-background-color: linear-gradient(#595959, #474747 37%, #343434);
-}
-
-.dialog .window-title {
- -fx-padding: 4 0 0 0;
- -fx-alignment: bottom_center;
- -fx-font: 15px "Amble Cn";
- -fx-text-fill: #808080;
-}
-
-.dialog:active .window-title {
- -fx-text-fill: #ebebeb;
-}
-
-.dialog .window-resize-corner {
- -fx-fill: transparent;
- -fx-cursor: se_resize;
-}
-
-.dialog .window-buttons .window-button {
- -fx-skin: "com.sun.javafx.scene.control.skin.ButtonSkin";
- -fx-background-color: transparent transparent;
- -fx-background-insets: 0, 1;
- -fx-background-radius: 2;
- -fx-padding: 0 0 0 0;
- -fx-alignment: center;
-}
-
-.dialog:active .window-button:hover {
- -fx-background-color: linear-gradient(#505050,#2d2d2d),
- linear-gradient(#a3a3a3, #8b8b8b 34%, #777777 36%, #777777 63%, #8b8b8b 65%, #adadad);
-}
-
-.dialog .window-buttons {
- -fx-padding: 6 0 0 0;
-}
-
-.dialog .window-button:pressed {
- -fx-background-color: linear-gradient(#515151,#202020),
- linear-gradient(#a3a3a3, #8b8b8b 34%, #777777 36%, #777777 63%, #8b8b8b 65%, #adadad);
-}
-
-.dialog .window-button .graphic {
- -fx-background-color: #949494;
- -fx-scale-shape: false;
- -fx-padding: 4.5 4.5 4.5 4.5; /* Graphic is 9x9 px */
-}
-
-.dialog:active .window-button:hover .graphic {
- -fx-background-color: #fefeff;
-}
-
-.dialog .window-button:pressed .graphic {
- -fx-background-color: #cfcfcf;
-}
-
-.dialog .window-close-button .graphic {
- -fx-shape: "M395.992,296.758l1.794-1.794l7.292,7.292l-1.795,1.794 L395.992,296.758z M403.256,294.992l1.794,1.794l-7.292,7.292l-1.794-1.795 L403.256,294.992z";
-}
-
-.dialog .window-minimize-button .graphic {
- -fx-shape: "M420.012,299.248v2.537h-9.001v-2.537H420.012z";
-}
-
-.dialog .window-maximize-button .graphic {
- -fx-shape: "M406.283,294.985h2.537v9.031h-2.538L406.283,294.985z M412.012,298.248v2.537h-9.001v-2.537H412.012z";
-}
-
-.dialog .content-pane {
- -fx-background-color: #eeeeee;
- -fx-text-fill: #292929;
-}
-
-.dialog .top-panel {
- -fx-padding: 10 14 10 14;
- -fx-background-color: linear-gradient(#e2e2e2,#e2e2e2,#eeeeee);
-}
-
-.dialog .masthead-label-1 {
- -fx-font: 15px "Amble Cn";
- -fx-wrap-text: true;
-}
-
-.dialog .masthead-label-2 {
- -fx-font: 15px "Amble Cn";
- -fx-wrap-text: true;
- -fx-text-fill: #646464;
-}
-
-.dialog .center-panel {
- -fx-padding: 16 16 14 28;
- -fx-spacing: 14;
- -fx-background-color: linear-gradient(#ffffff,#f3f3f4);
- -fx-border-width: 1 1 1 1;
- -fx-border-color: #b4b4b4 white #b4b4b4 white;
- -fx-font: 13px "Amble Cn";
-}
-
-.dialog .center-panel .button-bar {
- -fx-alignment: center-right;
- -fx-padding: 8 8 8 8;
-}
-
-.dialog .bottom-panel {
- -fx-padding: 14 14 14 14;
- -fx-spacing: 14;
- -fx-background-color: linear-gradient(#eeeeee,#e2e2e2,#e2e2e2);
- -fx-alignment: center-left;
-}
-
-.dialog .more-info-dialog {
- -fx-background-color: #eeeeee;
- -fx-padding: 15 18 8 18;
-}
-
-.dialog .more-info-dialog .button-panel {
- -fx-padding: 12 0 12 12;
- -fx-alignment: CENTER_RIGHT;
-}