blob: 23fb40ca259d0b75c76c071a2329cb344f81af2b (
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
40
41
42
43
44
45
46
47
48
49
|
#ifndef __eprogress_h
#define __eprogress_h
#include <lib/gui/ewidget.h>
#include <lib/gdi/grc.h>
/**
* \brief A progressbar.
*
* Useful for displaying a progress or stuff.
*/
class eProgress: public eWidget
{
protected:
int perc, border, start;
int direction;
gColor left, right;
public:
eProgress(eWidget *parent, int takeFocus=0);
~eProgress();
/**
* \brief Sets the value.
*
* \param perc The range is \c 0..100
*/
void setPerc(int perc);
void setStart(int perc);
void redrawWidget(gPainter *target, const eRect &area);
/**
* \brief Sets a property.
*
* Valid, eProgress specific properties are:
* \arg \c leftColor, the color of the left part
* \arg \c rightColor, the color of the right part
* \arg \c border, the size of the border (in pixels)
* \arg \c direction, direction (0 for horiz., 1 for vert.)
* \sa eWidget::setProperty
*/
int setProperty(const eString &prop, const eString &value);
void setDirection(int d) { direction = d; }
void setBorder( int b ) { border = b; }
void setLeftColor( const gColor& c ) { left = c; }
void setRightColor( const gColor& c ) { right = c; }
};
#endif
|