summaryrefslogtreecommitdiffstats
path: root/src/splashscreen.h
blob: b8d5563c608a5305c97d116f97a12b1c91edf977 (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

#ifndef _SPLASHSCREEN_H_
#define _SPLASHSCREEN_H_

#include <tqsplashscreen.h>
#include <tqpainter.h>
#include <tqlabel.h>

class TQPixmap;

/**
Splash screen.
*/
class KDevSplashScreen : public TQSplashScreen
{
Q_OBJECT
  

public:
	KDevSplashScreen(const TQPixmap& pixmap, WFlags f = 0);
	virtual ~KDevSplashScreen();

protected:
	void drawContents (TQPainter * painter);

public slots:
	void animate();
	void message( const TQString &str, int flags = AlignLeft,
		const TQColor &color = black );

private:
	int state;
	int progress_bar_size;
	TQString m_string;

};

#endif