mirror of
https://gitlab.com/kauron/jstudy
synced 2024-11-13 07:33:44 +01:00
Save protocol update
This commit is contained in:
parent
9450056e6f
commit
30a6ddaee2
5 changed files with 149 additions and 72 deletions
|
@ -2,9 +2,12 @@ package es.kauron.jstudy.controller;
|
||||||
|
|
||||||
import es.kauron.jstudy.Main;
|
import es.kauron.jstudy.Main;
|
||||||
import es.kauron.jstudy.model.TestItem;
|
import es.kauron.jstudy.model.TestItem;
|
||||||
|
import javafx.application.Platform;
|
||||||
import javafx.beans.property.BooleanProperty;
|
import javafx.beans.property.BooleanProperty;
|
||||||
import javafx.beans.property.SimpleBooleanProperty;
|
import javafx.beans.property.SimpleBooleanProperty;
|
||||||
import javafx.event.ActionEvent;
|
import javafx.event.ActionEvent;
|
||||||
|
import javafx.event.Event;
|
||||||
|
import javafx.event.EventHandler;
|
||||||
import javafx.fxml.FXML;
|
import javafx.fxml.FXML;
|
||||||
import javafx.fxml.FXMLLoader;
|
import javafx.fxml.FXMLLoader;
|
||||||
import javafx.fxml.Initializable;
|
import javafx.fxml.Initializable;
|
||||||
|
@ -24,22 +27,25 @@ public class Controller implements Initializable {
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private BorderPane root;
|
private BorderPane root;
|
||||||
@FXML
|
|
||||||
private ToolBar toolbar;
|
|
||||||
@FXML
|
|
||||||
private MenuItem saveMenu;
|
|
||||||
|
|
||||||
private BooleanProperty table = new SimpleBooleanProperty(false);
|
private BooleanProperty table = new SimpleBooleanProperty(false);
|
||||||
private Map<Tab, TableController> tabMap = new HashMap<>();
|
private Map<Tab, TableController> tabMap = new HashMap<>();
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void initialize(URL url, ResourceBundle resourceBundle) {
|
public void initialize(URL url, ResourceBundle resourceBundle) {
|
||||||
tabPane.getSelectionModel().selectedItemProperty().addListener((change, o, n) -> {
|
tabPane.getSelectionModel().selectedItemProperty().addListener((ob, o, n) -> table.set(tabMap.get(n) != null));
|
||||||
if (tabMap.get(n) != null) {
|
Platform.runLater(() ->
|
||||||
table.set(true);
|
root.getScene().getWindow().setOnCloseRequest(event -> {
|
||||||
} else table.set(false);
|
for (Tab tab : tabPane.getTabs()) {
|
||||||
});
|
EventHandler<Event> handler = tab.getOnCloseRequest();
|
||||||
saveMenu.disableProperty().bind(table.not());
|
if (tab.isClosable() && handler != null) {
|
||||||
|
tabPane.getSelectionModel().select(tab);
|
||||||
|
handler.handle(event);
|
||||||
|
if (event.isConsumed()) return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
|
@ -63,7 +69,7 @@ public class Controller implements Initializable {
|
||||||
dialog.showAndWait();
|
dialog.showAndWait();
|
||||||
dialog.setResultConverter(value -> value.getButtonData().equals(ButtonBar.ButtonData.OK_DONE) ? value.getText() : "");
|
dialog.setResultConverter(value -> value.getButtonData().equals(ButtonBar.ButtonData.OK_DONE) ? value.getText() : "");
|
||||||
if (dialog.getResult() == null || dialog.getResult().isEmpty()) return;
|
if (dialog.getResult() == null || dialog.getResult().isEmpty()) return;
|
||||||
tabPane.getTabs().add(createTableTab(dialog.getResult(), new ArrayList<>()));
|
tabPane.getTabs().add(createTableTab(dialog.getResult(), new ArrayList<>(), null));
|
||||||
tabPane.getSelectionModel().selectLast();
|
tabPane.getSelectionModel().selectLast();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -75,20 +81,11 @@ public class Controller implements Initializable {
|
||||||
if (file == null) return;
|
if (file == null) return;
|
||||||
List<TestItem> aux = TestItem.loadFrom(file, TestItem.COLONS);
|
List<TestItem> aux = TestItem.loadFrom(file, TestItem.COLONS);
|
||||||
if (aux != null) {
|
if (aux != null) {
|
||||||
tabPane.getTabs().add(createTableTab(file.getName().substring(0, file.getName().lastIndexOf('.')), aux));
|
tabPane.getTabs().add(createTableTab(file.getName().substring(0, file.getName().lastIndexOf('.')), aux, file));
|
||||||
tabPane.getSelectionModel().selectLast();
|
tabPane.getSelectionModel().selectLast();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
|
||||||
private void onSaveAction(ActionEvent event) {
|
|
||||||
FileChooser chooser = new FileChooser();
|
|
||||||
chooser.getExtensionFilters().add(new FileChooser.ExtensionFilter("JStudy file", "*.jsdb"));
|
|
||||||
File file = chooser.showSaveDialog(root.getScene().getWindow());
|
|
||||||
if (file == null) return;
|
|
||||||
TestItem.saveTo(file, tabMap.get(tabPane.getSelectionModel().getSelectedItem()).getData());
|
|
||||||
}
|
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private void onImportAction(ActionEvent event) {
|
private void onImportAction(ActionEvent event) {
|
||||||
FileChooser chooser = new FileChooser();
|
FileChooser chooser = new FileChooser();
|
||||||
|
@ -104,22 +101,37 @@ public class Controller implements Initializable {
|
||||||
separator = TestItem.COMMA;
|
separator = TestItem.COMMA;
|
||||||
List<TestItem> aux = TestItem.loadFrom(file, separator);
|
List<TestItem> aux = TestItem.loadFrom(file, separator);
|
||||||
if (aux != null) {
|
if (aux != null) {
|
||||||
tabPane.getTabs().add(createTableTab(file.getName().substring(0, file.getName().lastIndexOf('.')), aux));
|
tabPane.getTabs().add(createTableTab(file.getName().substring(0, file.getName().lastIndexOf('.')), aux, null));
|
||||||
tabPane.getSelectionModel().selectLast();
|
tabPane.getSelectionModel().selectLast();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private Tab createTableTab(String name, List<TestItem> list) {
|
private Tab createTableTab(String name, List<TestItem> list, File file) {
|
||||||
try {
|
try {
|
||||||
Tab tab = new Tab(name);
|
Tab tab = new Tab(name);
|
||||||
|
|
||||||
FXMLLoader loader = new FXMLLoader(Main.class.getResource("view/table.fxml"));
|
FXMLLoader loader = new FXMLLoader(Main.class.getResource("view/table.fxml"));
|
||||||
Parent tableRoot = loader.load();
|
Parent tableRoot = loader.load();
|
||||||
|
|
||||||
((TableController) loader.getController()).setData(list, this);
|
((TableController) loader.getController()).setData(list, this, file);
|
||||||
tabMap.put(tab, loader.getController());
|
tabMap.put(tab, loader.getController());
|
||||||
|
|
||||||
tab.setContent(tableRoot);
|
tab.setContent(tableRoot);
|
||||||
|
tab.setOnCloseRequest(event -> {
|
||||||
|
if (!((TableController) loader.getController()).saved.get()) {
|
||||||
|
Alert dialog = new Alert(Alert.AlertType.WARNING);
|
||||||
|
dialog.setHeaderText("The tab " + name + " has unsaved information");
|
||||||
|
dialog.setContentText("Do you want to save those changes?");
|
||||||
|
dialog.getButtonTypes().clear();
|
||||||
|
dialog.getButtonTypes().addAll(ButtonType.YES, ButtonType.NO, ButtonType.CANCEL);
|
||||||
|
dialog.showAndWait();
|
||||||
|
if (dialog.getResult().equals(ButtonType.YES)) {
|
||||||
|
((TableController) loader.getController()).onSaveAction(null);
|
||||||
|
} else if (dialog.getResult().equals(ButtonType.CANCEL)) {
|
||||||
|
event.consume();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
return tab;
|
return tab;
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package es.kauron.jstudy.controller;
|
package es.kauron.jstudy.controller;
|
||||||
|
|
||||||
import es.kauron.jstudy.model.TestItem;
|
import es.kauron.jstudy.model.TestItem;
|
||||||
|
import javafx.beans.property.BooleanProperty;
|
||||||
import javafx.collections.ObservableList;
|
import javafx.collections.ObservableList;
|
||||||
import javafx.event.ActionEvent;
|
import javafx.event.ActionEvent;
|
||||||
import javafx.fxml.FXML;
|
import javafx.fxml.FXML;
|
||||||
|
@ -18,18 +19,21 @@ public class EditController implements Initializable {
|
||||||
private ObservableList<TestItem> list;
|
private ObservableList<TestItem> list;
|
||||||
private int index;
|
private int index;
|
||||||
private TestItem item;
|
private TestItem item;
|
||||||
|
private BooleanProperty saved;
|
||||||
|
private String originalQuestion, originalAnswer;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void initialize(URL url, ResourceBundle rb) {
|
public void initialize(URL url, ResourceBundle rb) {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void setList(ObservableList list) {
|
protected void setList(ObservableList list, BooleanProperty saved) {
|
||||||
setList(list, -1);
|
setList(list, -1, saved);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void setList(ObservableList<TestItem> list, int index) {
|
protected void setList(ObservableList<TestItem> list, int index, BooleanProperty saved) {
|
||||||
this.list = list; // Save attributes correctly
|
this.list = list; // Save attributes correctly
|
||||||
this.index = index;
|
this.index = index;
|
||||||
|
this.saved = saved;
|
||||||
// Copy current values to textViews
|
// Copy current values to textViews
|
||||||
// and initialize item to hold the current object in edition
|
// and initialize item to hold the current object in edition
|
||||||
if (index < 0) item = new TestItem("","");
|
if (index < 0) item = new TestItem("","");
|
||||||
|
@ -38,12 +42,14 @@ public class EditController implements Initializable {
|
||||||
answerText.setText(list.get(index).getAnswer());
|
answerText.setText(list.get(index).getAnswer());
|
||||||
item = new TestItem(list.get(index));
|
item = new TestItem(list.get(index));
|
||||||
}
|
}
|
||||||
|
originalQuestion = questionText.getText();
|
||||||
|
originalAnswer = answerText.getText();
|
||||||
item.questionProperty().bind(questionText.textProperty());
|
item.questionProperty().bind(questionText.textProperty());
|
||||||
item.answerProperty().bind(answerText.textProperty());
|
item.answerProperty().bind(answerText.textProperty());
|
||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private void onSaveAction(ActionEvent event) {
|
protected void onSaveAction(ActionEvent event) {
|
||||||
if (index < 0) {
|
if (index < 0) {
|
||||||
if (!item.isValid())
|
if (!item.isValid())
|
||||||
return;
|
return;
|
||||||
|
@ -51,11 +57,12 @@ public class EditController implements Initializable {
|
||||||
} else {
|
} else {
|
||||||
list.set(index, item);
|
list.set(index, item);
|
||||||
}
|
}
|
||||||
|
if (!originalQuestion.equals(item.getQuestion()) || !originalAnswer.equals(item.getAnswer())) saved.set(false);
|
||||||
onCancelAction(event);
|
onCancelAction(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private void onCancelAction(ActionEvent event) {
|
protected void onCancelAction(ActionEvent event) {
|
||||||
((Stage) ((Node) event.getSource())
|
((Stage) ((Node) event.getSource())
|
||||||
.getScene().getWindow())
|
.getScene().getWindow())
|
||||||
.close();
|
.close();
|
||||||
|
|
|
@ -2,7 +2,10 @@ package es.kauron.jstudy.controller;
|
||||||
|
|
||||||
import es.kauron.jstudy.Main;
|
import es.kauron.jstudy.Main;
|
||||||
import es.kauron.jstudy.model.TestItem;
|
import es.kauron.jstudy.model.TestItem;
|
||||||
|
import javafx.beans.property.BooleanProperty;
|
||||||
|
import javafx.beans.property.SimpleBooleanProperty;
|
||||||
import javafx.collections.FXCollections;
|
import javafx.collections.FXCollections;
|
||||||
|
import javafx.collections.ListChangeListener;
|
||||||
import javafx.collections.ObservableList;
|
import javafx.collections.ObservableList;
|
||||||
import javafx.event.ActionEvent;
|
import javafx.event.ActionEvent;
|
||||||
import javafx.fxml.FXML;
|
import javafx.fxml.FXML;
|
||||||
|
@ -14,9 +17,11 @@ import javafx.scene.control.Button;
|
||||||
import javafx.scene.control.SelectionMode;
|
import javafx.scene.control.SelectionMode;
|
||||||
import javafx.scene.control.TableColumn;
|
import javafx.scene.control.TableColumn;
|
||||||
import javafx.scene.control.TableView;
|
import javafx.scene.control.TableView;
|
||||||
|
import javafx.stage.FileChooser;
|
||||||
import javafx.stage.Modality;
|
import javafx.stage.Modality;
|
||||||
import javafx.stage.Stage;
|
import javafx.stage.Stage;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -28,42 +33,55 @@ public class TableController implements Initializable {
|
||||||
@FXML
|
@FXML
|
||||||
private TableColumn<TestItem, String> answerCol, questionCol;
|
private TableColumn<TestItem, String> answerCol, questionCol;
|
||||||
@FXML
|
@FXML
|
||||||
private Button editButton, duplicateButton, swapButton, testSelectionButton, deleteButton;
|
private Button editButton, duplicateButton, swapButton, testSelectionButton, deleteButton, saveButton;
|
||||||
|
|
||||||
private ObservableList<TestItem> data;
|
private ObservableList<TestItem> data;
|
||||||
private Controller parent;
|
private Controller parent;
|
||||||
|
private File file;
|
||||||
|
protected BooleanProperty saved = new SimpleBooleanProperty();
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void initialize(URL url, ResourceBundle resourceBundle) {
|
public void initialize(URL url, ResourceBundle resourceBundle) {
|
||||||
table.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
|
table.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
|
||||||
answerCol.setCellValueFactory(e -> e.getValue().answerProperty());
|
answerCol.setCellValueFactory(e -> e.getValue().answerProperty());
|
||||||
questionCol.setCellValueFactory(e -> e.getValue().questionProperty());
|
questionCol.setCellValueFactory(e -> e.getValue().questionProperty());
|
||||||
bindButtons();
|
table.getSelectionModel().getSelectedIndices().addListener((ListChangeListener<? super Integer>) obs -> {
|
||||||
|
editButton.setDisable(obs.getList().size() != 1);
|
||||||
|
swapButton.setDisable(obs.getList().size() < 1);
|
||||||
|
deleteButton.setDisable(obs.getList().size() < 1);
|
||||||
|
duplicateButton.setDisable(obs.getList().size() < 1);
|
||||||
|
testSelectionButton.setDisable(obs.getList().size() < 1);
|
||||||
|
});
|
||||||
|
saveButton.disableProperty().bind(saved);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void bindButtons() {
|
void setData(List<TestItem> list, Controller controller, File file) {
|
||||||
editButton.disableProperty().bind(table.getSelectionModel().selectedIndexProperty().lessThan(0));
|
|
||||||
swapButton.disableProperty().bind(table.getSelectionModel().selectedIndexProperty().lessThan(0));
|
|
||||||
deleteButton.disableProperty().bind(table.getSelectionModel().selectedIndexProperty().lessThan(0));
|
|
||||||
duplicateButton.disableProperty().bind(table.getSelectionModel().selectedIndexProperty().lessThan(0));
|
|
||||||
testSelectionButton.disableProperty().bind(table.getSelectionModel().selectedIndexProperty().lessThan(0));
|
|
||||||
}
|
|
||||||
|
|
||||||
void setData(List<TestItem> list, Controller controller) {
|
|
||||||
this.data = FXCollections.observableArrayList(list);
|
this.data = FXCollections.observableArrayList(list);
|
||||||
this.parent = controller;
|
this.parent = controller;
|
||||||
table.setItems(data);
|
table.setItems(data);
|
||||||
|
this.file = file;
|
||||||
|
saved.set(file != null);
|
||||||
}
|
}
|
||||||
|
|
||||||
List<TestItem> getData() {return data;}
|
@FXML
|
||||||
|
protected void onSaveAction(ActionEvent event) {
|
||||||
|
if (file == null) {
|
||||||
|
FileChooser chooser = new FileChooser();
|
||||||
|
chooser.getExtensionFilters().add(new FileChooser.ExtensionFilter("JStudy file", "*.jsdb"));
|
||||||
|
file = chooser.showSaveDialog(table.getScene().getWindow());
|
||||||
|
}
|
||||||
|
if (file == null) return;
|
||||||
|
TestItem.saveTo(file, data);
|
||||||
|
saved.set(true);
|
||||||
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private void onAddAction(ActionEvent event) {
|
protected void onAddAction(ActionEvent event) {
|
||||||
try {
|
try {
|
||||||
FXMLLoader cargador = new FXMLLoader(Main.class.getResource("view/edit.fxml"));
|
FXMLLoader cargador = new FXMLLoader(Main.class.getResource("view/edit.fxml"));
|
||||||
Parent pRoot = cargador.load();
|
Parent pRoot = cargador.load();
|
||||||
|
|
||||||
((EditController) cargador.getController()).setList(data);
|
((EditController) cargador.getController()).setList(data, saved);
|
||||||
|
|
||||||
Stage stage = new Stage();
|
Stage stage = new Stage();
|
||||||
stage.setTitle("New entry");
|
stage.setTitle("New entry");
|
||||||
|
@ -76,7 +94,7 @@ public class TableController implements Initializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private void onEditAction(ActionEvent event) {
|
protected void onEditAction(ActionEvent event) {
|
||||||
ObservableList<Integer> list = table.getSelectionModel().getSelectedIndices();
|
ObservableList<Integer> list = table.getSelectionModel().getSelectedIndices();
|
||||||
if (list.size() != 1) return;
|
if (list.size() != 1) return;
|
||||||
int index = list.get(0);
|
int index = list.get(0);
|
||||||
|
@ -84,7 +102,7 @@ public class TableController implements Initializable {
|
||||||
FXMLLoader cargador = new FXMLLoader(Main.class.getResource("view/edit.fxml"));
|
FXMLLoader cargador = new FXMLLoader(Main.class.getResource("view/edit.fxml"));
|
||||||
Parent root = cargador.load();
|
Parent root = cargador.load();
|
||||||
|
|
||||||
((EditController) cargador.getController()).setList(table.getItems(), index);
|
((EditController) cargador.getController()).setList(table.getItems(), index, saved);
|
||||||
|
|
||||||
Stage stage = new Stage();
|
Stage stage = new Stage();
|
||||||
stage.setTitle("Editing entry...");
|
stage.setTitle("Editing entry...");
|
||||||
|
@ -97,7 +115,8 @@ public class TableController implements Initializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private void onSwapAction(ActionEvent event) {
|
protected void onSwapAction(ActionEvent event) {
|
||||||
|
if (table.getSelectionModel().getSelectedIndices().size() > 0) saved.set(false);
|
||||||
for (TestItem item : table.getSelectionModel().getSelectedItems()) {
|
for (TestItem item : table.getSelectionModel().getSelectedItems()) {
|
||||||
String question = item.getQuestion();
|
String question = item.getQuestion();
|
||||||
item.questionProperty().set(item.getAnswer());
|
item.questionProperty().set(item.getAnswer());
|
||||||
|
@ -107,26 +126,28 @@ public class TableController implements Initializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private void onDuplicateAction(ActionEvent event) {
|
protected void onDuplicateAction(ActionEvent event) {
|
||||||
|
if (table.getSelectionModel().getSelectedIndices().size() > 0) saved.set(false);
|
||||||
for (int i : table.getSelectionModel().getSelectedIndices())
|
for (int i : table.getSelectionModel().getSelectedIndices())
|
||||||
table.getItems().add(new TestItem(table.getItems().get(i)));
|
table.getItems().add(new TestItem(table.getItems().get(i)));
|
||||||
table.requestFocus();
|
table.requestFocus();
|
||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private void onDeleteAction(ActionEvent event) {
|
protected void onDeleteAction(ActionEvent event) {
|
||||||
|
if (table.getSelectionModel().getSelectedIndices().size() > 0) saved.set(false);
|
||||||
for (int i : table.getSelectionModel().getSelectedIndices())
|
for (int i : table.getSelectionModel().getSelectedIndices())
|
||||||
table.getItems().remove(i);
|
table.getItems().remove(i);
|
||||||
table.requestFocus();
|
table.requestFocus();
|
||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private void onTestSelectionAction(ActionEvent event) {
|
protected void onTestSelectionAction(ActionEvent event) {
|
||||||
parent.newTest(table.getSelectionModel().getSelectedItems());
|
parent.newTest(table.getSelectionModel().getSelectedItems());
|
||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private void onTestAction(ActionEvent event) {
|
protected void onTestAction(ActionEvent event) {
|
||||||
parent.newTest(data);
|
parent.newTest(data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,10 @@
|
||||||
<Image url="@../img/File.png" />
|
<Image url="@../img/File.png" />
|
||||||
</image>
|
</image>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
</graphic></Button>
|
</graphic>
|
||||||
|
<tooltip>
|
||||||
|
<Tooltip text="Create new empty table" />
|
||||||
|
</tooltip></Button>
|
||||||
<Button alignment="TOP_LEFT" onAction="#onLoadAction" prefWidth="150.0" text="_Load file">
|
<Button alignment="TOP_LEFT" onAction="#onLoadAction" prefWidth="150.0" text="_Load file">
|
||||||
<graphic>
|
<graphic>
|
||||||
<ImageView fitHeight="30.0" fitWidth="30.0" pickOnBounds="true" preserveRatio="true">
|
<ImageView fitHeight="30.0" fitWidth="30.0" pickOnBounds="true" preserveRatio="true">
|
||||||
|
@ -29,7 +32,10 @@
|
||||||
<Image url="@../img/Open%20Folder.png" />
|
<Image url="@../img/Open%20Folder.png" />
|
||||||
</image>
|
</image>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
</graphic></Button>
|
</graphic>
|
||||||
|
<tooltip>
|
||||||
|
<Tooltip text="Open an existing table from a file" />
|
||||||
|
</tooltip></Button>
|
||||||
<Button alignment="TOP_LEFT" layoutX="260.0" layoutY="187.0" onAction="#onImportAction" prefWidth="150.0" text="_Import data">
|
<Button alignment="TOP_LEFT" layoutX="260.0" layoutY="187.0" onAction="#onImportAction" prefWidth="150.0" text="_Import data">
|
||||||
<graphic>
|
<graphic>
|
||||||
<ImageView fitHeight="30.0" fitWidth="30.0" pickOnBounds="true" preserveRatio="true">
|
<ImageView fitHeight="30.0" fitWidth="30.0" pickOnBounds="true" preserveRatio="true">
|
||||||
|
@ -37,7 +43,10 @@
|
||||||
<Image url="@../img/Download.png" />
|
<Image url="@../img/Download.png" />
|
||||||
</image>
|
</image>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
</graphic></Button>
|
</graphic>
|
||||||
|
<tooltip>
|
||||||
|
<Tooltip text="Import data from other table-based software" />
|
||||||
|
</tooltip></Button>
|
||||||
<Button alignment="TOP_LEFT" layoutX="260.0" layoutY="208.0" onAction="#onSettingsAction" prefWidth="150.0" text="_Settings">
|
<Button alignment="TOP_LEFT" layoutX="260.0" layoutY="208.0" onAction="#onSettingsAction" prefWidth="150.0" text="_Settings">
|
||||||
<graphic>
|
<graphic>
|
||||||
<ImageView fitHeight="30.0" fitWidth="30.0" pickOnBounds="true" preserveRatio="true">
|
<ImageView fitHeight="30.0" fitWidth="30.0" pickOnBounds="true" preserveRatio="true">
|
||||||
|
@ -45,7 +54,10 @@
|
||||||
<Image url="@../img/Settings.png" />
|
<Image url="@../img/Settings.png" />
|
||||||
</image>
|
</image>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
</graphic></Button>
|
</graphic>
|
||||||
|
<tooltip>
|
||||||
|
<Tooltip text="Change the settings" />
|
||||||
|
</tooltip></Button>
|
||||||
</children>
|
</children>
|
||||||
<padding>
|
<padding>
|
||||||
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
@ -86,19 +98,6 @@
|
||||||
</ImageView>
|
</ImageView>
|
||||||
</graphic>
|
</graphic>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
<MenuItem fx:id="saveMenu" onAction="#onSaveAction" text="_Save">
|
|
||||||
<accelerator>
|
|
||||||
<KeyCodeCombination alt="UP" code="S" control="DOWN" meta="UP" shift="UP" shortcut="UP" />
|
|
||||||
</accelerator>
|
|
||||||
<graphic>
|
|
||||||
<ImageView fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true">
|
|
||||||
<image>
|
|
||||||
<Image url="@../img/Save.png" />
|
|
||||||
</image>
|
|
||||||
</ImageView>
|
|
||||||
</graphic>
|
|
||||||
</MenuItem>
|
|
||||||
<SeparatorMenuItem mnemonicParsing="false" />
|
|
||||||
<MenuItem onAction="#onImportAction" text="_Import">
|
<MenuItem onAction="#onImportAction" text="_Import">
|
||||||
<graphic>
|
<graphic>
|
||||||
<ImageView fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true">
|
<ImageView fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true">
|
||||||
|
|
|
@ -1,13 +1,12 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
|
||||||
<?import javafx.geometry.Insets?>
|
<?import javafx.geometry.Insets?>
|
||||||
<?import javafx.scene.control.*?>
|
<?import javafx.scene.control.*?>
|
||||||
<?import javafx.scene.image.*?>
|
<?import javafx.scene.image.*?>
|
||||||
<?import javafx.scene.layout.*?>
|
<?import javafx.scene.layout.*?>
|
||||||
<HBox xmlns="http://javafx.com/javafx/8.0.76-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="es.kauron.jstudy.controller.TableController">
|
<HBox xmlns="http://javafx.com/javafx/8.0.76-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="es.kauron.jstudy.controller.TableController">
|
||||||
<children>
|
<children>
|
||||||
<TableView fx:id="table" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="400.0" HBox.hgrow="ALWAYS">
|
<TableView fx:id="table" minHeight="-Infinity" minWidth="-Infinity" prefHeight="380.0" prefWidth="400.0" HBox.hgrow="ALWAYS">
|
||||||
<columns>
|
<columns>
|
||||||
<TableColumn fx:id="questionCol" prefWidth="75.0" text="Question" />
|
<TableColumn fx:id="questionCol" prefWidth="75.0" text="Question" />
|
||||||
<TableColumn fx:id="answerCol" prefWidth="75.0" text="Answer" />
|
<TableColumn fx:id="answerCol" prefWidth="75.0" text="Answer" />
|
||||||
|
@ -18,7 +17,25 @@
|
||||||
</TableView>
|
</TableView>
|
||||||
<VBox spacing="5.0">
|
<VBox spacing="5.0">
|
||||||
<children>
|
<children>
|
||||||
<Button defaultButton="true" onAction="#onAddAction" prefWidth="105.0" text="_Add" />
|
<Button fx:id="saveButton" alignment="CENTER" contentDisplay="CENTER" layoutX="10.0" layoutY="163.0" onAction="#onSaveAction" prefWidth="105.0">
|
||||||
|
<graphic>
|
||||||
|
<ImageView fitHeight="50.0" fitWidth="50.0" pickOnBounds="true" preserveRatio="true">
|
||||||
|
<image>
|
||||||
|
<Image url="@../img/Save.png" />
|
||||||
|
</image>
|
||||||
|
</ImageView>
|
||||||
|
</graphic>
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets />
|
||||||
|
</VBox.margin>
|
||||||
|
<tooltip>
|
||||||
|
<Tooltip text="Save table to a file for future use" />
|
||||||
|
</tooltip>
|
||||||
|
</Button>
|
||||||
|
<Button defaultButton="true" onAction="#onAddAction" prefWidth="105.0" text="_Add">
|
||||||
|
<tooltip>
|
||||||
|
<Tooltip text="Add a new entry to the table" />
|
||||||
|
</tooltip></Button>
|
||||||
<Button fx:id="editButton" alignment="TOP_LEFT" onAction="#onEditAction" prefWidth="105.0" text="_Edit">
|
<Button fx:id="editButton" alignment="TOP_LEFT" onAction="#onEditAction" prefWidth="105.0" text="_Edit">
|
||||||
<graphic>
|
<graphic>
|
||||||
<ImageView fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true">
|
<ImageView fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true">
|
||||||
|
@ -27,6 +44,9 @@
|
||||||
</image>
|
</image>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
</graphic>
|
</graphic>
|
||||||
|
<tooltip>
|
||||||
|
<Tooltip text="Edit the selected entry" />
|
||||||
|
</tooltip>
|
||||||
</Button>
|
</Button>
|
||||||
<Button fx:id="swapButton" alignment="TOP_LEFT" layoutX="10.0" layoutY="76.0" onAction="#onSwapAction" prefWidth="105.0" text="S_wap">
|
<Button fx:id="swapButton" alignment="TOP_LEFT" layoutX="10.0" layoutY="76.0" onAction="#onSwapAction" prefWidth="105.0" text="S_wap">
|
||||||
<graphic>
|
<graphic>
|
||||||
|
@ -36,6 +56,9 @@
|
||||||
</image>
|
</image>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
</graphic>
|
</graphic>
|
||||||
|
<tooltip>
|
||||||
|
<Tooltip text="Make the answer the question and viceversa" />
|
||||||
|
</tooltip>
|
||||||
</Button>
|
</Button>
|
||||||
<Button fx:id="duplicateButton" alignment="TOP_LEFT" layoutX="10.0" layoutY="76.0" onAction="#onDuplicateAction" prefWidth="105.0" text="D_uplicate">
|
<Button fx:id="duplicateButton" alignment="TOP_LEFT" layoutX="10.0" layoutY="76.0" onAction="#onDuplicateAction" prefWidth="105.0" text="D_uplicate">
|
||||||
<graphic>
|
<graphic>
|
||||||
|
@ -45,6 +68,9 @@
|
||||||
</image>
|
</image>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
</graphic>
|
</graphic>
|
||||||
|
<tooltip>
|
||||||
|
<Tooltip text="Make a copy (may appear at the end)" />
|
||||||
|
</tooltip>
|
||||||
</Button>
|
</Button>
|
||||||
<Button fx:id="deleteButton" alignment="TOP_LEFT" onAction="#onDeleteAction" prefWidth="105.0" text="_Delete">
|
<Button fx:id="deleteButton" alignment="TOP_LEFT" onAction="#onDeleteAction" prefWidth="105.0" text="_Delete">
|
||||||
<graphic>
|
<graphic>
|
||||||
|
@ -54,12 +80,24 @@
|
||||||
</image>
|
</image>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
</graphic>
|
</graphic>
|
||||||
|
<tooltip>
|
||||||
|
<Tooltip text="Delete all selected entries FOREVER" />
|
||||||
|
</tooltip>
|
||||||
</Button>
|
</Button>
|
||||||
<VBox alignment="BOTTOM_CENTER" spacing="5.0" VBox.vgrow="ALWAYS">
|
<VBox alignment="BOTTOM_CENTER" spacing="5.0" VBox.vgrow="ALWAYS">
|
||||||
<children>
|
<children>
|
||||||
<Button fx:id="testSelectionButton" onAction="#onTestSelectionAction" prefWidth="105.0" text="Test _selected" />
|
<Button fx:id="testSelectionButton" onAction="#onTestSelectionAction" prefWidth="105.0" text="Test _selected">
|
||||||
<Button layoutX="10.0" layoutY="273.0" onAction="#onTestAction" prefWidth="105.0" text="_Test all" />
|
<tooltip>
|
||||||
|
<Tooltip text="Begin a test with the selected rows" />
|
||||||
|
</tooltip></Button>
|
||||||
|
<Button layoutX="10.0" layoutY="273.0" onAction="#onTestAction" prefWidth="105.0" text="_Test all">
|
||||||
|
<tooltip>
|
||||||
|
<Tooltip text="Begin a test for the whole table" />
|
||||||
|
</tooltip></Button>
|
||||||
</children>
|
</children>
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets />
|
||||||
|
</VBox.margin>
|
||||||
</VBox>
|
</VBox>
|
||||||
</children>
|
</children>
|
||||||
<HBox.margin>
|
<HBox.margin>
|
||||||
|
|
Loading…
Reference in a new issue