Libkdepim

progressindicatorlabel.h
1/*
2 SPDX-FileCopyrightText: 2013-2024 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{
21 Q_OBJECT
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}
The ProgressIndicatorLabel class.
void stop(Ekos::AlignState mode)
Q_SCRIPTABLE Q_NOREPLY void start()
Class KCheckComboBox::KCheckComboBoxPrivate.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:20:19 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.