-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert "From Aux file" dialog to JavaFX (#4607)
- Loading branch information
1 parent
5d2b765
commit b66fa42
Showing
6 changed files
with
107 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import javafx.scene.control.Button?> | ||
<?import javafx.scene.control.ButtonType?> | ||
<?import javafx.scene.control.DialogPane?> | ||
<?import javafx.scene.control.Label?> | ||
<?import javafx.scene.control.ListView?> | ||
<?import javafx.scene.control.TextArea?> | ||
<?import javafx.scene.control.TextField?> | ||
<?import javafx.scene.layout.HBox?> | ||
<?import javafx.scene.layout.VBox?> | ||
<?import javafx.scene.text.Font?> | ||
<DialogPane xmlns:fx="http://javafx.com/fxml/1" prefHeight="650.0" prefWidth="500.0" | ||
xmlns="http://javafx.com/javafx/8.0.121" fx:controller="org.jabref.gui.auximport.FromAuxDialog"> | ||
<content> | ||
<VBox spacing="30"> | ||
<VBox spacing="5.0"> | ||
<Label text="%LaTeX AUX file:"/> | ||
<HBox spacing="10"> | ||
<TextField fx:id="auxFileField" HBox.hgrow="ALWAYS"/> | ||
<Button onAction="#browseButtonClicked" text="%Browse"/> | ||
</HBox> | ||
<Button defaultButton="true" onAction="#parseActionPerformed" text="%Parse"/> | ||
</VBox> | ||
<VBox spacing="5"> | ||
<Label text="%Result"> | ||
<font> | ||
<Font name="System Bold"/> | ||
</font> | ||
</Label> | ||
<TextArea fx:id="statusInfos" editable="false" prefHeight="300.0"/> | ||
<Label text="%Unknown BibTeX entries:"/> | ||
<ListView fx:id="notFoundList" prefHeight="200"/> | ||
</VBox> | ||
</VBox> | ||
</content> | ||
<ButtonType fx:id="generateButtonType" buttonData="OK_DONE" text="%Generate"/> | ||
<ButtonType fx:constant="CLOSE"/> | ||
</DialogPane> |
Oops, something went wrong.