summaryrefslogtreecommitdiffstats
path: root/imagegui.h
blob: 4c3680c3e45eb85352d5b186de4ae835234f8e6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef IMAGEGUI_H
#define IMAGEGUI_H

#include <QProgressBar>
#include <QTime>
class DVDImage;

class ImageGui : public QProgressBar
{
	Q_OBJECT

public:
    ImageGui();

private:
	QTime m_startTime;
	bool m_first;

private slots:
	void extractProgress(int current, int maximum);
};

#endif // IMAGEGUI_H