File: progressindicator.h

package info (click to toggle)
esperanza 0.2.1-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 600 kB
  • ctags: 536
  • sloc: cpp: 4,533; sh: 63; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 299 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __PROGRESSINDICATOR_H__
#define __PROGRESSINDICATOR_H__

#include <QLabel>
#include <QMovie>

class ProgressIndicator : public QLabel
{
	Q_OBJECT
	public:
		ProgressIndicator (QWidget *);
		void setStatus (bool);
		/*
		QSize sizeHint () const;
		*/
	private:
		QMovie *m_movie;
};

#endif