Commit 468cffd0 authored by Riegel's avatar Riegel
Browse files

Feat: Add checkAllBtn to ZipEntryManager

2 merge requests!28Version 3.17.0 Release,!26Add ZIP-archive support
Showing with 19 additions and 0 deletions
+19 -0
......@@ -86,6 +86,11 @@ public class ZipEntryManager {
@FXML
private ImageView decompressAllImageView;
@FXML
private Button checkAllBtn;
@FXML
private ImageView checkAllImageView;
@FXML
private ListView<ZipEntryNode> entryList;
@FXML
......@@ -144,6 +149,10 @@ public class ZipEntryManager {
Image img = new Image(inStream);
decompressAllImageView.setImage(img);
}
try (InputStream inStream = MainWindow.class.getResourceAsStream("icons/check_all_zipEntries.png")) {
Image img = new Image(inStream);
checkAllImageView.setImage(img);
}
} catch (IOException ignored) {
//ignore exceptions
}
......
......@@ -51,6 +51,16 @@
</graphic>
</Button>
<Separator orientation="VERTICAL" prefHeight="200.0"/>
<Button fx:id="checkAllBtn" alignment="CENTER" layoutX="126.0" layoutY="15.0"
maxWidth="1.7976931348623157E308" mnemonicParsing="false">
<font>
<Font size="14.0"/>
</font>
<graphic>
<ImageView fx:id="checkAllImageView" fitHeight="32.0" fitWidth="32.0" pickOnBounds="true"
preserveRatio="true"/>
</graphic>
</Button>
</children>
</HBox>
<HBox fillHeight="false" prefHeight="200.0" prefWidth="600.0" VBox.vgrow="ALWAYS">
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment