summaryrefslogtreecommitdiff
path: root/src/ui/progressBar.h
blob: 47a63aac186c51940db1beb84083f9fbf69ec310 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// SPDX-License-Identifier: GPL-2.0-or-later

//WARNING this is not meant for use outside this unit!

#ifndef FQTERM_PROGRESSBAR_H
#define FQTERM_PROGRESSBAR_H

#include <QProgressBar>
#include <QLabel>

class QLabel;
class QPushButton;

namespace FQTerm {
/**
 * @class KDE::ProgressBar
 * @short ProgressBar class with some useful additions
 */
class ProgressBar: public QProgressBar {
  friend class StatusBar;

 public:
  /** @param text a 1-6 word description of the progress operation */
  ProgressBar &setDescription(const QString &text);

  /** @param text eg. Scanning, Reading. The state of the operation */
  ProgressBar &setStatus(const QString &text);

  /** set the recipient slot for the abort button */
  ProgressBar &setAbortSlot(QObject *receiver, const char *slot);

  void setDone();

  QString description()const {
    return description_;
  }

 protected:
  ProgressBar(QWidget *parent, QLabel *label);
  ~ProgressBar();

  virtual void hide();

  QLabel *label_;
  QString description_;
  bool isFinished_;

  QPushButton *abortButton_;
};

}  // namespace FQTerm

#endif  // FQTERM_PROGRESSBAR_H