willow/src/main/resources/fxml/details.fxml

52 lines
2.5 KiB
Plaintext
Raw Normal View History

2024-09-20 15:24:02 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2024-10-03 10:41:12 +00:00
<?import javafx.geometry.Insets?>
2024-09-20 15:24:02 +00:00
<?import javafx.scene.control.*?>
2024-10-03 11:38:40 +00:00
<?import javafx.scene.layout.*?>
2024-09-20 15:24:02 +00:00
<?import javafx.scene.web.WebView?>
2024-09-25 21:42:14 +00:00
<VBox xmlns="http://javafx.com/javafx/23" xmlns:fx="http://javafx.com/fxml/1"
2024-09-20 15:24:02 +00:00
fx:controller="com.marvinelsen.willow.ui.controllers.DetailsController"
stylesheets="/css/details.css">
2024-10-03 14:22:51 +00:00
<FlowPane fx:id="flowPaneHeader" styleClass="flow-pane-header" hgap="8.0" onContextMenuRequested="#headerOnContextMenuRequested"
2024-10-03 10:41:12 +00:00
prefHeight="38.0" prefWidth="412.0" rowValignment="BASELINE" vgap="8.0" VBox.vgrow="NEVER">
2024-09-20 15:24:02 +00:00
<padding>
2024-10-03 10:41:12 +00:00
<Insets bottom="6.0" left="6.0" right="6.0" top="6.0"/>
2024-09-20 15:24:02 +00:00
</padding>
<Label fx:id="labelHeadword" styleClass="headword" text="Label"/>
2024-10-03 10:41:12 +00:00
<Label fx:id="labelPronunciation" styleClass="pronunciation">
</Label>
</FlowPane>
2024-09-20 15:24:02 +00:00
<TabPane fx:id="tabPaneDetails" tabClosingPolicy="UNAVAILABLE" disable="true" VBox.vgrow="ALWAYS">
2024-10-03 10:11:50 +00:00
<Tab closable="false" text="%tab.definition">
<WebView fx:id="webViewDefinition" minHeight="-1.0" minWidth="-1.0" prefHeight="-1.0" prefWidth="-1.0"/>
2024-09-20 15:24:02 +00:00
</Tab>
2024-10-03 10:11:50 +00:00
<Tab id="tabSentences" closable="false" text="%tab.sentences">
2024-10-03 11:16:51 +00:00
<ListView fx:id="listViewSentences"/>
2024-09-20 15:24:02 +00:00
</Tab>
2024-10-03 10:11:50 +00:00
<Tab id="tabWords" closable="false" text="%tab.words">
2024-10-03 11:38:40 +00:00
<StackPane>
<ListView fx:id="listViewWords"/>
<Label fx:id="labelNoWordsFound" text="%list.no_words_found" textAlignment="CENTER"
visible="false" wrapText="true">
<padding>
<Insets bottom="8.0" left="8.0" right="8.0" top="8.0"/>
</padding>
</Label>
<ProgressIndicator fx:id="progressIndicatorWords" visible="false"/>
</StackPane>
2024-09-20 15:24:02 +00:00
</Tab>
<Tab fx:id="tabCharacters" id="tabCharacters" closable="false" text="%tab.characters">
2024-10-03 11:38:40 +00:00
<StackPane>
<ListView fx:id="listViewCharacters"/>
<Label fx:id="labelNoCharactersFound" text="%list.no_characters_found" textAlignment="CENTER"
visible="false" wrapText="true">
<padding>
<Insets bottom="8.0" left="8.0" right="8.0" top="8.0"/>
</padding>
</Label>
<ProgressIndicator fx:id="progressIndicatorCharacters" visible="false"/>
</StackPane>
2024-09-20 15:24:02 +00:00
</Tab>
</TabPane>
</VBox>