Worked on displaying the quickSelect correctly
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
package envoy.client.ui.control;
|
||||
|
||||
import javafx.geometry.Pos;
|
||||
import javafx.geometry.*;
|
||||
import javafx.scene.control.*;
|
||||
import javafx.scene.image.ImageView;
|
||||
import javafx.scene.layout.VBox;
|
||||
import javafx.scene.layout.*;
|
||||
import javafx.scene.shape.Rectangle;
|
||||
|
||||
import envoy.client.ui.controller.GroupCreationTab;
|
||||
@ -17,19 +17,19 @@ import envoy.data.User;
|
||||
public class QuickSelectControl extends VBox {
|
||||
|
||||
public QuickSelectControl(User user, GroupCreationTab tab) {
|
||||
Button removeBtn = new Button();
|
||||
removeBtn.setPrefSize(10, 10);
|
||||
removeBtn.setMaxSize(10, 10);
|
||||
removeBtn.setMinSize(10, 10);
|
||||
removeBtn.setAlignment(Pos.TOP_RIGHT);
|
||||
removeBtn.setOnMouseClicked(evt -> {
|
||||
tab.removeFromQuickSelection(this);
|
||||
});
|
||||
removeBtn.setId("remove-button");
|
||||
getChildren().add(removeBtn);
|
||||
setPrefWidth(37);
|
||||
setMaxWidth(37);
|
||||
setMinWidth(37);
|
||||
var stackPane = new StackPane();
|
||||
stackPane.setAlignment(Pos.TOP_CENTER);
|
||||
|
||||
// Profile picture
|
||||
ImageView contactProfilePic = new ImageView(IconUtil.loadIconThemeSensitive("user_icon", 32));
|
||||
var picHold = new VBox();
|
||||
picHold.setPadding(new Insets(2, 0, 0, 0));
|
||||
picHold.setPrefHeight(35);
|
||||
picHold.setMaxHeight(35);
|
||||
picHold.setMinHeight(35);
|
||||
var contactProfilePic = new ImageView(IconUtil.loadIconThemeSensitive("user_icon", 32));
|
||||
final var clip = new Rectangle();
|
||||
clip.setWidth(32);
|
||||
clip.setHeight(32);
|
||||
@ -37,14 +37,35 @@ public class QuickSelectControl extends VBox {
|
||||
clip.setArcWidth(32);
|
||||
contactProfilePic.setClip(clip);
|
||||
setAlignment(Pos.TOP_CENTER);
|
||||
getChildren().add(contactProfilePic);
|
||||
picHold.getChildren().add(contactProfilePic);
|
||||
stackPane.getChildren().add(picHold);
|
||||
|
||||
Label nameLabel = new Label();
|
||||
var hBox = new HBox();
|
||||
hBox.setPrefHeight(12);
|
||||
hBox.setMaxHeight(12);
|
||||
hBox.setMinHeight(12);
|
||||
var region = new Region();
|
||||
hBox.getChildren().add(region);
|
||||
hBox.setHgrow(region, Priority.ALWAYS);
|
||||
|
||||
var removeBtn = new Button();
|
||||
removeBtn.setPrefSize(12, 12);
|
||||
removeBtn.setMaxSize(12, 12);
|
||||
removeBtn.setMinSize(12, 12);
|
||||
removeBtn.setOnMouseClicked(evt -> tab.removeFromQuickSelection(this));
|
||||
removeBtn.setId("remove-button");
|
||||
hBox.getChildren().add(removeBtn);
|
||||
stackPane.getChildren().add(hBox);
|
||||
getChildren().add(stackPane);
|
||||
|
||||
|
||||
var nameLabel = new Label();
|
||||
nameLabel.setPrefSize(35, 20);
|
||||
nameLabel.setMaxSize(35, 20);
|
||||
nameLabel.setMinSize(35, 20);
|
||||
nameLabel.setText(user.getName());
|
||||
nameLabel.setAlignment(Pos.TOP_CENTER);
|
||||
nameLabel.setPadding(new Insets(0, 5, 0, 0));
|
||||
getChildren().add(nameLabel);
|
||||
|
||||
getStyleClass().add("quick-select");
|
||||
|
@ -81,6 +81,9 @@ public class GroupCreationTab implements EventListener {
|
||||
.filter(not(localDB.getUser()::equals))
|
||||
.map(User.class::cast)
|
||||
.collect(Collectors.toList()));
|
||||
quickSelectList.setPrefHeight(0);
|
||||
quickSelectList.setMaxHeight(0);
|
||||
quickSelectList.setMinHeight(0);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -92,6 +95,9 @@ public class GroupCreationTab implements EventListener {
|
||||
private void userListClicked() {
|
||||
createButton.setDisable(userList.getSelectionModel().isEmpty() || groupNameField.getText().isBlank());
|
||||
quickSelectList.getItems().add(new QuickSelectControl(userList.getSelectionModel().getSelectedItem(), this));
|
||||
quickSelectList.setPrefHeight(60);
|
||||
quickSelectList.setMaxHeight(60);
|
||||
quickSelectList.setMinHeight(60);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -157,7 +163,14 @@ public class GroupCreationTab implements EventListener {
|
||||
return localDB.getChats().stream().map(Chat::getRecipient).filter(Group.class::isInstance).map(Contact::getName).anyMatch(newName::equals);
|
||||
}
|
||||
|
||||
public void removeFromQuickSelection(QuickSelectControl element) { quickSelectList.getItems().remove(element); }
|
||||
public void removeFromQuickSelection(QuickSelectControl element) {
|
||||
quickSelectList.getItems().remove(element);
|
||||
if (quickSelectList.getItems().size() == 0) {
|
||||
quickSelectList.setPrefHeight(0);
|
||||
quickSelectList.setMaxHeight(0);
|
||||
quickSelectList.setMinHeight(0);
|
||||
}
|
||||
}
|
||||
|
||||
@FXML
|
||||
private void backButtonClicked() {
|
||||
|
Reference in New Issue
Block a user