| 27 | }; |
| 28 | |
| 29 | class UpdateWidget : public QWidget { |
| 30 | Q_OBJECT |
| 31 | |
| 32 | public: UpdateWidget(Updater *updater, QWidget *parent); |
| 33 | |
| 34 | public slots: |
| 35 | void animate(); |
| 36 | |
| 37 | protected: |
| 38 | void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE; |
| 39 | |
| 40 | private: |
| 41 | Updater *_updater; |
| 42 | int _elapsed; |
| 43 | }; |
| 44 | |
| 45 | class UpdateView : public QWidget { |
| 46 | Q_OBJECT |
nothing calls this directly
no outgoing calls
no test coverage detected