Hiding search panel when busy widget showed
[someplayer] / src / busywidget.h
1 #ifndef BUSYWIDGET_H
2 #define BUSYWIDGET_H
3
4 #include <QWidget>
5
6 namespace Ui {
7     class BusyWidget;
8 }
9
10 class BusyWidget : public QWidget
11 {
12     Q_OBJECT
13
14 public:
15     explicit BusyWidget(QWidget *parent = 0);
16     ~BusyWidget();
17         void setText(QString text);
18
19 private:
20     Ui::BusyWidget *ui;
21 };
22
23 #endif // BUSYWIDGET_H