Create and control progress bar widgets.
This class is a JS wrapper around Qt's QProgressBar class
A QProgressBar provides ability to add and manipulate native progress bar widgets.
QProgressBar inherits from NodeWidget
Example
const { QProgressBar } = require("@nodegui/nodegui");const progressBar = new QProgressBar();
new QProgressBar(parent?)
parentNodeWidget (optional). Any widget inheriting from NodeWidget can be passed as a parent. This will make this widget, the child of the parent widget.
Static Methods
QProgressBar can access all the static methods defined in NodeWidget
Instance Properties
QProgressBar can access all the instance properties defined in NodeWidget
Instance Methods
QProgressBar can access all the instance methods defined in NodeWidget. Additionally it also has the following instance methods:
progressBar.setValue(value)
Sets the current value of the progressBar. It calls the native method QProgressBar: setValue.
valuenumber - Set the value as current value
progressBar.setMaximum(max)
Sets the max value of the progressBar. It calls the native method QProgressBar: setMaximum.
maxnumber - Set the value as max value of the progress bar.
progressBar.setMinimum(min)
Sets the min value of the progressBar. It calls the native method QProgressBar: setMinimum.
minnumber - Set the value as min value of the progress bar.
progressBar.setOrientation(orientation)
Sets the orientation of the progressBar. It calls the native method QProgressBar: setOrientation.
orientationOrientation - Specifies visual orientation of the progress bar. Orientation is an enum from Qt
progressBar.value()
Returns the current value (Number) of the progressBar. It calls the native method QProgressBar: value.