KStatusBarJobTracker Class

This class implements a job tracker with a widget suited for embedding in a status bar. More...

Header: #include <KStatusBarJobTracker>
CMake: find_package(KF6 REQUIRED COMPONENTS JobWidgets)
target_link_libraries(mytarget PRIVATE KF6::JobWidgets)
Inherits: KAbstractWidgetJobTracker

Public Types

enum StatusBarMode { NoInformation, LabelOnly, ProgressOnly }
flags StatusBarModes

Public Functions

KStatusBarJobTracker(QWidget *parent = nullptr, bool button = true)
void setStatusBarMode(KStatusBarJobTracker::StatusBarModes statusBarMode)

Detailed Description

Member Type Documentation

enum KStatusBarJobTracker::StatusBarMode
flags KStatusBarJobTracker::StatusBarModes

ConstantValueDescription
KStatusBarJobTracker::NoInformation0x0000Does not show any information
KStatusBarJobTracker::LabelOnly0x0001Shows an informative label for job progress
KStatusBarJobTracker::ProgressOnly0x0002Shows a progress bar with the job completion

The StatusBarModes type is a typedef for QFlags<StatusBarMode>. It stores an OR combination of StatusBarMode values.

Member Function Documentation

[explicit] KStatusBarJobTracker::KStatusBarJobTracker(QWidget *parent = nullptr, bool button = true)

Creates a new KStatusBarJobTracker

parent the parent of this object and of the widget displaying the job progresses

button true to display a stop button allowing to kill the job, false otherwise

void KStatusBarJobTracker::setStatusBarMode(KStatusBarJobTracker::StatusBarModes statusBarMode)

Sets the mode of the status bar.

statusBarMode what information the status bar will show (see StatusBarMode). LabelOnly by default