use of org.phoebus.ui.time.TemporalAmountPane.Type.TEMPORAL_AMOUNTS_AND_NOW in project phoebus by ControlSystemStudio.
the class LogEntryCalenderViewController method initialize.
@FXML
public void initialize() {
resize.setText("<");
agenda = new Agenda();
agenda.setEditAppointmentCallback(new Callback<Agenda.Appointment, Void>() {
@Override
public Void call(Appointment appointment) {
return null;
}
});
agenda.setActionCallback((appointment) -> {
// show detailed view
try {
if (map != null) {
final Stage dialog = new Stage();
dialog.initModality(Modality.NONE);
logEntryControl = new LogEntryControl();
logEntryControl.setLog(map.get(appointment));
Scene dialogScene = new Scene(logEntryControl, 300, 200);
dialog.setScene(dialogScene);
dialog.show();
}
} catch (Exception e) {
logger.log(Level.WARNING, "Failed to show details for : " + appointment.getSummary(), e);
}
return null;
});
agenda.allowDraggingProperty().set(false);
agenda.allowResizeProperty().set(false);
appointmentGroupMap = agenda.appointmentGroups().stream().collect(Collectors.toMap(AppointmentGroup::getDescription, Function.identity()));
try {
String styleSheetResource = LogbookUiPreferences.calendar_view_item_stylesheet;
agenda.getStylesheets().add(this.getClass().getResource(styleSheetResource).toString());
} catch (Exception e) {
logger.log(Level.WARNING, "Failed to set css style", e);
}
AnchorPane.setTopAnchor(agenda, 6.0);
AnchorPane.setBottomAnchor(agenda, 6.0);
AnchorPane.setLeftAnchor(agenda, 6.0);
AnchorPane.setRightAnchor(agenda, 6.0);
agendaPane.getChildren().add(agenda);
searchParameters = FXCollections.<Keys, String>observableHashMap();
searchParameters.put(Keys.SEARCH, "*");
searchParameters.put(Keys.STARTTIME, TimeParser.format(java.time.Duration.ofHours(8)));
searchParameters.put(Keys.ENDTIME, TimeParser.format(java.time.Duration.ZERO));
advancedSearchViewController.setSearchParameters(searchParameters);
searchParameters.addListener(new MapChangeListener<Keys, String>() {
@Override
public void onChanged(Change<? extends Keys, ? extends String> change) {
Platform.runLater(() -> {
query.setText(searchParameters.entrySet().stream().sorted(Map.Entry.comparingByKey()).map((e) -> {
return e.getKey().getName().trim() + "=" + e.getValue().trim();
}).collect(Collectors.joining("&")));
});
}
});
query.setText(searchParameters.entrySet().stream().sorted(Map.Entry.comparingByKey()).map((e) -> {
return e.getKey().getName().trim() + "=" + e.getValue().trim();
}).collect(Collectors.joining("&")));
VBox timeBox = new VBox();
TimeRelativeIntervalPane timeSelectionPane = new TimeRelativeIntervalPane(TEMPORAL_AMOUNTS_AND_NOW);
// TODO needs to be initialized from the values in the search parameters
TimeRelativeInterval initial = TimeRelativeInterval.of(java.time.Duration.ofHours(8), java.time.Duration.ZERO);
timeSelectionPane.setInterval(initial);
HBox hbox = new HBox();
hbox.setSpacing(5);
hbox.setAlignment(Pos.CENTER_RIGHT);
Button apply = new Button();
apply.setText("Apply");
apply.setPrefWidth(80);
apply.setOnAction((event) -> {
Platform.runLater(() -> {
TimeRelativeInterval interval = timeSelectionPane.getInterval();
if (interval.isStartAbsolute()) {
searchParameters.put(Keys.STARTTIME, TimestampFormats.MILLI_FORMAT.format(interval.getAbsoluteStart().get()));
} else {
searchParameters.put(Keys.STARTTIME, TimeParser.format(interval.getRelativeStart().get()));
}
if (interval.isEndAbsolute()) {
searchParameters.put(Keys.ENDTIME, TimestampFormats.MILLI_FORMAT.format(interval.getAbsoluteEnd().get()));
} else {
searchParameters.put(Keys.ENDTIME, TimeParser.format(interval.getRelativeEnd().get()));
}
});
});
Button cancel = new Button();
cancel.setText("Cancel");
cancel.setPrefWidth(80);
hbox.getChildren().addAll(apply, cancel);
timeBox.getChildren().addAll(timeSelectionPane, hbox);
// Bind ENTER key press to search
query.addEventFilter(KeyEvent.KEY_PRESSED, event -> {
if (event.getCode() == KeyCode.ENTER) {
search();
}
});
}
Aggregations