Libkdepim

progressindicatorlabel.h
1/*
2 SPDX-FileCopyrightText: 2013-2025 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "kdepim_export.h"
10
11#include <QWidget>
12namespace KPIM
13{
14class ProgressIndicatorLabelPrivate;
15/**
16 * @brief The ProgressIndicatorLabel class
17 * @author Laurent Montel <montel@kde.org>
18 */
19class KDEPIM_EXPORT ProgressIndicatorLabel : public QWidget
20{
22public:
23 /**
24 * @since 4.12
25 */
26 explicit ProgressIndicatorLabel(const QString &labelStr, QWidget *parent = nullptr);
27 explicit ProgressIndicatorLabel(QWidget *parent = nullptr);
28 ~ProgressIndicatorLabel() override;
29
30 void setActiveLabel(const QString &label);
31
32public Q_SLOTS:
33 void start();
34 void stop();
35
36private:
37 friend class ProgressIndicatorLabelPrivate;
38 std::unique_ptr<ProgressIndicatorLabelPrivate> const d;
39};
40}
ProgressIndicatorLabel(const QString &labelStr, QWidget *parent=nullptr)
void stop(Ekos::AlignState mode)
Q_SCRIPTABLE Q_NOREPLY void start()
Class KCheckComboBox::KCheckComboBoxPrivate.
Q_OBJECTQ_OBJECT
Q_SLOTSQ_SLOTS
QObject * parent() const const
QWidget(QWidget *parent, Qt::WindowFlags f)
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Jan 24 2025 11:55:43 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.