|
@@ -2,54 +2,47 @@ package org.cryptomator.ui.dialogs;
|
|
|
|
|
|
import org.cryptomator.ui.common.FxController;
|
|
|
import org.cryptomator.ui.controls.FontAwesome5Icon;
|
|
|
-import org.cryptomator.ui.controls.FontAwesome5IconView;
|
|
|
|
|
|
import javafx.fxml.FXML;
|
|
|
-import javafx.scene.control.Button;
|
|
|
-import javafx.scene.control.Label;
|
|
|
|
|
|
public class SimpleDialogController implements FxController {
|
|
|
|
|
|
- @FXML
|
|
|
- private Label messageLabel;
|
|
|
- @FXML
|
|
|
- private Label descriptionLabel;
|
|
|
- @FXML
|
|
|
- private FontAwesome5IconView iconView;
|
|
|
- @FXML
|
|
|
- private Button okButton;
|
|
|
- @FXML
|
|
|
- private Button cancelButton;
|
|
|
-
|
|
|
- private Runnable okAction;
|
|
|
- private Runnable cancelAction;
|
|
|
-
|
|
|
- public void setMessage(String message) {
|
|
|
- messageLabel.setText(message);
|
|
|
- }
|
|
|
+ private final String message;
|
|
|
+ private final String description;
|
|
|
+ private final FontAwesome5Icon icon;
|
|
|
+ private final String okButtonText;
|
|
|
+ private final String cancelButtonText;
|
|
|
+ private final Runnable okAction;
|
|
|
+ private final Runnable cancelAction;
|
|
|
|
|
|
- public void setDescription(String description) {
|
|
|
- descriptionLabel.setText(description);
|
|
|
+ public SimpleDialogController(String message, String description, FontAwesome5Icon icon, String okButtonText, String cancelButtonText, Runnable okAction, Runnable cancelAction) {
|
|
|
+ this.message = message;
|
|
|
+ this.description = description;
|
|
|
+ this.icon = icon;
|
|
|
+ this.okButtonText = okButtonText;
|
|
|
+ this.cancelButtonText = cancelButtonText;
|
|
|
+ this.okAction = okAction;
|
|
|
+ this.cancelAction = cancelAction;
|
|
|
}
|
|
|
|
|
|
- public void setIcon(FontAwesome5Icon icon) {
|
|
|
- iconView.setGlyph(icon);
|
|
|
+ public String getMessage() {
|
|
|
+ return message;
|
|
|
}
|
|
|
|
|
|
- public void setOkButtonText(String text) {
|
|
|
- okButton.setText(text);
|
|
|
+ public String getDescription() {
|
|
|
+ return description;
|
|
|
}
|
|
|
|
|
|
- public void setCancelButtonText(String text) {
|
|
|
- cancelButton.setText(text);
|
|
|
+ public FontAwesome5Icon getIcon() {
|
|
|
+ return icon;
|
|
|
}
|
|
|
|
|
|
- public void setOkAction(Runnable action) {
|
|
|
- this.okAction = action;
|
|
|
+ public String getOkButtonText() {
|
|
|
+ return okButtonText;
|
|
|
}
|
|
|
|
|
|
- public void setCancelAction(Runnable action) {
|
|
|
- this.cancelAction = action;
|
|
|
+ public String getCancelButtonText() {
|
|
|
+ return cancelButtonText;
|
|
|
}
|
|
|
|
|
|
@FXML
|