Package jltk.gui
Class ProgressIndicator
- java.lang.Object
-
- jltk.Component
-
- jltk.gui.Control
-
- jltk.gui.ProgressIndicator
-
public class ProgressIndicator extends Control
A circular control which is used for indicating progress.- Version:
- 24.05.2022
- Author:
- ms
-
-
Field Summary
Fields Modifier and Type Field Description protected javafx.scene.control.ProgressIndicator
fxProgressIndicator
-
Fields inherited from class jltk.Component
fxNode, hasFocus, myWindow, onFocusGained, onFocusLost
-
-
Constructor Summary
Constructors Constructor Description ProgressIndicator(double pLeft, double pTop, double pWidth, double pHeight)
Creates the progress indicator on the specified postion.ProgressIndicator(Window pWindow, double pLeft, double pTop, double pWidth, double pHeight)
Creates the progress indicator at the specified position
-
Method Summary
-
Methods inherited from class jltk.gui.Control
getColor, getHeight, getWidth, init, setColor, setColor, setColor, setHeight, setSize, setTooltip, setWidth
-
Methods inherited from class jltk.Component
activate, deactivate, focus, getX, getY, hasFocus, hide, init, istActive, isVisible, runMethodByName, setOnFocusGained, setOnFocusLost, setPosition, show, toBack, toFront
-
-
-
-
Constructor Detail
-
ProgressIndicator
public ProgressIndicator(double pLeft, double pTop, double pWidth, double pHeight)
Creates the progress indicator on the specified postion.- Parameters:
pLeft
- The horizontal coordinatepTop
- The vertical coordinatepWidth
- The width of the progress indicatorpHeight
- The height of the progress indicator
-
ProgressIndicator
public ProgressIndicator(Window pWindow, double pLeft, double pTop, double pWidth, double pHeight)
Creates the progress indicator at the specified position- Parameters:
pWindow
- The window, the progress indicator should be placedpLeft
- The horizontal coordinatepTop
- The vertical coordinatepWidth
- The width of the progress indicatorpHeight
- The height of the progress indicatorpWindow
- The window, the progress indicator should be placed
-
-