public class AboutInfoController extends StageController
| Constructor and Description |
|---|
AboutInfoController() |
| Modifier and Type | Method and Description |
|---|---|
void |
addInfo(java.lang.String title,
java.lang.String info)
Add a info text and title to the info display.
|
protected boolean |
getResizable()
Called during stage setup to get the stage's resizable flag.
|
void |
setInfoIcon(javafx.scene.image.Image image)
Set the info icon to display.
|
protected void |
setupStage(javafx.stage.Stage controllerStage)
Called during stage setup to perform the actual controller specific setup
steps.
|
canClose, getBundle, getExecutorService, getModality, getPreferences, getStage, getStyle, getSystemMenuBar, openRootStage, openStage, reportUnexpectedException, setupPrimaryStage, showMessageBox, syncPreferencesprotected boolean getResizable()
StageControllerDerived classes can override this to change it's resizable behavior.
getResizable in class StageControllerprotected void setupStage(javafx.stage.Stage controllerStage)
throws java.io.IOException
StageControllerDerived classes overriding this function have to make sure to invoke the super's version prior to performing their setup steps.
setupStage in class StageControllercontrollerStage - The stage to setup.java.io.IOException - If an I/O error occurs during setup.StageController.setupPrimaryStage(Stage, Class)public void setInfoIcon(javafx.scene.image.Image image)
image - The info icon to display.public void addInfo(java.lang.String title,
java.lang.String info)
title - The title to add.info - The info text to add.